Re: Issue with delta import

2017-08-16 Thread vrindavda
yes. -- View this message in context: http://lucene.472066.n3.nabble.com/Issue-with-delta-import-tp4347680p4350734.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Issue with delta import

2017-08-10 Thread vrindavda
refer this : http://lucene.472066.n3.nabble.com/Number-of-requests-spike-up-when-i-do-the-delta-Import-td4338162.html#a4339168 -- View this message in context: http://lucene.472066.n3.nabble.com/Issue-with-delta-import-tp4347680p4350157.html Sent from the Solr - User mailing list archive at

Re: Proximity Search using edismax parser.

2017-06-12 Thread vrindavda
hi you can refer : http://yonik.com/solr/query-syntax/ -- View this message in context: http://lucene.472066.n3.nabble.com/Proximity-Search-using-edismax-parser-tp4340115p4340133.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Number of requests spike up, when i do the delta Import.

2017-06-06 Thread vrindavda
I found this article helpful. https://wiki.apache.org/solr/DataImportHandlerDeltaQueryViaFullImport -- View this message in context: http://lucene.472066.n3.nabble.com/Number-of-requests-spike-up-when-i-do-the-delta-Import-tp4338162p4339168.html Sent from the Solr - User mailing list archive

Re: Number of requests spike up, when i do the delta Import.

2017-06-02 Thread vrindavda
Thanks Erick , Could you please suggest some alternative to go with SolrNET. @jlman, I tried your way, that do reduces the number of request, but delta-import still take longer than full-import. There is no improvement in performance. -- View this message in context:

Re: Number of requests spike up, when i do the delta Import.

2017-06-01 Thread vrindavda
Thanks Erick, But how do I solve this? I tried creating Stored proc instead of plain query, but no change in performance. For delta import it in processing more documents than the total documents. In this case delta import is not helping at all, I cannot switch to full import each time. This

Re: Number of requests spike up, when i do the delta Import.

2017-05-31 Thread vrindavda
Exactly, Delta import in taking More than Delta Here are the details required. When I do the delta import for 600(of total 291,633) documents is get this : Indexing completed. Added/Updated: 360,000 documents. Deleted 0 documents. (Duration: 6m 58s) For Full import : Indexing completed.

Number of requests spike up, when i do the delta Import.

2017-05-31 Thread vrindavda
Hello, Number of requests spike up, whenever I do the delta import in Solr. Please help me understand this. -- View this message in context:

Re: Solr licensing for commercial product.

2017-05-09 Thread vrindavda
Thanks Shawn, One more question. I found below snippet in license file. Do I need to mention my product owner details in highlighted section? APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice,

Solr licensing for commercial product.

2017-05-09 Thread vrindavda
Hello, Please let me know what all things do I need to consider for licensing before shipping solr with commercial product. How will Solr know that what client is using it. Thank you, Vrinda Davda -- View this message in context:

Re: SPLITSHARD Working

2017-05-08 Thread vrindavda
Thanks I go it. But I see that distribution of shards and replicas is not equal. For Example in my case : I had shard 1 and shard2 on Node 1 and their replica_1 and replica_2 on Node 2. I did SHARDSPLIT on shard1 to get shard1_0 and shard1_1 such that and shard1_0_replica0 are created on

SPLITSHARD Working

2017-05-08 Thread vrindavda
Hi, I need to SPLITSHARD such that one split remains on the same machine as original and another uses new machines for leader and replicas. Is this possible ? Please let me know what properties do I need to specify in Collection API to achieve this. Thank you, Vrinda Davda -- View this

Re: Backup not working

2017-04-21 Thread vrindavda
I realized that Segments_1 is getting created in Shard2 and Segments_2 in Shard1. Backup API is looking for Segments_1 in Shard1. Please correct if I have configured something wrongly. I have created collection using collection API and am using data_driven_schema_configs configs. -- View this

Backup not working

2017-04-21 Thread vrindavda
Hello, I am trying to backup the Solr index data using collection API. I have \collection2_shard1_replica1\data\index\segments_6 in my data folder, but when I try to backup files, It expects \collection2_shard1_replica1\data\index\segments_5 which is not there in data folder, hence giving

Re: Architecture suggestions

2017-03-24 Thread vrindavda
server. Please advice. Thanks, Vrinda Davda On 24-Mar-2017 6:53 PM, "Shawn Heisey-2 [via Lucene]" < ml-node+s472066n4326641...@n3.nabble.com> wrote: On 3/24/2017 1:15 AM, vrindavda wrote: > Thanks Erick and Emir , for your prompt reply. > > We are expecting around 50M

Re: Architecture suggestions

