When a document is sent to solr, and such a document already exists in the index (by its identifier), the new one replaces the old one.
But I do not want to automatically replace documents. Just ignore it and move on to the next one. How to configure solr.
Of course, I can request solr to check if it already has a document, but this is bad for me, because I am doing massive updates, and this will complicate the process and increase the number of requests.
So, are there any ways to configure solr to ignore duplicates?
source share