Synonyms update on Solr Cloud.

2017-09-11 Thread Sairam Yadav Kurumathy
Hi, I'm using solr version 6.4.2 and I've started solr using cmd "solr -e cloud -noprompt" on windows. I wanted to update synonyms.txt file. When i ran the cmd "*./server/scripts/cloud-scripts/zkcli.sh -cmd upconfig -zkhost localhost:9983 -confdir ./server/solr/configsets/data_driven_schema_conf

Re: multi language search engine in solr

2017-09-11 Thread Tommaso Teofili
another thing to consider is what users would expect, would english user search over english docs only ? if yes, the most important task would be to correctly set up / create accurate per language analyzers, otherwise you may consider to also adopt machine translation, either on the search queries

Re: commit time in solr cloud

2017-09-11 Thread Susheel Kumar
Hi Wei, I'm assuming the lastModified time is when latest hard commit happens. Is that correct? >> Yes. its correct. I also see sometime difference between replicas and leader commit timestamps where the "diff/lag < autoCommit interval". So in your case you noticed like upto 10 mins. My guess is

Re: Arabic words search in solr

2017-09-11 Thread mohanmca01
Hi Aman Deep Singh, Thanks for the information. We tried with EdgeNGramFilterFactory but it's not workingWe are not getting expected results. Can you please suggest us alternative possible ways.. Thanks, -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Latest stable SOLR version

2017-09-11 Thread Gunalan V
Hello, In our project we are planning to use SOLR and I'm new to it. So, what is the latest stable version we can use and that is supported by Apache? Kindly let me know your suggestions because we started with installing SOLR 6.2 but heard that there are many issues and need to be upgraded to 6.

Re: Latest stable SOLR version

2017-09-11 Thread Walter Underwood
We have been running 6.5.1 in production since May. I would not run anything before that. The new metrics code caused performance problems. That was fixed in 6.5.0. There was a memory leak talking to Zookeeper. That was fixed in 6.5.1. Solr 6.6.1 should be released very soon. wunder Walter Und

Re: Latest stable SOLR version

2017-09-11 Thread Gunalan V
Thank You! I believe 6.6 should have fixed all the previous version issues. But in 6.6 is there any major issues noticed? if so I will go with 6.5.1 else will proceed with 6.6. Kindly confirm! GVK On Mon, Sep 11, 2017 at 10:59 AM, Walter Underwood wrote: > We have been running 6.5.1 in pro

Re: Latest stable SOLR version

2017-09-11 Thread Alessandro Hoss
Solr 6.6.1 was already released on September 7: http://www.apache.org/dyn/closer.lua/lucene/solr/6.6.1 Release notes: https://lucene.apache.org/solr/6_6_1/changes/Changes.html Guess you should give it a try. On Mon, Sep 11, 2017 at 1:15 PM Gunalan V wrote: > Thank You! > > I believe 6.6 should

RE: multi language search engine in solr

2017-09-11 Thread Junte Zhang
Having the language already separated makes it a lot easier. You could add the language suffix (e.g. 3 letter with ISO 639-2B https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) per field where you have the different languages. Or else you could have copied an entire field to their language

Solr Deleting Docs after Indexing

2017-09-11 Thread Kaushik
I am using Solr 5.3 and have a custom Solr J application to write to Solr. When I index using this application, I expect to see 4 documents indexed. But for some strange reason, 3 documents get deleted and there is always only 1 document in the index. I say that because the final tally on the Solr

Re: Latest stable SOLR version

2017-09-11 Thread Shawn Heisey
On 9/11/2017 9:36 AM, Gunalan V wrote: > In our project we are planning to use SOLR and I'm new to it. So, what is > the latest stable version we can use and that is supported by Apache? As of four days ago, the latest release is 6.6.1.  This is a point release, intended to fix known bugs in the 6

Re: Solr Deleting Docs after Indexing

2017-09-11 Thread Susheel Kumar
Does all 4 document's have same docID (Unqiue key)? On Mon, Sep 11, 2017 at 2:44 PM, Kaushik wrote: > I am using Solr 5.3 and have a custom Solr J application to write to Solr. > When I index using this application, I expect to see 4 documents indexed. > But for some strange reason, 3 documents

