I need to update large amount of documents in solr very often. For example, set "online" = true for user_id = 5 and so on. But speed of indexation via http handler is very slow. Solr support delete documents by query, is there way to update by query?
|
|
No, unfortunately there isn't any feature like update by query. It would be really useful, like a new feature to make possible updating a document without the need to resubmit it entirely; there's a 5 years old jira issue for that. For now you should just re-submit your documents with the updated fields, they will be overwritten (it means deleted + re-inserted) if you use the same By the way, are you making an http request for each document to update? If yes, you can make it faster submitting more than one document at a time like this:
|
||||
|
|
|
As javanna answered, there is not any facility to update by query, as Solr also does not allow you update individual fields in a document stored in the index, so a re-submit is the only method of updating. I am curious though as to why your updates are so slow. Below are a few ways that you could improve the update speed.
|
|||
|
|
I would use DIH with modified SQL query that will accept parameters from URL. SQL query will look like:
Then to reindex selected users you are adding user_id parameter to URL like that:
Docs about using DIH and custom parameters: Solr - DataImportHandler |
|||
|
|