Why Nested document 'child' entity query (iterative count)repeatedly executing?

2016-07-14 Thread Rajendran, Prabaharan
Hi All, I am trying to index nested document. While start full data-import (from UI) following options selected Verbose, Commit, Debug & Debug-Mode. Raw Debug-Response shows that "child" entity query execute repeatedly. Kindly help me to understand this, how can I resolve this, am I missed anyt

RE: SimplePostTool: FATAL: IOException while posting data: java.io.IOException: too many bytes written

2016-06-28 Thread Rajendran, Prabaharan
files larger than 2GB with the simple post tool however I don't recommend it because it uses a single indexing thread. On Tue, Jun 28, 2016 at 3:55 PM, Toke Eskildsen wrote: > On Mon, 2016-06-27 at 13:24 +, Rajendran, Prabaharan wrote: > > I am trying to index a text file about

RE: SimplePostTool: FATAL: IOException while posting data: java.io.IOException: too many bytes written

2016-06-28 Thread Rajendran, Prabaharan
Best, Erick On Mon, Jun 27, 2016 at 6:24 AM, Rajendran, Prabaharan wrote: > Hi, > > I am trying to index a text file about 4.2 GB in size. This kind of POC to > understand Solr capacity on indexing & searching. > > Here is my Solr configuration > -Xms1024m-Xmx1

SimplePostTool: FATAL: IOException while posting data: java.io.IOException: too many bytes written

2016-06-27 Thread Rajendran, Prabaharan
Hi, I am trying to index a text file about 4.2 GB in size. This kind of POC to understand Solr capacity on indexing & searching. Here is my Solr configuration -Xms1024m-Xmx1024m-Xss256k java -Dtype=text/csv -Dparams="separator=%09" -Durl=http://localhost:8983/solr/mycollection/

RE: Where is Stored values resides ?

2016-06-24 Thread Rajendran, Prabaharan
data stored there is just a copy of the input. What are you trying to do that you need to look at it? Best, Erick On Thu, Jun 23, 2016 at 8:32 AM, Rajendran, Prabaharan wrote: > Hi, > > I hope that indexed ("index=true") values resides in data/index directory. > >

RE: How to configure and use updateRequestProcessorChain for Solr-5.3.1

2016-06-24 Thread Rajendran, Prabaharan
Solr-5.3.1 URPs are applied _before_ the schema and copyfield is applied. That's why you can do type coercion, etc. Perhaps you need to move your copy instructions into the chain/script, so they are dealt with it on the same level. On 24 Jun 2016 1:17 AM, "Rajendran, Prabaharan&quo

Where is Stored values resides ?

2016-06-23 Thread Rajendran, Prabaharan
Hi, I hope that indexed ("index=true") values resides in data/index directory. May I know where the stored ("stored=true") values placed, is that possible to see the contents ? Thanks, Prabaharan

RE: How to configure and use updateRequestProcessorChain for Solr-5.3.1

2016-06-23 Thread Rajendran, Prabaharan
-start.com/ On 22 June 2016 at 22:40, Rajendran, Prabaharan wrote: > Thanks Alex and Erik. > After using "example/files/update-script.js" , I can able to update document > value. > > Here is my code > > function processAdd(cmd) { > doc = cmd.solrDoc; > va

RE: How to configure and use updateRequestProcessorChain for Solr-5.3.1

2016-06-22 Thread Rajendran, Prabaharan
; > On Jun 22, 2016, at 8:07 AM, Alexandre Rafalovitch wrote: > > On 22 June 2016 at 21:28, Rajendran, Prabaharan wrote: >> function processAdd(cmd) { >>"use strict"; >>var doc = cmd.solrDoc; >> } > > > Did you try not using "u

How to configure and use updateRequestProcessorChain for Solr-5.3.1

2016-06-22 Thread Rajendran, Prabaharan
Hi, I am using Solr-5.3.1 and I am trying to use updateRequestProcessorChain. I used https://wiki.apache.org/solr/UpdateRequestProcessor & https://github.com/pannapat/solr-script-update-processor-example as my reference. Please refer below for the js which I used (placed in collection1/conf/).