Re: solrj returning no results but curl can get them

2015-01-30 Thread S L
It was pilot error. I just reviewed my servlet and noticed a parameter in web.xml that was looking to find data for the new product in the production index which doesn't have that data yet while my curl command was running against the staging index. I rebuilt the servlet with the fixed parameter

RE: Does DocValues improve Grouping performance ?

2015-01-30 Thread Cario, Elaine
Hi Shamik, We use DocValues for grouping, and although I have nothing to compare it to (we started with DocValues), we are also seeing similar poor results as you: easily 60% overhead compared to non-group queries. Looking around for some solution, no quick fix is presenting itself

Re: AW: AW: AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-30 Thread Shawn Heisey
On 1/29/2015 11:37 PM, Clemens Wyss DEV wrote: The recommendation these days is to NOT use the embedded server We would love to, as it is clear that this is not the Solr-way to go. The reason for us building upon EmbeddedSolrServer is, we have more than 150sites, each with ist own index

Removing a stored field from solrcloud 4.4

2015-01-30 Thread Nishanth S
Hello, I have a field which is indexed and stored in the solr schema( 4.4.solr cloud).This field is relatively huge and I plan to only index the field and not to store.Is there a need to re-index the documents once this change is made?. Thanks, Nishanth

Calling custom request handler with data import

2015-01-30 Thread vineet yadav
Hi, I am using data import handler to import data from mysql, and I want to identify name entities from it. So I am using following example( http://www.searchbox.com/named-entity-recognition-ner-in-solr/). where I am using stanford ner to identify name entities. I am using following requesthandler

timestamp field and atomic updates

2015-01-30 Thread Bill Au
I have a timestamp field in my schema to track when each doc was indexed: field name=timestamp type=date indexed=true stored=true default=NOW multiValued=false / Recently, we have switched over to use atomic update instead of re-indexing when we need to update a doc in the index. It looks to me

Re: solrj returning no results but curl can get them

2015-01-30 Thread S L
Hi Dmitri, I do have a question mark in my search. I see that I dropped that accidentally when I was copying/pasting/formatting the details. My curl command is curl http://myserver/myapp/myproduct?fl=*,.; And, it works fine whether I have .../myproduct/?fl=*, or if I leave out the /

Hit Highlighting and More Like This

2015-01-30 Thread Tim Hearn
Hi all, I'm fairly new to Solr. It seems like it should be possible to enable the hit highlighting feature and more like this feature at the same time, with the key words from the MLT query being the terms highlighted. Is this possible? I am trying right now to do this, but I am not having any

Re: Removing a stored field from solrcloud 4.4

2015-01-30 Thread Erick Erickson
Yes and no. Solr should continue to work fine, just all new documents won't have the stored field to return to the clients. As you re-index docs, subsequent merges will purge the stored data _for the docs you've re-indexed_. But I would re-index just to get my system in a consistent state. Best

Re: Suggesting broken words with solr.WordBreakSolrSpellChecker

2015-01-30 Thread fabio.bozzo
Nice! It works indeed! Sorry I didn't noticed that before. But what if I want the same for the iPhone? I mean suggesting I phone for users who searched iphone. Minbreaklength of 1 is just too small isn't it? Il sabato 31 gennaio 2015, Dyer, James-2 [via Lucene]

Replication in solrloud

2015-01-30 Thread solr2020
Hi, We have 4 servers in Solrcloud with one shard. 2 of the servers are not in sync with other two.We like to force replication manually to keep all the servers in sync.Do we have a command to force replication? (other than Solr restart). Thanks. -- View this message in context:

New UI for SOLR-based projects

2015-01-30 Thread Roman Chyla
Hi everybody, There exists a new open-source implementation of a search interface for SOLR. It is written in Javascript (using Backbone), currently in version v1.0.19 - but new features are constantly coming. Rather than describing it in words, please see it in action for yourself at

RE: Suggesting broken words with solr.WordBreakSolrSpellChecker

2015-01-30 Thread Dyer, James
You need to decrease this to at least 2 because the length of go is 3. int name=minBreakLength3/int James Dyer Ingram Content Group -Original Message- From: fabio.bozzo [mailto:f.bo...@3-w.it] Sent: Wednesday, January 28, 2015 4:55 PM To: solr-user@lucene.apache.org Subject: RE:

Re: New UI for SOLR-based projects

2015-01-30 Thread Shawn Heisey
On 1/30/2015 1:07 PM, Roman Chyla wrote: There exists a new open-source implementation of a search interface for SOLR. It is written in Javascript (using Backbone), currently in version v1.0.19 - but new features are constantly coming. Rather than describing it in words, please see it in

Re: Calling custom request handler with data import

2015-01-30 Thread Dan Davis
The Data Import Handler isn't pushing data into the /update request handler. However, Data Import Handler can be extended with transformers. Two such transformers are the TemplateTransformer and the ScriptTransformer. It may be possible to get a script function to load your custom Java code.

Re: New UI for SOLR-based projects

2015-01-30 Thread Roman Chyla
I gather from your comment that I should update readme, because there could be people who would be inclined to use bumblebee development server in production: Beware those who enter through this gate! :-) Your point, that so far you haven't seen anybody share their middle layer can be addressed

