Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a question about Solr and the possibility to implement a customized update handler

Basically, the scenario is this:

  • FIELD-A : my main field
  • FIELD-B and FIELD-C : 2 copyfield with source in A

After FIELD-A has its value stored, i need this valued to be copied in FIELD-B and C, then processed (let's say extract a substring) and stored in FIELD-B and C before indexing time. I'm not using DIH.

edit: i'm pushing my data via nutch (forgot to mention that)

As far as i've understood, copyfields triggers after indexing (but i'm not so sure about this).

I've already read throu the wiki page and still i don't understand a lot of things:

1) customupdateprocessor is an alternative to conditionalcopyfield or do they have to exist both in my solr?

2) after creating my conditionalcopyfield jar file, how do i declare it in my schema?

3) how do i have to modify my solrconfig.xml to use my updater?

4) if i'm choosing the wrong way, any suggestion is appreciated, better if some examples or well documented links are provided

I read a lot (googling and lucene ml on nabble) but there's not so much documentation about this. I just need to create a custom updater for my two copyfields,

Thanks all in advance!

share|improve this question
i just had a talk via irc with one of solr's developers, and he helped me figure this out. the wiki page is (as he also said) weak, so when i'm finished i'm contributing with a newer version of it. as soon as it's finished, i'll post again here with the explanation and the new wiki guide, so everyone with my problem can go throu the correct path! – Samuele Mattiuzzo Jul 6 '11 at 13:28

2 Answers

up vote 1 down vote accepted

Its not really complicated.. Following is an excellent link I came across to write a custom solr update handler.

  http://knackforge.com/blog/selvam/integrating-solr-and-mahout-classifier

I tested it in my solr and it just works fine!

share|improve this answer
Thank! I actually managed myself to solve the problem later last year, but actually i needed the categorization algorithm! And also, that's really a good practical example of a custom update handler! This is a 2 in 1 answer! Kudos mate! – Samuele Mattiuzzo Mar 30 '12 at 14:58
Glad that helped – Karthick Mar 30 '12 at 18:26

If you are using SOLR 4 or planning to use it, http://wiki.apache.org/solr/ScriptUpdateProcessor could be an easier solution. Have fun!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.