Class RocksDBManualCompactionOptions
- java.lang.Object
-
- org.apache.flink.state.rocksdb.sstmerge.RocksDBManualCompactionOptions
-
public class RocksDBManualCompactionOptions extends Object
Configuration options for manual compaction for the RocksDB backend.
-
-
Field Summary
Fields Modifier and Type Field Description static ConfigOption<Integer>
MAX_AUTO_COMPACTIONS
static ConfigOption<MemorySize>
MAX_FILE_SIZE_TO_COMPACT
static ConfigOption<Integer>
MAX_FILES_TO_COMPACT
static ConfigOption<MemorySize>
MAX_OUTPUT_FILE_SIZE
static ConfigOption<Integer>
MAX_PARALLEL_COMPACTIONS
static ConfigOption<Integer>
MIN_FILES_TO_COMPACT
static ConfigOption<Duration>
MIN_INTERVAL
-
Constructor Summary
Constructors Constructor Description RocksDBManualCompactionOptions()
-
-
-
Field Detail
-
MIN_INTERVAL
public static final ConfigOption<Duration> MIN_INTERVAL
-
MAX_PARALLEL_COMPACTIONS
public static final ConfigOption<Integer> MAX_PARALLEL_COMPACTIONS
-
MAX_FILE_SIZE_TO_COMPACT
public static final ConfigOption<MemorySize> MAX_FILE_SIZE_TO_COMPACT
-
MIN_FILES_TO_COMPACT
public static final ConfigOption<Integer> MIN_FILES_TO_COMPACT
-
MAX_FILES_TO_COMPACT
public static final ConfigOption<Integer> MAX_FILES_TO_COMPACT
-
MAX_OUTPUT_FILE_SIZE
public static final ConfigOption<MemorySize> MAX_OUTPUT_FILE_SIZE
-
MAX_AUTO_COMPACTIONS
public static final ConfigOption<Integer> MAX_AUTO_COMPACTIONS
-
-