Re: Calling custom request handler with data import

2015-01-30 Thread Dan Davis
You know, another thing you can do is just write some Java/perl/whatever to pull data out of your database and push it to Solr.Not as convenient for development perhaps, but it has more legs in the long run. Data Import Handler does not easily multi-thread. On Sat, Jan 31, 2015 at 12:34 AM,

role of the wiki and cwiki

2015-01-30 Thread Dan Davis
I've been thinking of https://wiki.apache.org/solr/ as the Old Wiki and https://cwiki.apache.org/confluence/display/solr as the New Wiki. I guess that's the wrong way to think about it - Confluence is being used for the Solr Reference Guide, and MoinMoin is being used as a wiki. Is this the

Re: role of the wiki and cwiki

2015-01-30 Thread Shawn Heisey
On 1/30/2015 10:59 PM, Dan Davis wrote: I've been thinking of https://wiki.apache.org/solr/ as the Old Wiki and https://cwiki.apache.org/confluence/display/solr as the New Wiki. I guess that's the wrong way to think about it - Confluence is being used for the Solr Reference Guide, and

Re: role of the wiki and cwiki

2015-01-30 Thread Anshum Gupta
Hi Dan, I would say that the wiki is old and dated and that gap is only increasing. I would highly recommend everyone to use the Reference Guide instead of the wiki, unless there's something that they can't find. In case you are unable to find something on the wiki, it'd be good to comment on

Re: New UI for SOLR-based projects

2015-01-30 Thread Lukáš Vlček
Nice work Roman! Lukas On Sat, Jan 31, 2015 at 4:36 AM, Roman Chyla roman.ch...@gmail.com wrote: I gather from your comment that I should update readme, because there could be people who would be inclined to use bumblebee development server in production: Beware those who enter through this

Re: Does DocValues improve Grouping performance ?

2015-01-30 Thread Joel Bernstein
A few questions so we can better understand the scale of grouping you're trying to accomplish: How many distinct groups do you typically have in a search result? How many distinct groups are there in the field you are grouping on? How many results are you trying to group in a query? Joel

AW: AW: AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-30 Thread Clemens Wyss DEV
I looked into sources of CoreAdminHandler#handleCreateAction ... SolrCore core = coreContainer.create(dcore); // only write out the descriptor if the core is successfully created coreContainer.getCoresLocator().create(coreContainer, dcore); ... I was missing the

Re: solrj returning no results but curl can get them

2015-01-30 Thread Dmitry Kan
Hi, Some sanity checking: does the solr server base url in the code match the one you use with curl? What if you curl against http://myserver/myapp/ http://myserver/myapp/myproduct%5C ? http://myserver/myapp/myproduct%5C On Fri, Jan 30, 2015 at 5:58 AM, S L sol.leder...@gmail.com wrote: I'm

Re: WordDelimiterFilterFactory and position increment.

2015-01-30 Thread Dmitry Kan
Hi, Do you use WordDelimiterFilter on query side as well? On Fri, Jan 30, 2015 at 12:51 PM, Modassar Ather modather1...@gmail.com wrote: Hi, An insight in the behavior of WordDelimiterFilter will be very helpful. Please share your inputs. Thanks, Modassar On Thu, Jan 22, 2015 at 2:54

Re: WordDelimiterFilterFactory and position increment.

2015-01-30 Thread Modassar Ather
Hi, An insight in the behavior of WordDelimiterFilter will be very helpful. Please share your inputs. Thanks, Modassar On Thu, Jan 22, 2015 at 2:54 PM, Modassar Ather modather1...@gmail.com wrote: Hi, I am using WordDelimiterFilter while indexing. Parser used is edismax. Phrase search is