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

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?

share|improve this question

3 Answers

up vote 20 down vote accepted

Use '-' to indicate NOT.

For example, to query documents with id not starting with A59, the query would be: -id:A59*, that is: /solr/select/?q=-id:A59*

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

share|improve this answer

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

share|improve this answer

Exclamation works for NOT as well, so:

/solr/select/?q=!id:A59*

should work in the case above.

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.