Re: Zookeeper latencies and pending requests - Solr 4.3

2014-03-13 Thread Shawn Heisey
On 3/13/2014 7:24 PM, Chris W wrote: > Any help on this is much appreciated. Is it better to use more cores for > zookeeper (as opposed to 1 core machine)? I would guess that disk latency is the biggest bottleneck for zookeeper. Unless the SolrCloud install is quite large, I don't think that much

Re: Zookeeper latencies and pending requests - Solr 4.3

2014-03-13 Thread Chris W
Any help on this is much appreciated. Is it better to use more cores for zookeeper (as opposed to 1 core machine)? On Wed, Mar 12, 2014 at 4:28 PM, Chris W wrote: > Hi Furkan > > Load on the network is very low when read workload is on the cluster. > During indexing, a few of my "commits" get

Re: Zookeeper latencies and pending requests - Solr 4.3

2014-03-12 Thread Chris W
Hi Furkan Load on the network is very low when read workload is on the cluster. During indexing, a few of my "commits" get hung forever and the solr nodes are attempting to get connection from zookeeper. The peer communication between zk is very good and i havent seen any issues. The network trans

Re: Zookeeper latencies and pending requests - Solr 4.3

2014-03-12 Thread Furkan KAMACI
Hi; FAQ page says that: *Q: I'm seeing lot's of session timeout exceptions - what to do?* *A: Try raising the ZooKeeper session timeout by editing solr.xml - see the zkClientTimeout attribute. The minimum session timeout is 2 times your ZooKeeper defined tickTime. The maximum is 20 times the tick

Zookeeper latencies and pending requests - Solr 4.3

2014-03-12 Thread Chris W
Hi I have a 3 node zk ensemble . I see a very high latency for zk responses and also a lot of outstanding requests (in the order of 30-40) I also see that the requests are not going to all zookeeper nodes equally. One node has more requests/connections than the others. I see that CPU/Mem and di

Re: support for and Why remove dismax handler remove in solr 4.3

2014-01-23 Thread Shawn Heisey
On 1/23/2014 5:33 AM, Viresh Modi wrote: > i checked solrconfig.xml in solr 4.3 and solr 1.4 > In both i have checked > > *Solr 1.4::* > > > *Solr 4.3::* > > > > so how to handle dismax query type(qt) in solr 4.3 > in solr 1.4.1 we have used qt=di

Re: support for and Why remove dismax handler remove in solr 4.3

2014-01-23 Thread Ahmet Arslan
Hi Viresh, defType=dismax should do the trick. By the way, example solrconfig.xml has an example of edismax query parser usage. On Thursday, January 23, 2014 2:34 PM, Viresh Modi wrote: i checked solrconfig.xml in solr 4.3 and solr 1.4 In both i have checked *Solr 1.4::* *Solr 4.3

support for and Why remove dismax handler remove in solr 4.3

2014-01-23 Thread Viresh Modi
i checked solrconfig.xml in solr 4.3 and solr 1.4 In both i have checked *Solr 1.4::* *Solr 4.3::* so how to handle dismax query type(qt) in solr 4.3 in solr 1.4.1 we have used qt=dismax but solr 4.3 there is no such configuration. so both give different result. -- Regards, Viresh Modi

Re: dismax request handler will give wrong result in solr 4.3

2014-01-22 Thread Ahmet Arslan
anuary 22, 2014 2:30 PM, Viresh Modi wrote: When i use dismax query type handler in *SOLR 1.4 *and then same for *SOLR 4.3 *then both give different numFound record both have same index profile as well. means Solr 1.4 gives 9 records     and Solr 4.3 gives  99 records. *My Query is:* start=0&

dismax request handler will give wrong result in solr 4.3

2014-01-22 Thread Viresh Modi
When i use dismax query type handler in *SOLR 1.4 *and then same for *SOLR 4.3 *then both give different numFound record both have same index profile as well. means Solr 1.4 gives 9 records and Solr 4.3 gives 99 records. *My Query is:* start=0&rows=10&hl=true&hl.fl=content&

Re: Heap size and Solr 4.3

2013-12-17 Thread Ryan Cutter
Marcello, Can you quantify what you're seeing? Did you send the JVM any args (Xmx, Xms, etc)? Thanks, Ryan On Mon, Dec 16, 2013 at 1:01 AM, Marcello Lorenzi wrote: > Hi All, > we have deployed on our production environment a new Solr 4.3 instance (2 > nodes with SolrCloud) bu

Heap size and Solr 4.3

2013-12-16 Thread Marcello Lorenzi
Hi All, we have deployed on our production environment a new Solr 4.3 instance (2 nodes with SolrCloud) but this morning one node gone on outofmemory status and we have noticed that the JVM uses a lot of Old Gen space during the normal lifecycle. What are the items that improve this high

