Re: How to run a subsequent update query to documents indexed from a dataimport query

2014-01-27 Thread Dileepa Jayakody
Hi All, I have implemented my requirement as a EventListener which runs on importEnd of the dataimporthandler. I'm running Solrj based client to send Stanbol enhancement updates to the documents within my EventListener. Thanks, Dileepa On Mon, Jan 27, 2014 at 4:34 PM, Dileepa Jayakody wrote:

Re: How to run a subsequent update query to documents indexed from a dataimport query

2014-01-27 Thread Dileepa Jayakody
Hi Varun and all, Thanks for your input. On Mon, Jan 27, 2014 at 11:29 AM, Varun Thacker wrote: > Hi Dileepa, > > If I understand correctly this is what happens in your system correctly : > > 1. DIH Sends data to Solr > 2. You have written a custom update processor ( > http://wiki.apache.org/sol

Re: How to run a subsequent update query to documents indexed from a dataimport query

2014-01-26 Thread Varun Thacker
Hi Dileepa, If I understand correctly this is what happens in your system correctly : 1. DIH Sends data to Solr 2. You have written a custom update processor ( http://wiki.apache.org/solr/UpdateRequestProcessor) which the asks your Stanbol server for meta data, adds it to the document and then in

Re: How to run a subsequent update query to documents indexed from a dataimport query

2014-01-26 Thread Dileepa Jayakody
Hi Ahmet, On Mon, Jan 27, 2014 at 3:26 AM, Ahmet Arslan wrote: > Hi, > > Here is what I understand from your Question. > > You have a custom update processor that runs with DIH. But it is slow. You > want to run that text enhancement component after DIH. How would this help > to speed up thing

Re: How to run a subsequent update query to documents indexed from a dataimport query

2014-01-26 Thread Ahmet Arslan
Hi, Here is what I understand from your Question. You have a custom update processor that runs with DIH. But it is slow. You want to run that text enhancement component after DIH. How would this help to speed up things? In this approach you will read/query/search already indexed and committed

Re: How to run a subsequent update query to documents indexed from a dataimport query

2014-01-26 Thread Dileepa Jayakody
Hi all, Any ideas on how to run a reindex update process for all the imported documents from a /dataimport query? Appreciate your help. Thanks, Dileepa On Thu, Jan 23, 2014 at 12:21 PM, Dileepa Jayakody < dileepajayak...@gmail.com> wrote: > Hi All, > > I did some research on this and found so

Re: How to run a subsequent update query to documents indexed from a dataimport query

2014-01-22 Thread Dileepa Jayakody
Hi All, I did some research on this and found some alternatives useful to my usecase. Please give your ideas. Can I update all documents indexed after a /dataimport query using the last_indexed_time in dataimport.properties? If so can anyone please give me some pointers? What I currently have in

How to run a subsequent update query to documents indexed from a dataimport query

2014-01-22 Thread Dileepa Jayakody
Hi All, I have a Solr requirement to send all the documents imported from a /dataimport query to go through another update chain as a separate background process. Currently I have configured my custom update chain in the /dataimport handler itself. But since my custom update process need to conne