Solr 4.10 SSL with Sharded Collection

2017-10-03 Thread Tarala, Magesh
We have a 3 node solr cloud installation running on version 4.10. There is one collection that's sharded. After enabling SSL, we are unable to query the sharded collection. Getting this error: "no servers hosting shard:" I've googled and seen reports of this issue, but have not seen a resolut

RE: Scramble data

2015-10-08 Thread Tarala, Magesh
ansform" method, Best, Erick On Wed, Oct 7, 2015 at 5:09 PM, Tarala, Magesh wrote: > Folks, > I have a strange question. We have a Solr implementation that we would like > to demo to external customers. But we don't want to display the real data, > which contains our customer

Scramble data

2015-10-07 Thread Tarala, Magesh
Folks, I have a strange question. We have a Solr implementation that we would like to demo to external customers. But we don't want to display the real data, which contains our customer information and so is sensitive data. What's the best way to scramble the data of the Solr Query results? By b

Solr Log Analysis

2015-09-23 Thread Tarala, Magesh
I'm using Solr 4.10.4 in a 3 node cloud setup. I have 3 shards and 3 replicas for the collection. I want to analyze the logs to extract the queries and query times. Is there a tool or script someone has created already for this? Thanks, Magesh

RE: Solr Cloud Security Question

2015-08-16 Thread Tarala, Magesh
Thanks Shawn! We are on 4.10.4. Will consider 5.x upgrade shortly. -Original Message- From: Shawn Heisey [mailto:apa...@elyograg.org] Sent: Sunday, August 16, 2015 9:05 PM To: solr-user@lucene.apache.org Subject: Re: Solr Cloud Security Question On 8/16/2015 12:09 PM, Tarala, Magesh

Solr Cloud Security Question

2015-08-16 Thread Tarala, Magesh
I have a solr cloud with 3 nodes. I've added password protection following the steps here: http://stackoverflow.com/questions/28043957/how-to-set-apache-solr-admin-password Now only one node is able to load the collections. The others are getting 401 Unauthorized error when loading the collecti

RE: Duplicate Documents

2015-08-05 Thread Tarala, Magesh
I deleted the index and re-indexed. Duplicates went away. Have not identified root cause, but looks like updating documents is causing it sporadically. Going to try deleting the document and then update. -Original Message- From: Tarala, Magesh Sent: Monday, August 03, 2015 8:27 AM To

Duplicate Documents

2015-08-03 Thread Tarala, Magesh
I'm using solr 4.10.2. I'm using "id" field as the unique key - it is passed in with the document when ingesting the documents into solr. When querying I get duplicate documents with different "_version_". Out off approx. 25K unique documents ingested into solr, I see approx. 300 duplicates. It

RE: StandardTokenizerFactory and WhitespaceTokenizerFactory

2015-07-30 Thread Tarala, Magesh
I'm adding PatternReplaceCharFilterFactory to exclude characters. Looks like this works. -Original Message- From: Tarala, Magesh Sent: Thursday, July 30, 2015 10:37 AM To: solr-user@lucene.apache.org Subject: RE: StandardTokenizerFactory and WhitespaceTokenizerFactory

RE: StandardTokenizerFactory and WhitespaceTokenizerFactory

2015-07-30 Thread Tarala, Magesh
Using PatternReplaceCharFilterFactory to replace comma, period, etc with space or empty char will work? -Original Message- From: Tarala, Magesh Sent: Thursday, July 30, 2015 10:08 AM To: solr-user@lucene.apache.org Subject: StandardTokenizerFactory and WhitespaceTokenizerFactory I am

StandardTokenizerFactory and WhitespaceTokenizerFactory

2015-07-30 Thread Tarala, Magesh
I am indexing text that contains part numbers in various formats that contain hypens/dashes, and a few other special characters. Here's the problem: If I use StandardTokenizerFactory, the hypens, etc are stripped and so I cannot search by the part number 222-333-. I can only search for 222

RE: Different scores for the same search

