Enum CheckpointWriteOrder
Defines checkpoint pages order on disk.
Namespace: Apache.Ignite.Core.Configuration
Assembly: Apache.Ignite.Core.dll
Syntax
public enum CheckpointWriteOrder : int
Fields
Name | Description |
---|---|
Random | Pages are written in order provided by checkpoint pages collection iterator (which is basically a hashtable). |
Sequential | All checkpoint pages are collected into single list and sorted by page index. Provides almost sequential disk writes, which can be much faster on some SSD models. |