Re: solr 4.3 solrj generating search terms that return no results

2013-11-06 Thread dboychuck
Thanks Shawn! That makes sense now. I appreciate the response. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-4-3-solrj-generating-search-terms-that-return-no-results-tp4077137p4099615.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: solr 4.3 solrj generating search terms that return no results

2013-11-05 Thread Shawn Heisey
On 11/5/2013 10:22 PM, Shawn Heisey wrote: > If you do not want the *entire* string treated as a single term for the > query parser, then you cannot use escapeQueryChars. You'll need to > write your own code that is aware of the specific special characters > that you want to escape. If your query

Re: solr 4.3 solrj generating search terms that return no results

2013-11-05 Thread Shawn Heisey
On 11/5/2013 9:41 PM, dboychuck wrote: > I'm having the same issue with solrJ 4.5.1 > > If I use the escapeQueryChars() function on a string like "a b c" it is > escaping it to "a\+b\+c" which returns 0 results using edismax query parser. > However "a b c" returns results. A space is a special ch

Re: solr 4.3 solrj generating search terms that return no results

2013-11-05 Thread dboychuck
I'm having the same issue with solrJ 4.5.1 If I use the escapeQueryChars() function on a string like "a b c" it is escaping it to "a\+b\+c" which returns 0 results using edismax query parser. However "a b c" returns results. -- View this message in context: http://lucene.472066.n3.nabble.com/s

Re: [Solr 4.3] Search data from multiple cores with different document structure (same machine)

2013-10-25 Thread Erick Erickson
c... Best, Erick On Fri, Oct 25, 2013 at 9:46 AM, Jamshaid Ashraf wrote: > Hi, > > I'm using solr 4.3 and I have data in multiple cores which are different in > structure like (Core1 - col1 & col2) & (Core2 - col3 & col4). > > Now I would like to run a search query o

[Solr 4.3] Search data from multiple cores with different document structure (same machine)

2013-10-25 Thread Jamshaid Ashraf
Hi, I'm using solr 4.3 and I have data in multiple cores which are different in structure like (Core1 - col1 & col2) & (Core2 - col3 & col4). Now I would like to run a search query on both of the cores and in the end to get a single result set from the 2 cores combines. Please

Re: Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core"

2013-10-18 Thread Jonatan Fournier
Hello, I still have this issue using Solr 4.4, removing firstSearcher queries did make the problem go away. Note that I'm using Tomcat 7 and that if I'm using my own Java application launching an Embedded Solr Server pointing to the same Solr configuration the server fully starts with no hang. W

RE: Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core"

