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

RE: Scramble data

2015-10-08 Thread Tarala, Magesh
ansform" method, Best, Erick On Wed, Oct 7, 2015 at 5:09 PM, Tarala, Magesh <mtar...@bh.com> 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 co

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

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

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

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

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

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 is

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: 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

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 Using

RE: Different scores for the same search

2015-07-23 Thread Tarala, Magesh
first. If the issue is that the score is the same for some docs, try adding a deliberate sort: sort=score desc,id asc i.e. sort by score, but if the scores are the same, sort by id. Upayavira On Thu, Jul 23, 2015, at 07:22 PM, Tarala, Magesh wrote: I'm executing a very simple search in a 3

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. fieldType

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%3Ajackshaftfl=service_orderwt=jsonindent=truedebugQuery=true I'm getting different scores when I run

RE: Inconsistent Solr Search Results

2015-07-23 Thread Tarala, Magesh
, 2015 at 8:46 AM, Tarala, Magesh mtar...@bh.com wrote: 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

RE: Solr cloud error during document ingestion

2015-07-13 Thread Tarala, Magesh
. 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 cloud error during document ingestion On 7/11/2015 9:33 PM, Tarala, Magesh wrote: I'm using 4.10.2 in a 3 node

RE: Solr cloud error during document ingestion

2015-07-12 Thread Tarala, Magesh
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 mtar...@bh.com wrote: I narrowed down the cause. And it is a character issue! The .msg file content I'm extracting using Tika parser

RE: Solr cloud error during document ingestion

2015-07-12 Thread Tarala, Magesh
%2Fserviceorder_shard2_replica1%2Fwt=javabinversion=2 logs to find root cause. On Sun, Jul 12, 2015 at 6:33 AM, Tarala, Magesh mtar...@bh.com wrote: 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

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 ?

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): td align=center style=text-align:center;font size=3span

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

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
, 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 mtar...@bh.com wrote: I’m ingesting a .TXT file with HTML content into Solr

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, Tarala

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

RE: Jetty Plus for Solr 4.10.4

2015-06-29 Thread Tarala, Magesh
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 this. Can someone point me