Solr does not have transactions. A batch is submitted, then processed. The command to process the batch is named “commit”, but it isn’t very much like a database commit.
Batch submissions are not isolated between clients. If three batches are being submitted at the same time, a commit command from one client will cause all pending documents to be processed, not just the documents from that client. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Aug 9, 2016, at 6:55 AM, Pablo Anzorena <anzorena.f...@gmail.com> wrote: > > That's it. > > Thanks.