I am using Luke, to add a new field to all existing documents in the index. I can easily do this for 1 document by using the "Reconstruct and Edit" option. However, I want to do this for all document, in one go. Right now, I have to do this one by one. There are 2000 Documents in the index. This would take a lot of time.
Asked
Active
Viewed 379 times
1
-
Try using MatchAllDocsQuery to get all the documents and update them with new field – aravinth Sep 01 '16 at 12:55
-
Interesting case, filed: https://github.com/DmitryKey/luke/issues/66 Any chance to use atomic update with solr, for instance? – D_K Sep 20 '16 at 15:02