There is a bis issue in solr parallel update and total indexing
Total Import syntax (working)
dataimport?command=full-import&commit=true&optimize=true
Update syntax(working)
solr/update?softCommit=true' -H 'Content-type:application/json' -d '[{"id":"1870719","column":{"set":11}}]'
Issue: If both are run in parallel, then commit in b/w take place.
Example: i have 10k in total indexes.... i fire an solr query to update 1000 records and in between i fire a total import(full indexer).... what's happening is that in between commit is taken place... i.e untill total indexer runs i got limited records(1000).
How to solve this ?