Re: SOLR json request API syntax on facet domain with filter & field list

2018-07-13 Thread Mikhail Khludnev
JB, It should work. Can you confirm that you have non INI children in docset? What is you negate that filter? debug=all is really verbose but it allows to see how "filter" is parsed. On Thu, Jul 12, 2018 at 5:44 PM jeebix wrote: > Hello everybody, > > I work on a SOLR version 6.0.0. I use the

Is router.field an explicit shard name, or hashed?

2018-07-13 Thread Ken Krugler
Hi all, From https://lucene.apache.org/solr/guide/6_6/shards-and-indexing-data-in-solrcloud.html#ShardsandIndexingDatainSolrCloud-DocumentRouting , and various

Re: CloudSolrClient URL Too Long

2018-07-13 Thread Joe Obernberger
Shawn - thank you!  That works great.  Stupid huge searches here I come! -Joe On 7/12/2018 4:46 PM, Shawn Heisey wrote: On 7/12/2018 12:48 PM, Joe Obernberger wrote: Hi - I'm using SolrCloud 7.3.1 and calling a search from Java using: org.apache.solr.client.solrj.response.QueryResponse

Re: Enabling the Auto purging for the documents which are already index.

2018-07-13 Thread Alexandre Rafalovitch
Delete by query with an external from job? Maybe even using date math in the query to avoid hardcoding real dates. Not everything needs to be inside of Solr. Regards, Alex On Fri, Jul 13, 2018, 4:33 AM Adarsh_infor, wrote: > Hi All, > > I have index which is being lying in production for

Re: Enabling the Auto purging for the documents which are already index.

2018-07-13 Thread Erick Erickson
1> Well, a day is just 86,400 seconds. But that's just how often the thread wakes up and looks for docs to delete 2> Maybe. If you already have a field that has the date you want to use to expire the document, then no. Otherwise you must re-index 3> no. How could it if there's no

Re: Hackdays in October, London & Montreal

2018-07-13 Thread Charlie Hull
On 12/07/2018 10:28, Charlie Hull wrote: Hi all, A couple of years ago I ran two free Lucene Hackdays in London and Boston (the latter just before Lucene Revolution). Here's what we got up to with the kind support of Alfresco, Bloomberg, BA Insight and Lucidworks

Re: copy field

2018-07-13 Thread Erick Erickson
Consider a range facet where you specify a start date, end date and "gap". The "date math" bits allow you to specify gaps like +1HOUR, +1DAY etc. https://lucene.apache.org/solr/guide/7_4/faceting.html Best, Erick On Fri, Jul 13, 2018 at 3:39 AM, Andrea Gazzarini wrote: > You're welcome, > but

Silk from LucidWorks

2018-07-13 Thread rgummadi
Is SiLK from LucidWorks still an acitve project. I looked at their github and it does not seem to be active. If so are there any alternative solutions. -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Special character (&) search in query not working

2018-07-13 Thread Gurdeep Singh
Replace & with %26 and try. > On 13 Jul 2018, at 8:54 PM, shruti suri wrote: > > Hi, > > I have Special character(&) in my index and when I am searching for some > value with ampersand, the search breaks. > > query term : "Travel Marketing & Finance" > > *FieldType* > >

Special character (&) search in query not working

2018-07-13 Thread shruti suri
Hi, I have Special character(&) in my index and when I am searching for some value with ampersand, the search breaks. query term : "Travel Marketing & Finance" *FieldType*

Re: copy field

2018-07-13 Thread Andrea Gazzarini
You're welcome, but keep in mind what Erik said: it seems you don't need that information at "view" level so maybe with range faceting you could get what you need without creating additional (and redundant) fields. Andrea Il ven 13 lug 2018, 07:04 Anil ha scritto: > Thanks Andrea. i will write

Enabling the Auto purging for the documents which are already index.

2018-07-13 Thread Adarsh_infor
Hi All, I have index which is being lying in production for quite some time. Now we need to delete the documents based on Date range, i.e., after 270 days we should be able to delete the old documents. beyond that many days old. I hear about this feature Time to Live i need to know couple of

Re: SolrCloud and Kubernetes

2018-07-13 Thread Vincenzo D'Amore
Hi Sundar, maybe you already know, but I've developed a small project around SolrCloud with Kubernetes that explain how to start a small cluster (1 Solr node and 1 zookeeper node). https://github.com/freedev/solrcloud-zookeeper-kubernetes Best regards, Vincenzo On Wed, Jul 11, 2018 at 10:54

Enabling the Auto purging for the documents which are already index.

2018-07-13 Thread Adarsh_infor
Hi All, I have index which is being lying in production for quite some time. Now we need to delete the documents based on Date range, i.e., after 270 days we should be able to delete the old documents. beyond that many days old. I hear about this feature Time to Live i need to know couple of

Enabling the Auto purging for the documents which are already index.

2018-07-13 Thread Adarsh_infor
Hi All, I have index which is being lying in production for quite some time. Now we need to delete the documents based on Date range, i.e., after 270 days we should be able to delete the old documents. beyond that many days old. I hear about this feature Time to Live i need to know couple of