nizhikov commented on code in PR #11118:
URL: https://github.com/apache/ignite/pull/11118#discussion_r1434313156
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/IgniteSnapshotManager.java:
##########
@@ -421,6 +422,9 @@ public class IgniteSnapshotManager extends
GridCacheSharedManagerAdapter
/** Factory to working with delta as file storage. */
private volatile FileIOFactory ioFactory = new RandomAccessFileIOFactory();
+ /** Factory to create dump. */
+ private volatile FileIOFactory dumpIoFactory = new
WriteOnlyBufferedFileIOFactory();
Review Comment:
If we make `BufferedFileIO` decorator for any underlying `FileIO` we can
push down `dumpIoFactory` to the dump create task and get rid of this changes.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]