Healthgrades looking for Search Product Manager

2016-09-19 Thread William Bell
Hi all. I am reaching out to see if anyone of the Search experts in this group would consider helping us out on Healthgrades search. We have a ton of ideas from chat bots, to personalization, collaborative filtering, and are going to build some ridiculously crazy ideas that consumers use to find

Re: slow updates/searches

2016-09-19 Thread Erick Erickson
If both queries _and_ updates are slow, it's hard to see how upping the number of threads would help overall. Hmmm, you also reported that the CPUs didn't seem to be stressed so its worth a try, perhaps there's some kind of blocking going on Best, Erick On Mon, Sep 19, 2016 at 5:33 PM,

Re: Exception is thrown when using TimestampUpdateProcessorFactory

2016-09-19 Thread Chris Hostetter
: But I am getting below exception when i run update or through DIH. Please : let me know how to fix this. : : java.lang.NullPointerException : at : org.apache.solr.update.processor.TimestampUpdateProcessorFactory$1.getDefaultValue(TimestampUpdateProcessorFactory.java:66) That's a

Re: slow updates/searches

2016-09-19 Thread Rallavagu
Hi Erick, Would increasing (or adjusting) update threads help as per this JIRA ((Allow the number of threads ConcurrentUpdateSolrClient StreamingSolrClients configurable by a system property) here? https://issues.apache.org/jira/browse/SOLR-8500 Thanks On 9/19/16 8:30 AM, Erick Erickson

Re: Distributing nodes with the collections API RESTORE command

2016-09-19 Thread Stephen Lewis
Thanks Hrishikesh! Looking forward to hearing from you. On Fri, Sep 16, 2016 at 9:30 PM, Hrishikesh Gadre wrote: > Hi Stephen, > > Thanks for the update. I filed SOLR-9527 > for tracking purpose. I > will take a look and

Re: [Rerank Query] Distributed search + pagination

2016-09-19 Thread Joel Bernstein
Alessandro, I'll be doing some testing with the re-ranker as part of SOLR-9403 for Solr 6.3. I'll see if I can better understand the issue you're bringing up during the testing. I'll report back to this thread after I've done some testing. Joel Bernstein http://joelsolr.blogspot.com/ On Fri, Sep

RE: script to get core num docs

2016-09-19 Thread Kris Musshorn
Thanks David.. got it working -Original Message- From: David Santamauro [mailto:david.santama...@gmail.com] Sent: Monday, September 19, 2016 11:55 AM To: solr-user@lucene.apache.org Cc: david.santama...@gmail.com Subject: Re: script to get core num docs

Re: Solr DateRange Query with AND and different op types

2016-09-19 Thread Sandeep Khanzode
Hi, Can someone please reply to my query? Let me know if it is not understandable. Thanks. SRK On Monday, September 19, 2016 6:00 PM, Sandeep Khanzode wrote: Hi, Can I not query like this? {!field f=schedule1 op=Contains}[1988-10-22T18:30:00Z TO *]

Re: request SOLR - spatial field with Intersect and Contains functions

2016-09-19 Thread David Smiley
Hi Leo, You should use two spatial fields for this -- one is for an indexed Box/Envelope, and another for an indexed LineString. The indexed box should use either BBoxField or RptWithGeometrySpatialField, and the LineString field should use RptWithGeometrySpatialField. If you have an older

Re: Tutorial not working for me

2016-09-19 Thread Steve Rowe
For now, I was thinking of making it reflect current reality as much as possible, without changing coverage. -- Steve www.lucidworks.com > On Sep 19, 2016, at 1:13 PM, Alexandre Rafalovitch wrote: > > Whatever works. If JIRA, SOLR-6871 is probably a reasonable place. >

Re: Tutorial not working for me

2016-09-19 Thread Alexandre Rafalovitch
And bringing shipped and website version in sync I assume. Ok, I'll be happy to watch whatever issue that happens in and proof-read when it is done. Regards, Alex. Newsletter and resources for Solr beginners and intermediates: http://www.solr-start.com/ On 20 September 2016 at 00:16,

Re: Tutorial not working for me

2016-09-19 Thread Alexandre Rafalovitch
Whatever works. If JIRA, SOLR-6871 is probably a reasonable place. Depends on the scope of "updating" you want to do. Regards, Alex. Newsletter and resources for Solr beginners and intermediates: http://www.solr-start.com/ On 20 September 2016 at 00:02, Steve Rowe

Re: Tutorial not working for me

2016-09-19 Thread Steve Rowe
Hi Alex, Sure - I assume you mean independently from SOLR-9526 and SOLR-6871? -- Steve www.lucidworks.com > On Sep 19, 2016, at 12:40 PM, Alexandre Rafalovitch > wrote: > > On 19 September 2016 at 23:37, Steve Rowe wrote: >> I’m going to start working

Re: Boost according to values

2016-09-19 Thread Walter Underwood
1. Use edismax and the boost parameter. Multiplicative boosting works much, much better than the additive boost used in dismax. 2. Use a log-scaled popularity value. If you know popularity is always greater than 1, use “1 + log(popularity)”. It is a bit safer to use “1 + log(max(1,

Re: Tutorial not working for me

2016-09-19 Thread Alexandre Rafalovitch
On 19 September 2016 at 23:37, Steve Rowe wrote: > I’m going to start working on updating the quick start tutorial - nobody has > updated it since 5.0 AFAICT. Is that something that's worth discussing in a group/JIRA/etc? Regards, Alex. Newsletter and resources for

Re: Tutorial not working for me

2016-09-19 Thread Steve Rowe
In the data driven configset, autoguessing text fields as the “strings" field type is intended to enable faceting. The catch-all _text_ field enables search on all fields, but this may not be a good alternative to fielded search. I’m going to start working on updating the quick start tutorial

Solr replication failure then restart.

2016-09-19 Thread Yunee Lee
Hi, I have a solr replication set up from master to slave in legacy ( It's not from the solr cloud). Somehow the first initial replication doesn't finish and when it reaches 99% and got the error as following and then restart from the beginning. I don't know why it is keep retriggering to

Re: [Query Elevation Component] Elevate on collapsed field

2016-09-19 Thread Alessandro Benedetti
More I investigate the code more I grow sceptical it is feasible at all with the current architecture I will investifgate a bit more. Cheers On Mon, Sep 19, 2016 at 10:17 AM, Alessandro Benedetti < abenede...@apache.org> wrote: > Hi gents, > I was thinking to use the query elevation

Re: script to get core num docs

2016-09-19 Thread David Santamauro
https://cwiki.apache.org/confluence/display/solr/CoreAdmin+API wget -O- -q \ '/admin/cores?action=STATUS=coreName=json=true' \ | grep numDocs // /admin/cores?action=STATUS=alexandria_shard2_replica1=json=1'|grep numDocs|cut -f2 -d':'| On 09/19/2016 11:22 AM, KRIS MUSSHORN wrote:

Re: script to get core num docs

2016-09-19 Thread Walter Underwood
Do a search. The URL will looks something like this: /solr/core-name/select?q=*:*=0=json That will return something like this: {"responseHeader":{"status":0,"QTime":1},"response":{"numFound":287176,"start":0,"docs":[]}} Filter that response through this: jq .response.numFound And

Re: script to get core num docs

2016-09-19 Thread Alexandre Rafalovitch
If you see it in the Admin UI (and you do), you can get it from the web browser's Developer interface but just reloading the page and watching for traffic. Is that enough for you to discover what you need or do you need more specific help? Regards, Alex. Newsletter and resources for Solr

Re: slow updates/searches

2016-09-19 Thread Erick Erickson
Hmmm, not sure, and also not sure what to suggest next. QTimes measure only the search time, not, say, time waiting for the request to get serviced. I'm afraid the next suggestion is to throw a profiler at it 'cause nothing jumps out at me..' Best, Erick On Fri, Sep 16, 2016 at 10:23 AM,

Re: script to get core num docs

2016-09-19 Thread John Bickerstaff
I would imagine there's an http call that would get it and you could call cURL in your bash script... I don't know the URL parameters off hand however... On Mon, Sep 19, 2016 at 9:22 AM, KRIS MUSSHORN wrote: > How can i get the count of docs from a core with bash? >

Re: In cloud mode, using implicit router. Leader changed, not available to index data, and no error occurred.

2016-09-19 Thread Erick Erickson
Are all the documents in the collection? By using implicit router, you are assuming control of what shard each document ends up on. So my guess is that you are not routing the docs to each shard. If you want Solr to automatically assign the shard to a doc, you should be using the default

script to get core num docs

2016-09-19 Thread KRIS MUSSHORN
How can i get the count of docs from a core with bash? Seems like I have to call Admin/Luke but cant find any specifics. Thanks Kris

Re: one of the shard delay in response in Solr cluster

2016-09-19 Thread Shawn Heisey
On 9/19/2016 12:58 AM, Mugeesh Husain wrote: > I have 3 shard, each of shard with 3 servers in solrcloud, if we fired > the query in solr, we woudl get the result from these shard data, if > one of the shard have delay in response, then how to identify which > shard is not giving properly response

request SOLR - spatial field with Intersect and Contains functions

2016-09-19 Thread Leo BRUVRY-LAGADEC
Hi, I am trying spatial search in SOLR 5.0 and I don't know how to implement a solution for the problem I will try to explain. On a SOLR server I have indexed a collection of objects that contains spacial field : multiValued="true" /> class="solr.SpatialRecursivePrefixTreeFieldType"

Solr DateRange Query with AND and different op types

2016-09-19 Thread Sandeep Khanzode
Hi, Can I not query like this? {!field f=schedule1 op=Contains}[1988-10-22T18:30:00Z TO *] AND -schedule3:[1988-10-22T18:30:00Z TO *] AND -schedule2:[1988-10-22T18:30:00Z TO *] I keep getting parsing and date math related errors. If I change it to ...schedule1:[1988-10-22T18:30:00Z TO *] AND

[Query Elevation Component] Elevate on collapsed field

2016-09-19 Thread Alessandro Benedetti
Hi gents, I was thinking to use the query elevation component sequentially to the field collapsing. This means I want to collapse over a field and then elevate docs for that field. Correct me if I am wrong, but we don't have this flexibility right now. I think it is an easy change to give the

Fwd: solr AND riche Data

2016-09-19 Thread kostali hassan
I index rich data in solr 5.4.1 and I use solarium to search terms in index at the field text ;how to display for each term hes category,synonym,similair result,suggester,autocomplet... for exemple the term to search is q=java similair term is: javascript,javaEE..

one of the shard delay in response in Solr cluster

2016-09-19 Thread Mugeesh Husain
Hi, I have 3 shard, each of shard with 3 servers in solrcloud, if we fired the query in solr, we woudl get the result from these shard data, if one of the shard have delay in response, then how to identify which shard is not giving properly response time(or delay reponse or some issue etc). I

Re: Boost according to values

2016-09-19 Thread Rajendra Gaikwad
Hi Midas, I am sure,even though you have results with constant relavance, sorting will give you expected results. Anyway there is parameter bf in dismax parser. Add parameter bf=field(popularity) to query, It is similar to boost items by value in popularity field. hence ultimately higher

Re: Boost according to values

2016-09-19 Thread Midas A
my use case do not suggest me to sort . i have set of data with same relevance. what should be query in that case . On Mon, Sep 19, 2016 at 11:51 AM, Rajendra Gaikwad wrote: > Hi Midas, > > Sort search results on popularity field by desc order. > E.g popularity is

Re: Boost according to values

2016-09-19 Thread Rajendra Gaikwad
Hi Midas, Sort search results on popularity field by desc order. E.g popularity is field in the index which stores popularity information. http://localhost:8983/solr/mycollection/select?q=*:*=popularity desc Thanks, Rajendra Gaikwad Please execuse typo On Mon, Sep 19, 2016, 11:36 AM Midas A

Re: Boost according to values

2016-09-19 Thread Rajendra Gaikwad
Hi Midas, Sort search results on popularity field by desc order. E.g popularity is field in the index which stores popularity information. http://localhost:8983/solr/mycollection/select?q=*:*=popularity desc Thanks, Rajendra Gaikwad Please execuse typo On Mon, Sep 19, 2016, 11:36 AM Midas A

Boost according to values

2016-09-19 Thread Midas A
i have n items in my search result with popularity (1,2,3,4n) . I want higher popularity item should come first then next popularity item say for example a) item with popularity n, b) item with popularity n -1, c) item with popularity n -2, d) item with popularity n - 3, e) item with