SolrCloud 5.3.1 "IndexWriter is closed"

2017-09-11 Thread Kelly, Frank
Just wondering if anyone has seen this before and might understand why this is happening When we deploy a new schema.xml adding some new search terms we get the dreaded “IndexWriter is closed” exception and the only solution we have found to date is a Solr restart :-( Environment: * Solr

Re: Solr Deleting Docs after Indexing

2017-09-11 Thread Kaushik
It was indeed the duplicate Id's. Somehow I thought I had it unique all the way. Thanks, Kaushik On Mon, Sep 11, 2017 at 3:21 PM, Susheel Kumar wrote: > Does all 4 document's have same docID (Unqiue key)? > > On Mon, Sep 11, 2017 at 2:44 PM, Kaushik wrote: > > > I am using Solr 5.3 and have a

Solr JDBC and Basic Authentication

2017-09-11 Thread calamita . agostino
Hi all, I'm using Solr 6.6 with solrj for jdbc connections and query. In my Solr installation, configured in SolrCloud mode with 3 servers, basic authentication is enabled. When I try to connect and execute a query, I get "USER_REQUIRED auth header null" in log files. I found on some forums t

Re: Latest stable SOLR version

2017-09-11 Thread Gunalan V
Thanks Alessandro! On Mon, Sep 11, 2017 at 11:31 AM, Alessandro Hoss wrote: > Solr 6.6.1 was already released on September 7: > > http://www.apache.org/dyn/closer.lua/lucene/solr/6.6.1 > Release notes: https://lucene.apache.org/solr/6_6_1/changes/Changes.html > > Guess you should give it a try.

Re: Latest stable SOLR version

2017-09-11 Thread Gunalan V
Thanks Shawn! On Mon, Sep 11, 2017 at 2:01 PM, Shawn Heisey wrote: > On 9/11/2017 9:36 AM, Gunalan V wrote: > > In our project we are planning to use SOLR and I'm new to it. So, what is > > the latest stable version we can use and that is supported by Apache? > > As of four days ago, the latest

Re: Solr JDBC and Basic Authentication

2017-09-11 Thread Joel Bernstein
I don't believe there is a work around for this at this time. At Alfresco we are currently integrating the Solr's JDBC client into the product and we'll be investigating approaches for securing the JDBC connection. We'll be looking into the basic auth as part of this. So I would expect to see prog

Re: ways to check if document is in a huge search result set

2017-09-11 Thread Derek Poh
Some additional information. I have a query from user that a supplier's product(s) is not in the search result. I debugged by adding a fq on the supplier id to the query to verify the supplier's product is in thesearch result. The products do existin the search result. I want to tell user in w

Provide suggestion on indexing performance

2017-09-11 Thread Aman Tandon
Hi, We want to know about the indexing performance in the below mentioned scenarios, consider the total number of 10 string fields and total number of documents are 10 million. 1) indexed=true, stored=true 2) indexed=true, docValues=true Which one should we prefer in terms of indexing performanc

How to check if solr cores have any issues and the node needs to be restarted

2017-09-11 Thread swathi
Hello Team, I am trying to restart a node that has issues with the cores. I was hoping to use CORE STATUS api and check whether it has any cores listed in the initFailures or not. Since all such cores do not respond to ping and receive traffic, I want to put effort into finding out the reason fro

Search if the indexed data is present in the query or not

2017-09-11 Thread Nithin Sreekumar
My query is a message which can be of any length. For example "A quick brown lazy fox jump over the well and ran to the jungle" is my query to check. I have some indexed data. The indexed data contains strings which is present as well as not in the message. For example :- {'lazy','jump',etc} Obviou

Search if the indexed data is present in the query or not

2017-09-11 Thread Nithin Sreekumar
My query is a message which can be of any length. For example "A quick brown lazy fox jump over the well and ran to the jungle" is my query to check. I have some indexed data. The indexed data contains strings which is present as well as not in the message. For example :- {'lazy','jump',etc} Obviou