2015-07-23 Thread Tarala, Magesh
t in 21496, product of:\n1.0 = tf(freq=1.0), with freq of:\n 1.0 = termFreq=1.0\n 8.835305 = idf(docFreq=12, maxDocs=32868)\n0.375 = fieldNorm(doc=21496)\n", "885893_HDR":"\n3.3132396 = (MATCH) weight(description:jackshaft in 26120) [DefaultSimilarity

Different scores for the same search

2015-07-23 Thread Tarala, Magesh
I'm executing a very simple search in a 3 node cluster - 3 shards with 1 replica each. Solr version 4.10.2: http://server1.domain.com:8983/solr/serviceorder_shard1_replica2/select?q=description%3Ajackshaft&fl=service_order&wt=json&indent=true&debugQuery=true I'm getting different scores when I ru

RE: Inconsistent Solr Search Results

2015-07-23 Thread Tarala, Magesh
fferent results every time, you get 1 of three result orderings at a guess. If you have a decent size corpus and are searching by more interesting criteria this should be much less of a problem, but still theoretically can happen. To nail down the ordering completely, specify a secondar

Inconsistent Solr Search Results

2015-07-23 Thread Tarala, Magesh
I have about 15K documents in a 3 node solr cluster. When I execute a simple search, I get the results in different order every time I search. But the number of records is the same. Here's the definition for the field. Any ideas, suggestions would be greatly appreciated.

RE: Solr cloud error during document ingestion

2015-07-13 Thread Tarala, Magesh
toCommit has >> anything to do with the problem, but I could be wrong about that. Yes, agree. This is not related to autoCommit. -Original Message- From: Shawn Heisey [mailto:apa...@elyograg.org] Sent: Sunday, July 12, 2015 6:25 PM To: solr-user@lucene.apache.org Subject: Re: Solr cl

RE: Solr cloud error during document ingestion

2015-07-12 Thread Tarala, Magesh
a little weird. Solr already talks UTF-8 so this should "just work", but then I'm not familiar with all the details of your setup. On Sun, Jul 12, 2015 at 10:11 AM, Tarala, Magesh wrote: > I narrowed down the cause. And it is a character issue! > > The .msg file conte

RE: Solr cloud error during document ingestion

2015-07-12 Thread Tarala, Magesh
2F10.222.238.36%3A8983%2 > Fsolr%2Fserviceorder_shard2_replica1%2F&wt=javabin&version=2> > logs to find root cause. > > On Sun, Jul 12, 2015 at 6:33 AM, Tarala, Magesh wrote: > >> I'm using 4.10.2 in a 3 node solr cloud setup I have a collection >> with

Solr cloud error during document ingestion

2015-07-11 Thread Tarala, Magesh
I'm using 4.10.2 in a 3 node solr cloud setup I have a collection with 3 shards and 2 replicas each. I'm ingesting solr documents via solrj. While ingesting the documents, I get the following error: 264147944 [updateExecutor-1-thread-268] ERROR org.apache.solr.update.StreamingSolrServers ? erro

RE: Solr Encoding Issue?

2015-07-08 Thread Tarala, Magesh
Shawn - Stupid coding error in my java code. Used default charset. Changed to UTF-8 and problem fixed. Thanks again! -Original Message- From: Tarala, Magesh Sent: Wednesday, July 08, 2015 8:11 PM To: solr-user@lucene.apache.org Subject: RE: Solr Encoding Issue? Wow, that makes total

RE: Solr Encoding Issue?

2015-07-08 Thread Tarala, Magesh
Wow, that makes total sense. Thanks Shawn!! I'll go down this path. Thanks, Magesh -Original Message- From: Shawn Heisey [mailto:apa...@elyograg.org] Sent: Wednesday, July 08, 2015 7:24 PM To: solr-user@lucene.apache.org Subject: Re: Solr Encoding Issue? On 7/8/2015 6:09 PM, T

RE: Solr Encoding Issue?

2015-07-08 Thread Tarala, Magesh
ough, this is a character set issue with the browser using a different charset than Solr, it's really the same character, just displayed differently. Shot in the dark though. Erick On Wed, Jul 8, 2015 at 10:49 AM, Tarala, Magesh wrote: > I’m ingesting a .TXT file with HTML content into Solr.

RE: Solr Encoding Issue?

2015-07-08 Thread Tarala, Magesh
Looks like images did not come through. Here's the text... I'm ingesting a .TXT file with HTML content into Solr. The content has the following character highlighted below: The file we get from CRM (also attached): Enter Data in TK Onlyà After ingesting into solr, I see a different character.

Solr Encoding Issue?

2015-07-08 Thread Tarala, Magesh
I'm ingesting a .TXT file with HTML content into Solr. The content has the following character highlighted below: The file we get from CRM (also attached): [cid:image001.png@01D0B972.75BE23F0] After ingesting into solr, I see a different character. This is query response from solr management co

RE: Jetty Plus for Solr 4.10.4

2015-06-29 Thread Tarala, Magesh
M To: solr-user@lucene.apache.org Subject: Re: Jetty Plus for Solr 4.10.4 On 6/29/2015 8:44 AM, Tarala, Magesh wrote: > We are planning to go to production with Solr 4.10.4. Documentation > recommends to use full Jetty package that includes JettyPlus. I'm not able to > find the instructions to do

Jetty Plus for Solr 4.10.4

2015-06-29 Thread Tarala, Magesh
We are planning to go to production with Solr 4.10.4. Documentation recommends to use full Jetty package that includes JettyPlus. I'm not able to find the instructions to do this. Can someone point me in the right direction? Thanks, Magesh