How do I pick/ delete all the documents from Solr using the boolean NOT notion?
i.e. How do I delete all the documents from Solr who's id does NOT start with A59?
|
How do I pick/ delete all the documents from Solr using the boolean NOT notion? i.e. How do I delete all the documents from Solr who's id does NOT start with A59? |
|||
|
|
|
Use '-' to indicate NOT. For example, to query documents with id not starting with A59, the query would be: To delete by query, post the query in a delete message to the update handler, as specified here. EDIT: NOT (all uppercase) can also be used as operator |
||||
|
|
|
I don't believe that a negative delete by query works. See this Jira ticket: https://issues.apache.org/jira/browse/SOLR-381 They do say that there is a workaround to prefix in a :, but I do not have any luck with that. This does not work (same with using NOT) java -Ddata=args -jar /opt/solr/example/exampledocs/post.jar "-userid:*" java -jar /opt/solr/example/exampledocs/post.jar *.xml Adding in a : gives a syntax error (same with using NOT) java -Ddata=args -jar /opt/solr/example/exampledocs/post.jar ": -userid:*" java -jar /opt/solr/example/exampledocs/post.jar *.xml SimplePostTool: version 1.4 SimplePostTool: POSTing args to http://localhost:8983/solr/update.. SimplePostTool: FATAL: Solr returned an error #400 Error parsing Lucene query SimplePostTool: version 1.4 |
|||
|
|
|
Exclamation works for NOT as well, so:
should work in the case above. |
|||
|
|