2013-09-06 Thread Austin Rasmussen
: Do all of your cores have "newSearcher" event listners configured or just : 2 (i'm trying to figure out if it's a timing fluke that these two are stalled, or if it's something special about the configs) All of my cores have both the "newSearcher" and "firstSearcher" event listeners configured.

RE: Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core"

2013-09-06 Thread Chris Hostetter
: Sorry for the multi-post, seems like the .tdump files didn't get : attached. I've tried attaching them as .txt files this time. Interesting ... it looks like 2 of your cores are blocked in loaded while waiting for the searchers to open ... not clera if it's a deaklock or why though - in bot

Re: Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core"

2013-09-06 Thread Erick Erickson
bq: I'm actually not using the transaction log (or the NRTCachingDirectoryFactory); it's currently set up to use the MMapDirectoryFactory, This isn't relevant to whether you're using the update log or not, this is just how the index is handled. Look for something in your solrconfig.xml like:

RE: Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core"

2013-09-06 Thread Austin Rasmussen
"tlog" in the name of them. -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Friday, September 06, 2013 9:18 AM To: solr-user@lucene.apache.org Subject: Re: Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core" bq: I'm act

Re: Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core"

2013-09-05 Thread Chris Hostetter
: I currently have Solr 4.3 set up with about 400 cores set to load upon : start up. When starting Solr with an empty index for each core, Solr is : able to load all of the cores and start up normally as expected. : However, after running a dataimport on all cores and restarting Solr, it

Solr 4.3 Startup with Multiple Cores Hangs on "Registering Core"

2013-09-05 Thread Austin Rasmussen
Hello, I currently have Solr 4.3 set up with about 400 cores set to load upon start up. When starting Solr with an empty index for each core, Solr is able to load all of the cores and start up normally as expected. However, after running a dataimport on all cores and restarting Solr, it

Re: Solr 4.3: Recovering from "Too many values for UnInvertedField faceting on field"

2013-09-05 Thread Dmitry Kan
We had a similar case for multivalued fields with a lot of unique values per field in some cases. Using facet.method=enum instead of facet.method=fc fixed the problem. Can run slower though. Dmitry On Tue, Sep 3, 2013 at 5:04 PM, Dennis Schafroth wrote: > We are harvesting and indexing bibliogr

Re: Solr 4.3: Recovering from "Too many values for UnInvertedField faceting on field"

2013-09-03 Thread Greg Preston
Our index is too large to uninvert on the fly, so we've been looking into using DocValues to keep a particular field uninverted at index time. See http://wiki.apache.org/solr/DocValues I don't know if this will solve your problem, but it might be worth trying it out. -Greg On Tue, Sep 3, 2013

Solr 4.3: Recovering from "Too many values for UnInvertedField faceting on field"

2013-09-03 Thread Dennis Schafroth
We are harvesting and indexing bibliographic data, thus having many distinct author names in our index. While testing Solr 4 I believe I had pushed a single core to 100 million records (91GB of data) and everything was working fine and fast. After adding a little more to the index, then followin

Re: Solr 4.3 and above core swap

2013-08-19 Thread richardg
I commented out the lockType, so it should be using the default of native according to the documentation. There is nothing special about our file systems. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-3-and-above-core-swap-tp4084794p4085456.html Sent

Re: Solr 4.3 and above core swap

2013-08-16 Thread Shawn Heisey
On 8/16/2013 10:14 AM, richardg wrote: Thanks for the reply, no nothing else would be writing to the index, I'm sure it is a solrconfig setting but not sure which. Are you specifying the DirectoryFactory and/or lock type in your solrconfig.xml, and if so, what are they set to? Is your index o

Re: Solr 4.3 and above core swap

2013-08-16 Thread richardg
Thanks for the reply, no nothing else would be writing to the index, I'm sure it is a solrconfig setting but not sure which. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-3-and-above-core-swap-tp4084794p4085091.html Sent from the Solr - User mailing list archive at

Re: Solr 4.3 and above core swap

2013-08-16 Thread tamanjit.bin...@yahoo.co.in
Is any other source trying to write into your index when you try to reload it? If this was so, then I guess it would have locked up the index. Check for a write.lock file in your index directory. You can remove that file manually and then retry it. -- View this message in context: http://lucene

Solr 4.3 and above core swap

2013-08-15 Thread richardg
Since upgrading to solr 4.3 we get the following errors on our slaves when we swap cores on our master and is still an issue on 4.4: Solr index directory '/usr/local/solr_aggregate/solr_aggregate/data/index.20130513152644966' is locked. Throwing exception SEVERE: Unable to r

Re: Solr 4.3 log4j

2013-08-05 Thread Prasi S
options.. > > > On Mon, Aug 5, 2013 at 12:19 PM, Shawn Heisey wrote: > >> On 8/5/2013 12:19 AM, Prasi S wrote: >> > Im using solr 4.3 to setup solrcloud. I haev placed all jar files in a >> > folder zoo-lib. I have also placed the jar fiels from >

Re: Solr 4.3 log4j

2013-08-05 Thread Prasi S
It didn't work for both options.. On Mon, Aug 5, 2013 at 12:19 PM, Shawn Heisey wrote: > On 8/5/2013 12:19 AM, Prasi S wrote: > > Im using solr 4.3 to setup solrcloud. I haev placed all jar files in a > > folder zoo-lib. I have also placed the jar fiels from > /solr/exa

Re: Solr 4.3 log4j

2013-08-04 Thread Shawn Heisey
On 8/5/2013 12:19 AM, Prasi S wrote: > Im using solr 4.3 to setup solrcloud. I haev placed all jar files in a > folder zoo-lib. I have also placed the jar fiels from /solr/example/lib/ext > to zoo-lib folder. > > When I execute this command, > > java

Solr 4.3 log4j

2013-08-04 Thread Prasi S
Hi, Im using solr 4.3 to setup solrcloud. I haev placed all jar files in a folder zoo-lib. I have also placed the jar fiels from /solr/example/lib/ext to zoo-lib folder. When I execute this command, java -classpath .;zoo-lib/* org.apache.solr.cloud.ZkCLI -cmd upconfig -zkhost localhost:2181

Inconsistent facet ranges when using distributed search in Solr 4.3

2013-07-31 Thread Jose Aguilar
Hi all, I am seeing some inconsistent behavior with facets, specifically range facets, on Solr 4.3. Running the same query several times (pressing F5 on the browser) produces different facet ranges when doing distributed searches, as some times it doesn't include some of the "buc

Re: Streaming Updates Using HttpSolrServer.add(Iterator) In Solr 4.3

2013-07-29 Thread Shawn Heisey
> I am indexing more than 300 million records, it takes less than 7 hours to > index all the records.. > > Send the documents in batches and also use CUSS > (ConcurrentUpdateSolrServer) > for multi threading support. > > Ex: > > ConcurrentUpdateSolrServer server= new > ConcurrentUpdateSolrServer(s

Re: Streaming Updates Using HttpSolrServer.add(Iterator) In Solr 4.3

2013-07-29 Thread SolrLover
I am indexing more than 300 million records, it takes less than 7 hours to index all the records.. Send the documents in batches and also use CUSS (ConcurrentUpdateSolrServer) for multi threading support. Ex: ConcurrentUpdateSolrServer server= new ConcurrentUpdateSolrServer(solrServer, queueSi

Streaming Updates Using HttpSolrServer.add(Iterator) In Solr 4.3

2013-07-29 Thread Paul, Terry
r 1.4 days this worked very smoothly and reliably, consuming a fairly small amount of memory within our client. We could send bulk updates in batches of 100,000 or more. With Solr 4.3 it appears that the HttpSolrServer.add(Iterator) method fetches all of the SolrInputDocuments included in the t

Re: Solr 4.3 open a lot more files than solr 3.6

2013-07-19 Thread SolrLover
Did you try setting useCompoundFile to true in solrconfig.xml? Also, try using a lower mergeFactor which will result in fewer segments and hence fewer open files. Also, I assume you can set the limit using a ulimit command.. ex: ulimit -n20 -- View this message in context: http://lucen

Solr 4.3 open a lot more files than solr 3.6

2013-07-18 Thread Zhang, Lisheng
SolrConfig across all cores, we also commented out autoSoftCommit in solrconfig.xml. In solr 3.6, it seems that indexWriter is opened only if indexing request comes and immediately closed after request is done, but in solr 4.3, IndexWriter kept open, is there an easy way to go back to 3.6

Usage of "luceneMatchVersion" when upgrading from solr 3.6 to solr 4.3

2013-07-16 Thread Zhang, Lisheng
Hi, We are upgrading solr from 3.6 to 4.3, but we have a large amount of indexed data and could not afford to to reindex all once. We wish solr 4.3 could do the following: 1/ still able to search on solr 3.6 indexed data 2/ whenever indexing new document, convert to 4.3 format (may not

Re: solr 4.3, autocommit, maxdocs

2013-07-15 Thread Jonathan Rochkind
not opened them for visibility. You can either change the value to true, or alternatively call a deterministic commit call at the end of your load (a solr/update?commit=true will default to openSearcher=true). Hope that's of use! Jason On Jul 15, 2013, at 9:52 AM, Jonathan Rochkind wr

Re: solr 4.3, autocommit, maxdocs

2013-07-15 Thread Jason Hellman
You can either change the value to true, or alternatively call a deterministic commit call at the end of your load (a solr/update?commit=true will default to openSearcher=true). Hope that's of use! Jason On Jul 15, 2013, at 9:52 AM, Jonathan Rochkind wrote: > I have a solr 4.3

solr 4.3, autocommit, maxdocs

2013-07-15 Thread Jonathan Rochkind
I have a solr 4.3 instance I am in the process of standing up. It started out with an empty index. I have in it's solrconfig.xml, 10 false I have an index process running, that has currently added around 400k documents to Solr. I had expected that a &#

Solr 4.3 Shard distributed request check probably incorrect?

2013-07-12 Thread Johann Höchtl
Hi, we are using Solr 4.3 with regular sharding without ZooKeeper. I see the following errors inside our logs: 14995742 [qtp427093680-2249] INFO org.apache.solr.core.SolrCore - [DE1] webapp=/solr path=/select params={mm=2<66%25&tie=0.1&ids=1060691781&qf=Title^1.2+Description^0.

Re: SolrJ and initializing logger in solr 4.3?

2013-07-11 Thread Michael Della Bitta
, NY 10017 t: @appinions <https://twitter.com/Appinions> | g+: plus.google.com/appinions w: appinions.com <http://www.appinions.com/> On Thu, Jul 11, 2013 at 12:45 PM, Jonathan Rochkind wrote: > I am using SolrJ in a Java (actually jruby) project, with Solr 4.3. > >

SolrJ and initializing logger in solr 4.3?

2013-07-11 Thread Jonathan Rochkind
I am using SolrJ in a Java (actually jruby) project, with Solr 4.3. When I instantiate an HttpSolrServer, I get the dreaded: log4j:WARN No appenders could be found for logger (org.apache.solr.client.solrj.impl.HttpClientUtil). log4j:WARN Please initialize the log4j system properly. log4j:WARN

Re: solr 4.3 solrj generating search terms that return no results

2013-07-10 Thread dboychuck
solrQuery.setQuery(ClientUtils.escapeQueryChars(keyword)); It looks like using the solrj ClientUtils.escapeQueryChars function is escaping any spaces with %5C+ which returns 0 results at search time. -- View this message in context: http://lucene.472066.n3.nabble.com/solr-4-3-solrj-generating-

Re: solr 4.3 solrj generating search terms that return no results

2013-07-10 Thread Shawn Heisey
On 7/10/2013 6:34 PM, dboychuck wrote: > I'm having trouble with solrj generating a query like &q=kohler%5C+k for the > search term 'Kohler k' > > I am using Solr 4.3 in cloud mode. When I remove the %5C everything is fine. > I'm not sure

solr 4.3 solrj generating search terms that return no results

2013-07-10 Thread dboychuck
I'm having trouble with solrj generating a query like &q=kohler%5C+k for the search term 'Kohler k' I am using Solr 4.3 in cloud mode. When I remove the %5C everything is fine. I'm not sure why the %5C is being added when I call solrQuery.setQuery('Kohler k'); A

Re: Solr 4.3 Pivot Performance Issue

2013-07-09 Thread solrUserJM
rJM > Sent: Tuesday, July 02, 2013 4:22 AM > To: [hidden email] <http://user/SendEmail.jtp?type=node&node=4074679&i=0> > Subject: Solr 4.3 Pivot Performance Issue > > Hi There, > > I notice with the upgrade from solr 4.0 to solr 4.3 that we had a > degradation

RE: Solr 4.3 Master/Slave Issues

2013-07-06 Thread Cool Techi
400 > Subject: Re: Solr 4.3 Master/Slave Issues > From: erickerick...@gmail.com > To: solr-user@lucene.apache.org > > kill -9 is evil, you aren't certain what the state is afterwards, > so the presence of the lock file is not surprising.. > > solrconfig.xml has a commented-out

Re: Solr 4.3 Master/Slave Issues

2013-07-06 Thread Erick Erickson
server and take a long time, > so i do issue a kill -9 command. Any other suggestion to do this without > the locking. > > I would initiate a backup again and send the logs. > > regards, > Ayush > > > Date: Fri, 5 Jul 2013 19:40:12 +0530 > > Subject: Re: So

RE: Solr 4.3 Master/Slave Issues

2013-07-05 Thread Cool Techi
The normal tomcat shutdown doesn't stop the server and take a long time, so i do issue a kill -9 command. Any other suggestion to do this without the locking. I would initiate a backup again and send the logs. regards, Ayush > Date: Fri, 5 Jul 2013 19:40:12 +0530 > Subject: Re: Solr

Re: Solr 4.3 Master/Slave Issues

2013-07-05 Thread Shalin Shekhar Mangar
read dump of the process to pastebin or http://apaste.info/ ? > Regards, > > >> Date: Fri, 5 Jul 2013 16:49:24 +0530 >> Subject: Re: Solr 4.3 Master/Slave Issues >> From: shalinman...@gmail.com >> To: solr-user@lucene.apache.org >> >> This can mean mult

RE: Solr 4.3 Master/Slave Issues

2013-07-05 Thread Cool Techi
s not happening with our earlier setup of solr3.6 Regards, > Date: Fri, 5 Jul 2013 16:49:24 +0530 > Subject: Re: Solr 4.3 Master/Slave Issues > From: shalinman...@gmail.com > To: solr-user@lucene.apache.org > > This can mean multiple things: > 1. You had killed a solr process

Re: Solr 4.3 Master/Slave Issues

2013-07-05 Thread Shalin Shekhar Mangar
at 2:34 PM, Cool Techi wrote: > We have set up solr 4.3 with master/setup and are facing a couple of issues, > > Index locking, the index on slave hangs at time and when we restart the core > the core get's locked up. I have checked the logs and there are no OOM error > or

Solr 4.3 Master/Slave Issues

2013-07-05 Thread Cool Techi
We have set up solr 4.3 with master/setup and are facing a couple of issues, Index locking, the index on slave hangs at time and when we restart the core the core get's locked up. I have checked the logs and there are no OOM error or anything else other than the error given below,Caus

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Tony Mullins
OK. Thanks Tricia , Jack & Yonik for your suggestions and time. Regards, Tony. On Fri, Jul 5, 2013 at 1:20 AM, P Williams wrote: > Hi Tony, > > Have you seen the > TermVectorComponent? > It will return the TermVectors for the documents in your

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread P Williams
Hi Tony, Have you seen the TermVectorComponent? It will return the TermVectors for the documents in your result set (note that the rows parameter matters if you want results for the whole set, the default is 10). TermVectors also must be stored fo

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Jack Krupansky
k Krupansky -Original Message- From: Tony Mullins Sent: Thursday, July 04, 2013 12:24 PM To: solr-user@lucene.apache.org Subject: Re: Total Term Frequency per ResultSet in Solr 4.3 ? So what is the workaround for this problem ? Can it be done without changing any source code ? Thanks,

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Tony Mullins
So what is the workaround for this problem ? Can it be done without changing any source code ? Thanks, Tony On Thu, Jul 4, 2013 at 8:01 PM, Yonik Seeley wrote: > Ah, sorry - I thought you were after docfreq, not termfreq. > -Yonik > http://lucidworks.com > > On Thu, Jul 4, 2013 at 10:57 AM, To

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Yonik Seeley
Ah, sorry - I thought you were after docfreq, not termfreq. -Yonik http://lucidworks.com On Thu, Jul 4, 2013 at 10:57 AM, Tony Mullins wrote: > Hi Yonik, > > With facet it didn't work. > > Please see the result set doc below > > http://localhost:8080/solr/collection2/select?fl=*,amazing_freq:term

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Tony Mullins
Hi Yonik, With facet it didn't work. Please see the result set doc below http://localhost:8080/solr/collection2/select?fl=*,amazing_freq:termfreq%28product,%27amazing%27%29,spider_freq:termfreq%28product,%27spider%27%29&fq=id%3A27&q=spider&fl=*&df=product&wt=xml&indent=true&facet=true&facet.quer

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Yonik Seeley
If you just want to retrieve those counts, this seems like simple faceting. q=something facet=true facet.query=product:hunger facet.query=product:games -Yonik http://lucidworks.com On Thu, Jul 4, 2013 at 9:45 AM, Tony Mullins wrote: > Hi , > > I have lots of crawled data, indexed in my Solr (4.

Re: Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Jack Krupansky
ew feature/improvement. -- Jack Krupansky -Original Message- From: Tony Mullins Sent: Thursday, July 04, 2013 9:45 AM To: solr-user@lucene.apache.org Subject: Total Term Frequency per ResultSet in Solr 4.3 ? Hi , I have lots of crawled data, indexed in my Solr (4.3.0) and lets say user

Total Term Frequency per ResultSet in Solr 4.3 ?

2013-07-04 Thread Tony Mullins
Hi , I have lots of crawled data, indexed in my Solr (4.3.0) and lets say user creates a search criteria 'X1' and he/she wants to know the occurrence of a specific term in the result set of that 'X1' search criteria. And then again he/she creates another search criteria 'X2' and he/she wants to kn

Re: Solr 4.3 Pivot Performance Issue

2013-07-02 Thread Jack Krupansky
What is the nature of your degradation? -- Jack Krupansky -Original Message- From: solrUserJM Sent: Tuesday, July 02, 2013 4:22 AM To: solr-user@lucene.apache.org Subject: Solr 4.3 Pivot Performance Issue Hi There, I notice with the upgrade from solr 4.0 to solr 4.3 that we had a

Solr 4.3 Pivot Performance Issue

2013-07-02 Thread solrUserJM
Hi There, I notice with the upgrade from solr 4.0 to solr 4.3 that we had a degradation of queries that are using pivot fields. Have someone else notice it too? Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-3-Pivot-Performance-Issue-tp4074617.html Sent

Re: Solr 4.3 problems with embedded jetty from maven cargo

2013-06-25 Thread Alexandre Rafalovitch
On Tue, Jun 25, 2013 at 11:03 AM, Daniel Exner wrote: > I'm currently trying to build a adept my Solr Maven Project to version > 4.3 but it keeps complaining about missing SLF4j jars. Have you gone through the page describing logging issues: https://wiki.apache.org/solr/SolrLogging . It is been a

Solr 4.3 problems with embedded jetty from maven cargo

2013-06-25 Thread Daniel Exner
Hi all, I'm currently trying to build a adept my Solr Maven Project to version 4.3 but it keeps complaining about missing SLF4j jars. The relevant part from my pom.xml looks like that: > > org.codehaus.cargo > cargo-maven2-plugin > 1.3

Re: Partial update using solr 4.3 with csv input

2013-06-20 Thread Shalin Shekhar Mangar
just isn't any place to >> put >> the atomic update options in such a simple text format. >> >> -- Jack Krupansky >> >> -Original Message- >> From: smanad >> Sent: Wednesday, June 19, 2013 8:30 PM >> To: > >> solr-user@.ap

Re: Partial update using solr 4.3 with csv input

2013-06-20 Thread Jack Krupansky
Jack Krupansky -Original Message- From: smanad Sent: Thursday, June 20, 2013 3:28 PM To: solr-user@lucene.apache.org Subject: Re: Partial update using solr 4.3 with csv input Thanks for confirming. So if my input is a csv file, I will need a script to read the "delta" changes

Re: Partial update using solr 4.3 with csv input

2013-06-20 Thread smanad
t. There just isn't any place to > put > the atomic update options in such a simple text format. > > -- Jack Krupansky > > -Original Message- > From: smanad > Sent: Wednesday, June 19, 2013 8:30 PM > To: > solr-user@.apache > Subject: Partial

Re: Partial update using solr 4.3 with csv input

2013-06-19 Thread Jack Krupansky
using solr 4.3 with csv input I was going through this link http://solr.pl/en/2012/07/09/solr-4-0-partial-documents-update/ and one of the comments is about support for csv. Since the comment is almost a year old, just wondering if this is still true that, partial updates are possible only with xm

Partial update using solr 4.3 with csv input

2013-06-19 Thread smanad
I was going through this link http://solr.pl/en/2012/07/09/solr-4-0-partial-documents-update/ and one of the comments is about support for csv. Since the comment is almost a year old, just wondering if this is still true that, partial updates are possible only with xml and json input? Thanks,

Re: Apache Nutch data to Solr 4.3 schema issues ?

2013-06-13 Thread Tony Mullins
OK. Thanks. Tony. On Thu, Jun 13, 2013 at 7:02 PM, Shawn Heisey wrote: > > Hi. > > > > I was hoping by replacing Nutch provided schema to my Solr schema ( as > the > > described by Nutch documentation) would solve all my problems. > > > > So you are suggesting I edit my existing Solr schema an

Re: Apache Nutch data to Solr 4.3 schema issues ?

2013-06-13 Thread Shawn Heisey
> Hi. > > I was hoping by replacing Nutch provided schema to my Solr schema ( as the > described by Nutch documentation) would solve all my problems. > > So you are suggesting I edit my existing Solr schema and just add the > additional information found in Nutch-Solr schema line by line I hate to

Re: Apache Nutch data to Solr 4.3 schema issues ?

2013-06-13 Thread Jack Krupansky
30 AM To: solr-user@lucene.apache.org Subject: Re: Apache Nutch data to Solr 4.3 schema issues ? Hi. I was hoping by replacing Nutch provided schema to my Solr schema ( as the described by Nutch documentation) would solve all my problems. So you are suggesting I edit my existing Solr schema and jus

Re: Apache Nutch data to Solr 4.3 schema issues ?

2013-06-13 Thread Tony Mullins
Thu, Jun 13, 2013 at 5:06 PM, Jack Krupansky wrote: > Look further down in the stack trace in the Solr log for the final "Caused > By:". > > And better to start with the Solr 4.3 schema and config files and then > merge in your Nutch changes one line at a ti

Re: Apache Nutch data to Solr 4.3 schema issues ?

2013-06-13 Thread Jack Krupansky
Look further down in the stack trace in the Solr log for the final "Caused By:". And better to start with the Solr 4.3 schema and config files and then merge in your Nutch changes one line at a time. -- Jack Krupansky -Original Message- From: Tony Mullins Sent: Thursda

Apache Nutch data to Solr 4.3 schema issues ?

2013-06-13 Thread Tony Mullins
Hi , I am trying to index my Solr 4.3 from Apache Nutch 2.2 data. And for that I have copied the schema-solr4.xml from Nutch2.2 runtime/local/conf and pasted it to my SolrHome solr/collection1/conf. My Solr4.3 is hosted in Tomcat. And initially when I tried http://localhost:8080/solr

Re: Solr 4.3 Spatial clustering?

2013-06-12 Thread bbarani
check this link.. http://stackoverflow.com/questions/11319465/geoclusters-in-solr -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-3-Spatial-clustering-tp4069941p4069986.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr 4.3 Spatial clustering?

2013-06-12 Thread adfel70
Hi Is it possible to implement geo clustering in solr 4.3? Any documentation on this topic? Have anyone tried it? -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-3-Spatial-clustering-tp4069941.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr 4.3 - Schema Parsing Failed: Invalid field property: compressed

2013-06-10 Thread Shalin Shekhar Mangar
André > > > > > > Von: Uomesh [[hidden email]< > http://user/SendEmail.jtp?type=node&node=4069276&i=0>] > > > > Gesendet: Montag, 10. Juni 2013 06:19 > > An: [hidden email] <http://user/SendEmail.jtp?type=node

Re: Solr 4.3 - Schema Parsing Failed: Invalid field property: compressed

2013-06-10 Thread Uomesh
> Von: Uomesh [[hidden > email]<http://user/SendEmail.jtp?type=node&node=4069276&i=0>] > > Gesendet: Montag, 10. Juni 2013 06:19 > An: [hidden email] <http://user/SendEmail.jtp?type=node&node=4069276&i=1> > Betreff: Solr 4.3 -

AW: Solr 4.3 - Schema Parsing Failed: Invalid field property: compressed

2013-06-10 Thread André Widhani
only 3.x. Regards, André Von: Uomesh [uom...@gmail.com] Gesendet: Montag, 10. Juni 2013 06:19 An: solr-user@lucene.apache.org Betreff: Solr 4.3 - Schema Parsing Failed: Invalid field property: compressed Hi, I am getting below after upgrading to Solr 4.3. Is compressed attrib

Solr 4.3 - Schema Parsing Failed: Invalid field property: compressed

2013-06-09 Thread Uomesh
Hi, I am getting below after upgrading to Solr 4.3. Is compressed attribute no longer supported in Solr 4.3 or it is a bug in 4.3? org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: Schema Parsing Failed: Invalid field property: compressed Thanks, Umesh -- View this

Velocity / Solritas not works in solr 4.3 and Tomcat 6

2013-06-08 Thread andy tang
*Could anyone help me to see what is the reason which Solritas page failed?* *I can go to http://localhost:8080/solr without problem, but fail to go to http://localhost:8080/solr/browse* *As below is the status report! Any help is appreciated.* *Thanks!* *Andy* * * *type* Status report *mess

Re: Solr 4.3 with Internationalization.

2013-06-05 Thread bbarani
Check out this http://stackoverflow.com/questions/5549880/using-solr-for-indexing-multiple-languages http://wiki.apache.org/solr/LanguageAnalysis#French French stop words file (sample): http://trac.foswiki.org/browser/trunk/SolrPlugin/solr/multicore/conf/stopwords-fr.txt Solr includes three stem

Solr 4.3 with Internationalization.

2013-06-05 Thread bsargurunathan
Guys, I am going to use the Solr4.3 to my Shopping cart project. So I need to support my website with two languages(English and French). So I want some guide for implement the internationalization with the Slor4.3. Please guide with some sample configuration to support the French language with So

RE: solr 4.3: write.lock is not removed

2013-05-30 Thread Zhang, Lisheng
vel, with some warning messages. It seems that in solr.xml, dataDir is not defined? Thanks very much for helps, Lisheng -Original Message- From: Zhang, Lisheng [mailto:lisheng.zh...@broadvision.com] Sent: Thursday, May 30, 2013 10:57 AM To: solr-user@lucene.apache.org Subject: RE: solr

RE: solr 4.3: write.lock is not removed

2013-05-30 Thread Zhang, Lisheng
, Lisheng -Original Message- From: Chris Hostetter [mailto:hossman_luc...@fucit.org] Sent: Thursday, May 30, 2013 11:35 AM To: solr-user@lucene.apache.org Subject: Re: solr 4.3: write.lock is not removed : I recently upgraded solr from 3.6.1 to 4.3, it works well, but I noticed that

Re: Solr 4.3, Tomcat, "Error filterStart"

2013-05-30 Thread Jonathan Rochkind
t of Tomcat, then the fairly useless "Error filterSTart"? The only reason I'm using tomcat is that we always have in our current Solr 1.4-based application, for reasons lost to time. I was hoping to upgrade to Solr 4.3, without simultaneously switching our infrastructure from tomcat t

Re: Solr 4.3, Tomcat, "Error filterStart"

2013-05-30 Thread Shawn Heisey
On 5/30/2013 1:19 PM, Jonathan Rochkind wrote: Okay, sadly, i still can't get this to work. Following the instructions at: https://wiki.apache.org/solr/SolrLogging#Using_the_example_logging_setup_in_containers_other_than_Jetty I copied solr/example/lib/ext/*.jar into my tomcat's ./lib, and cop

Re: Solr 4.3, Tomcat, "Error filterStart"

2013-05-30 Thread Jonathan Rochkind
in our current Solr 1.4-based application, for reasons lost to time. I was hoping to upgrade to Solr 4.3, without simultaneously switching our infrastructure from tomcat to jetty, change one thing at a time. I suppose I might need to abandon that and switch to jetty too, but I'd rather not.

Re: solr 4.3: write.lock is not removed

2013-05-30 Thread Chris Hostetter
: I recently upgraded solr from 3.6.1 to 4.3, it works well, but I noticed that after finishing : indexing : : write.lock : : is NOT removed. Later if I index again it still works OK. Only after I shutdown Tomcat : then write.lock is removed. This behavior caused some problem like I could

  1   2   >