sashapolo commented on code in PR #3352:
URL: https://github.com/apache/ignite-3/pull/3352#discussion_r1516084898
##########
modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/VolatilePageMemoryStorageEngine.java:
##########
@@ -51,6 +54,13 @@ public class VolatilePageMemoryStorageEngine implements
StorageEngine {
/** Engine name. */
public static final String ENGINE_NAME = "aimem";
+ /**
+ * Maximum "work units" that are allowed to be used during {@link
BplusTree} destruction.
+ *
+ * @see BplusTree#startGradualDestruction
+ */
+ public static final int MAX_DESTRUCTION_WORK_UNITS = 1_000_000;
Review Comment:
Fixed
--
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]