Re: Calling custom request handler with data import

2015-01-31 Thread Mikhail Khludnev
at your service! On Sat, Jan 31, 2015 at 1:00 PM, vineet yadav wrote: > Hi mikhail, > Thanks for the suggestion. it is helpful. > > Regards > Vineet Yadav > > > On Sat, Jan 31, 2015 at 2:38 PM, Mikhail Khludnev < > mkhlud...@griddynamics.com> wrote: > > > Did you try to specify update processor?

Re: Calling custom request handler with data import

2015-01-31 Thread vineet yadav
Hi mikhail, Thanks for the suggestion. it is helpful. Regards Vineet Yadav On Sat, Jan 31, 2015 at 2:38 PM, Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > Did you try to specify update processor?, ie > > On Fri, Jan 30, 2015 at 5:07 PM, vineet yadav > > wrote: > > > > class="org.apac

Re: Calling custom request handler with data import

2015-01-31 Thread Mikhail Khludnev
Did you try to specify update processor?, ie On Fri, Jan 30, 2015 at 5:07 PM, vineet yadav wrote: > class="org.apache.solr.handler.dataimport.DataImportHandler"> > > data-import.xml > /ner > > -- Sincerely yours Mikhail Khludnev Principal Engineer, Grid Dynamics

Re: Calling custom request handler with data import

2015-01-30 Thread Dan Davis
You know, another thing you can do is just write some Java/perl/whatever to pull data out of your database and push it to Solr.Not as convenient for development perhaps, but it has more legs in the long run. Data Import Handler does not easily multi-thread. On Sat, Jan 31, 2015 at 12:34 AM,

Re: Calling custom request handler with data import

2015-01-30 Thread Dan Davis
The Data Import Handler isn't pushing data into the /update request handler. However, Data Import Handler can be extended with transformers. Two such transformers are the TemplateTransformer and the ScriptTransformer. It may be possible to get a script function to load your custom Java code.