tkalkirill commented on code in PR #812:
URL: https://github.com/apache/ignite-3/pull/812#discussion_r879363456
##########
modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/configuration/schema/PageMemoryStorageEngineConfigurationSchema.java:
##########
@@ -35,6 +40,14 @@ public class PageMemoryStorageEngineConfigurationSchema {
/** Name of the default data region. */
public static final String DEFAULT_DATA_REGION_NAME = "default";
+ /** Page size in bytes. */
+ @Immutable
+ @Min(1024)
+ @Max(16 * 1024)
+ @PowerOfTwo
+ @Value(hasDefault = true)
+ public int pageSize = 16 * 1024;
Review Comment:
Discussed personally, this issue is minor.
--
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]