sashapolo commented on code in PR #5808: URL: https://github.com/apache/ignite-3/pull/5808#discussion_r2097614521
########## modules/rocksdb-common/src/main/java/org/apache/ignite/internal/rocksdb/flush/RocksDbFlusher.java: ########## @@ -230,7 +235,13 @@ public void run() { db.flush(flushOptions, columnFamilyHandles); } } catch (RocksDBException e) { - failureProcessor.process(new FailureContext(e, "Error occurred during the explicit flush")); + if (e.getStatus().getCode() == Code.TryAgain) { + LOG.warn("Unable to perform explicit flush, will try again.", e); Review Comment: No, this is quite a serious issue -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org