Custom update handler with deduplication

2013-12-15 Thread Jorge Luis Betancourt González
to keep track of how many any given query hits our solr server, in plain simple we want to keep a field that counts how many we have tried to insert the same query. We are using Solr 3.6, so how can we use (from the code of our custom update handler) the deduplicatin request processor to check

Re: Custom update handler with deduplication

2013-12-15 Thread Shalin Shekhar Mangar
that counts how many we have tried to insert the same query. We are using Solr 3.6, so how can we use (from the code of our custom update handler) the deduplicatin request processor to check if the query we are trying to insert/update already exists? Greetings

Re: Custom update handler?

2013-03-11 Thread Upayavira
You need to refer to your chain in a RequestHandler config. Search for /update, duplicate that, and change the chain it points to. Upayavira On Mon, Mar 11, 2013, at 05:22 AM, Jack Park wrote: With 4.1, not in cloud configuration, I have a custom response handler chain which injects an

Re: Custom update handler?

2013-03-11 Thread Jack Park
Many thanks. Let me record here what I have tried. I have viewed: http://wiki.apache.org/solr/UpdateXmlMessages and this github project which is suggestive: https://github.com/industria/solrprocessors I now have two UpdateRequestChains: updateRequestProcessorChain name=harvest default=true

Re: Custom update handler? Some progress, new issue

2013-03-11 Thread Jack Park
Further progress now hampered by configuring an update log. When I follow instructions found around the web, I get this: SEVERE: Unable to create core: collection1 caused by Caused by: java.lang.NullPointerException at

Custom update handler?

2013-03-10 Thread Jack Park
With 4.1, not in cloud configuration, I have a custom response handler chain which injects an additional handler for studying the documents as they come in. But, when I do partial updates on those documents, I don't want them to be studied again, so I created another version of the same chain, but

Custom update handler

2013-02-08 Thread Jorge Luis Betancourt Gonzalez
Hi: I'm trying to build a custom update handler to accomplish one specific task. In our app we do query suggestions based on previous queries passed into our frontend app, the thing is that instead of getting this queries from the solr logs, we stored in a separated core. So far so good