Hello, We have configured solr for delta processing through DIH and we kick off the index request from within a batch process. However, we somehow need to know whether our indexing request succeeded or not because we want to be able to rollback a db transaction if that step fails.
By looking at the SolrServer API we weren't able to find a method that could help us with that, so the only solution we see is by constantly polling the server and parsing the response for the "idle" or "Rolledback" words. What we noticed though is that the response also contains a message saying "This response format is experimental. It is likely to change in the future." Does this mean that we can't rely on this response to build our module? Is there a better way? Thank you, Savvas