Re: Async batch indexing to Solr

2022-04-21 Thread Walter Underwood
Solr doesn’t work like that. It doesn’t have transactions and you can’t get notification of when new data is searchable. Documents are indexed either when there is an explicit commit or an autocommit. “Commit” is really not the right word. It is a batch submit. All indexing is asynchronous. Su

Async batch indexing to Solr

2022-04-21 Thread Almog Tavor
Hi, I'd like to perform asynchronous bulk indexing operations to Solr with Java. I've read in the documentation that the Http2SolrClient is asyn