Is there a way to make atomic indexing default? Say, even if some clients send non-atomic indexing requests, it should get converted to atomic indexing requests on Solr end, is that possible?
I am asking because we usually run into the following issue: 1. Client A is the major contributor of almost all the fields of a Solr document. This is non-atomic indexing. 2. Client B contributes some additional fields to the same document and does this with atomic indexing. 3. If Client A indexes again, the fields populated by Client B are wiped out. If we make all indexing atomic indexing on Solr end then we won't run into this problem (except in a rare case where Client A deletes the document then indexes it back, this is fine and we can deal with it because it is rare)