I am indexing posts in SOLR with "name", "title", and "description" fields. I'd like to later be able to add a file (like a Word doc or a PDF) using Tika / the ExtractingRequestHandler.

I know I can add documents like so: (or through other interfaces)

curl 'http://localhost:8983/solr/update/extract?literal.id=post1&commit=true' -F "myfile=@tutorial.html"

But this replaces the correct post (post1 above) -- is there a parameter I can pass to have it only add to the record?

link|improve this question

71% accept rate
feedback

1 Answer

In Solr you can't modify fields in a document. You can only delete or add/replace whole documents. Therefore, when "appending" a file to the Solr document you have to rebuild your document from its current values (using literal), i.e. query for the document and then:

http://localhost:8983/solr/update/extract?literal.id=post1&literal.name=myName&literal.title=myTitle&literal.description=myDescription&commit=true
link|improve this answer
+1 Using Solrj makes it easy to do what Mauricio describes – Pascal Dimassimo Jul 28 '10 at 12:58
feedback

Your Answer

 
or
required, but never shown

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