2017-03-24 Thread vrindavda
Thanks Erick and Emir , for your prompt reply. We are expecting around 50M documents to sit on 80GB . I understand that there is no equation to predict the number/size of server. But considering to have minimal fault tolerant architecture, Will 2 shards and 2 replicas with 128GB RAM, 4 core solr

Architecture suggestions

2017-03-23 Thread vrindavda
Hello, My production index is expected to contain 50 million documents, with addition of around 1 million every year. Should I go for 64GB RAM (4 Shards /4 Replicas) Or 128GB (2 Shards/ 2 Replicas) ? Please suggest if above assumptions are incorrect. What all parameters should I consider ?

Re: Solr Query Suggestion

2017-03-07 Thread vrindavda
Hi Emir,Grouping is exactly what I wanted to achieve. Thanks !!Thank you,Vrinda Davda -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Query-Suggestion-tp4323180p4323743.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr Query Suggestion

2017-03-03 Thread vrindavda
Hello, I have indexed data of 3 categories say Category-1,Category-2,Category-3. I need suggestions to form query as to get top 3 results from each categories - Category-1(3),Category-2(3),Category-3(3). - Total 9. Is this possible ? Thank you, Vrinda Davda -- View this message in context:

Re: SOLR JOIN

2017-03-01 Thread vrindavda
Hi Nitin, You can use Streaming Expressions for Joins in SolrCloud only (For Collections Not Core). Again this can affect you performance, I would suggest to copy fields from one collection to another any seamlessly use

Re: Solr6.3.0 SolrJ API for Basic Authentication

2017-02-16 Thread vrindavda
Hi Bryan, Thanks for your quick response. I am trying to ingest data into SolrCloud, Hence I will not have any solr query. Will it be right approach to use QueryRequest to index data ? Do I need to put any dummy solrQuery instead ? -- View this message in context:

Solr6.3.0 SolrJ API for Basic Authentication

2017-02-14 Thread vrindavda
Hello , I am trying to connect SolrCloud using SolrJ API using following code : String zkHostString = "localhost:9983"; String USER = "solr"; String PASSWORD = "SolrRocks"; CredentialsProvider credentialsProvider = new BasicCredentialsProvider();

Re: Import from S3

2016-11-24 Thread vrindavda
Thanks for the quick response Aniket, Do i need to make any specific configurations to get data from Amazon S3 storage ? -- View this message in context: http://lucene.472066.n3.nabble.com/Import-from-S3-tp4307382p4307384.html Sent from the Solr - User mailing list archive at Nabble.com.

Import from S3

2016-11-24 Thread vrindavda
Hello, I have some data in S3, say in text/CSV format, Please provide pointers how can i ingest this data into Solr. Thank you, Vrinda Davda -- View this message in context: http://lucene.472066.n3.nabble.com/Import-from-S3-tp4307382.html Sent from the Solr - User mailing list archive at

Re: Monitoring Apache Solr

2016-08-30 Thread vrindavda
Hi Hardika, To stop/restart solr you can try exploring monit ( for Solr Solr monit ) great tool to monitor you services. Thank you, Vrinda Davda -- View this message in context:

Change password

2016-08-30 Thread vrindavda
Hi, I have enabled SSL for Solr following steps here Now, I am trying to change -keypass and -storepass (to say "secret123" from "secret") while generating new .jks file, and then updating the same password in /bin/solr.in.cmd.

Re: Solr 6: Use facet with Streaming Expressions- LeftOuterJoin

2016-08-19 Thread vrindavda
Thanks again ! I will try this and followup. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-6-Use-facet-with-Streaming-Expressions-LeftOuterJoin-tp4290526p4292341.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr 6: Use facet with Streaming Expressions- LeftOuterJoin

2016-08-18 Thread vrindavda
I am not able to get count(*) for more than one field -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-6-Use-facet-with-Streaming-Expressions-LeftOuterJoin-tp4290526p4292208.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr 6: Use facet with Streaming Expressions- LeftOuterJoin

2016-08-12 Thread vrindavda
Hey Joel, Thanks for you quick response, I was able to merge documents using OutherHashJoin. But I am not able to use rollup() to get count(*) for multiple fields, as we get using facets. Please suggest if last option is to merge documents using atomic updates, and then use facets(or

Re: Streaming expressions malfunctioning

2016-08-05 Thread vrindavda
Hello, I am looking for similar use case. Will it be possible for you to share the corrected syntax ? -- View this message in context: http://lucene.472066.n3.nabble.com/Streaming-expressions-malfunctioning-tp4281016p4290528.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr 6: Use facet with Streaming Expressions- LeftOuterJoin

2016-08-05 Thread vrindavda
Hello, I have two collections and need to join the results on uniqueIds. I am able to do that with Streaming Expressions- LeftOuterJoin. Is there any way to use facets along with this? -- View this message in context: