public class DBOptions extends RocksObject implements DBOptionsInterface<DBOptions>, MutableDBOptionsInterface<DBOptions>
RocksDB (i.e., RocksDB.open()).
If AbstractNativeReference.dispose() function is not called, then it will be GC'd
automatically and native resources will be released as part of the process.nativeHandle_owningHandle_| Constructor and Description |
|---|
DBOptions()
Construct DBOptions.
|
DBOptions(DBOptions other)
Copy constructor for DBOptions.
|
DBOptions(Options options)
Constructor from Options
|
| Modifier and Type | Method and Description |
|---|---|
AccessHint |
accessHintOnCompactionStart()
Specify the file access pattern once a compaction is started.
|
boolean |
adviseRandomOnOpen()
If set true, will hint the underlying file system that the file
access pattern is random, when a sst file is opened.
|
boolean |
allow2pc()
if set to false then recovery will fail when a prepared
transaction is encountered in the WAL
Default: false
|
boolean |
allowConcurrentMemtableWrite()
If true, allow multi-writers to update mem tables in parallel.
|
boolean |
allowFAllocate()
Whether fallocate calls are allowed
|
boolean |
allowIngestBehind()
Returns true if ingest behind is allowed.
|
boolean |
allowMmapReads()
Allow the OS to mmap file for reading sst tables.
|
boolean |
allowMmapWrites()
Allow the OS to mmap file for writing.
|
boolean |
atomicFlush()
Determine if atomic flush of multiple column families is enabled.
|
boolean |
avoidFlushDuringRecovery()
By default RocksDB replay WAL logs and flush them on DB open, which may
create very small SST files.
|
boolean |
avoidFlushDuringShutdown()
By default RocksDB will flush all memtables on DB close if there are
unpersisted data (i.e. with WAL disabled) The flush can be skip to speedup
DB close.
|
boolean |
avoidUnnecessaryBlockingIO()
If true, working thread may avoid doing unnecessary and long-latency
operation (such as deleting obsolete files directly or deleting memtable)
and will instead schedule a background job to do it.
|
int |
baseBackgroundCompactions()
NOT SUPPORTED ANYMORE: RocksDB automatically decides this based on the
value of max_background_jobs.
|
boolean |
bestEffortsRecovery()
By default, RocksDB recovery fails if any table file referenced in
MANIFEST are missing after scanning the MANIFEST.
|
long |
bgerrorResumeRetryInterval()
If max_bgerror_resume_count is ≥ 2, db resume is called multiple times.
|
long |
bytesPerSync()
Allows OS to incrementally sync files to disk while they are being
written, asynchronously, in the background.
|
long |
compactionReadaheadSize()
If non-zero, we perform bigger reads when doing compaction.
|
boolean |
createIfMissing()
Return true if the create_if_missing flag is set to true.
|
boolean |
createMissingColumnFamilies()
Return true if the create_missing_column_families flag is set
to true.
|
String |
dbLogDir()
Returns the directory of info log.
|
List<DbPath> |
dbPaths()
A list of paths where SST files can be put into, with its target size.
|
long |
dbWriteBufferSize()
Amount of data to build up in memtables across all column
families before writing to disk.
|
long |
delayedWriteRate()
The limited write rate to DB if
ColumnFamilyOptions.softPendingCompactionBytesLimit() or
ColumnFamilyOptions.level0SlowdownWritesTrigger() is triggered,
or we are writing to the last mem table allowed and we allow more than 3
mem tables. |
long |
deleteObsoleteFilesPeriodMicros()
The periodicity when obsolete files get deleted.
|
protected void |
disposeInternal(long handle) |
boolean |
dumpMallocStats()
If true, then print malloc stats together with rocksdb.stats
when printing to LOG.
|
boolean |
enablePipelinedWrite()
Returns true if pipelined writes are enabled.
|
boolean |
enableThreadTracking()
If true, then the status of the threads involved in this DB will
be tracked and available via GetThreadList() API.
|
boolean |
enableWriteThreadAdaptiveYield()
If true, threads synchronizing with the write batch group leader will
wait for up to
DBOptionsInterface.writeThreadMaxYieldUsec() before blocking on a
mutex. |
boolean |
errorIfExists()
If true, an error will be thrown during RocksDB.open() if the
database already exists.
|
boolean |
failIfOptionsFileError()
If true, then DB::Open / CreateColumnFamily / DropColumnFamily
/ SetOptions will fail if options file is not detected or properly
persisted.
|
static DBOptions |
getDBOptionsFromProps(ConfigOptions cfgOpts,
Properties properties)
Method to get a options instance by using pre-configured
property values.
|
static DBOptions |
getDBOptionsFromProps(Properties properties)
Method to get a options instance by using pre-configured
property values.
|
Env |
getEnv()
Returns the set RocksEnv instance.
|
InfoLogLevel |
infoLogLevel()
Returns currently set log level.
|
boolean |
isFdCloseOnExec()
Disable child process inherit open files.
|
long |
keepLogFileNum()
Returns the maximum number of info log files to be kept.
|
List<AbstractEventListener> |
listeners()
Sets the
EventListeners whose callback functions
will be called when specific RocksDB event happens. |
long |
logFileTimeToRoll()
Returns the time interval for the info log file to roll (in seconds).
|
long |
logReadaheadSize()
The number of bytes to prefetch when reading the log.
|
long |
manifestPreallocationSize()
Number of bytes to preallocate (via fallocate) the manifest
files.
|
boolean |
manualWalFlush()
Returns true if automatic WAL flushing is disabled.
|
int |
maxBackgroundCompactions()
Deprecated.
|
int |
maxBackgroundFlushes()
Deprecated.
|
int |
maxBackgroundJobs()
Returns the maximum number of concurrent background jobs (both flushes
and compactions combined).
|
int |
maxBgerrorResumeCount()
It defines how many times db resume is called by a separate thread when
background retryable IO Error happens.
|
int |
maxFileOpeningThreads()
If
MutableDBOptionsInterface.maxOpenFiles() is -1, DB will open all
files on DB::Open(). |
long |
maxLogFileSize()
Returns the maximum size of a info log file.
|
long |
maxManifestFileSize()
Manifest file is rolled over on reaching this limit.
|
int |
maxOpenFiles()
Number of open files that can be used by the DB.
|
int |
maxSubcompactions()
This value represents the maximum number of threads that will
concurrently perform a compaction job by breaking it into multiple,
smaller ones that are run simultaneously.
|
long |
maxTotalWalSize()
Returns the max total wal size.
|
long |
maxWriteBatchGroupSizeBytes()
The maximum limit of number of bytes that are written in a single batch
of WAL or memtable write.
|
boolean |
newTableReaderForCompactionInputs()
If true, always create a new file descriptor and new table reader
for compaction inputs.
|
DBOptions |
optimizeForSmallDb()
Use this if your DB is very small (like under 1GB) and you don't want to
spend lots of memory for memtables.
|
boolean |
paranoidChecks()
If true, the implementation will do aggressive checking of the
data it is processing and will stop early if it detects any
errors.
|
boolean |
persistStatsToDisk()
If true, automatically persist stats to a hidden column family (column
family name: ___rocksdb_stats_history___) every
stats_persist_period_sec seconds; otherwise, write to an in-memory
struct.
|
boolean |
preserveDeletes()
Returns true if deletes are preserved.
|
long |
randomAccessMaxBufferSize()
This is a maximum buffer size that is used by WinMmapReadableFile in
unbuffered disk I/O mode.
|
long |
recycleLogFileNum()
Recycle log files.
|
Cache |
rowCache()
A global cache for table-level rows.
|
DBOptions |
setAccessHintOnCompactionStart(AccessHint accessHint)
Specify the file access pattern once a compaction is started.
|
DBOptions |
setAdviseRandomOnOpen(boolean adviseRandomOnOpen)
If set true, will hint the underlying file system that the file
access pattern is random, when a sst file is opened.
|
DBOptions |
setAllow2pc(boolean allow2pc)
if set to false then recovery will fail when a prepared
transaction is encountered in the WAL
Default: false
|
DBOptions |
setAllowConcurrentMemtableWrite(boolean allowConcurrentMemtableWrite)
If true, allow multi-writers to update mem tables in parallel.
|
DBOptions |
setAllowFAllocate(boolean allowFAllocate)
Whether fallocate calls are allowed
|
DBOptions |
setAllowIngestBehind(boolean allowIngestBehind)
Set this option to true during creation of database if you want
to be able to ingest behind (call IngestExternalFile() skipping keys
that already exist, rather than overwriting matching keys).
|
DBOptions |
setAllowMmapReads(boolean allowMmapReads)
Allow the OS to mmap file for reading sst tables.
|
DBOptions |
setAllowMmapWrites(boolean allowMmapWrites)
Allow the OS to mmap file for writing.
|
DBOptions |
setAtomicFlush(boolean atomicFlush)
If true, RocksDB supports flushing multiple column families and committing
their results atomically to MANIFEST.
|
DBOptions |
setAvoidFlushDuringRecovery(boolean avoidFlushDuringRecovery)
By default RocksDB replay WAL logs and flush them on DB open, which may
create very small SST files.
|
DBOptions |
setAvoidFlushDuringShutdown(boolean avoidFlushDuringShutdown)
By default RocksDB will flush all memtables on DB close if there are
unpersisted data (i.e. with WAL disabled) The flush can be skip to speedup
DB close.
|
DBOptions |
setAvoidUnnecessaryBlockingIO(boolean avoidUnnecessaryBlockingIO)
If true, working thread may avoid doing unnecessary and long-latency
operation (such as deleting obsolete files directly or deleting memtable)
and will instead schedule a background job to do it.
|
void |
setBaseBackgroundCompactions(int baseBackgroundCompactions)
Deprecated.
|
DBOptions |
setBestEffortsRecovery(boolean bestEffortsRecovery)
By default, RocksDB recovery fails if any table file referenced in
MANIFEST are missing after scanning the MANIFEST.
|
DBOptions |
setBgerrorResumeRetryInterval(long bgerrorResumeRetryInterval)
If max_bgerror_resume_count is ≥ 2, db resume is called multiple times.
|
DBOptions |
setBytesPerSync(long bytesPerSync)
Allows OS to incrementally sync files to disk while they are being
written, asynchronously, in the background.
|
DBOptions |
setCompactionReadaheadSize(long compactionReadaheadSize)
If non-zero, we perform bigger reads when doing compaction.
|
DBOptions |
setCreateIfMissing(boolean flag)
If this value is set to true, then the database will be created
if it is missing during
RocksDB.open(). |
DBOptions |
setCreateMissingColumnFamilies(boolean flag)
If true, missing column families will be automatically created
Default: false
|
DBOptions |
setDbLogDir(String dbLogDir)
This specifies the info LOG dir.
|
DBOptions |
setDbPaths(Collection<DbPath> dbPaths)
A list of paths where SST files can be put into, with its target size.
|
DBOptions |
setDbWriteBufferSize(long dbWriteBufferSize)
Amount of data to build up in memtables across all column
families before writing to disk.
|
DBOptions |
setDelayedWriteRate(long delayedWriteRate)
The limited write rate to DB if
ColumnFamilyOptions.softPendingCompactionBytesLimit() or
ColumnFamilyOptions.level0SlowdownWritesTrigger() is triggered,
or we are writing to the last mem table allowed and we allow more than 3
mem tables. |
DBOptions |
setDeleteObsoleteFilesPeriodMicros(long micros)
The periodicity when obsolete files get deleted.
|
DBOptions |
setDumpMallocStats(boolean dumpMallocStats)
If true, then print malloc stats together with rocksdb.stats
when printing to LOG.
|
DBOptions |
setEnablePipelinedWrite(boolean enablePipelinedWrite)
By default, a single write thread queue is maintained.
|
DBOptions |
setEnableThreadTracking(boolean enableThreadTracking)
If true, then the status of the threads involved in this DB will
be tracked and available via GetThreadList() API.
|
DBOptions |
setEnableWriteThreadAdaptiveYield(boolean enableWriteThreadAdaptiveYield)
If true, threads synchronizing with the write batch group leader will
wait for up to
DBOptionsInterface.writeThreadMaxYieldUsec() before blocking on a
mutex. |
DBOptions |
setEnv(Env env)
Use the specified object to interact with the environment,
e.g. to read/write files, schedule background work, etc.
|
DBOptions |
setErrorIfExists(boolean errorIfExists)
If true, an error will be thrown during RocksDB.open() if the
database already exists.
|
DBOptions |
setFailIfOptionsFileError(boolean failIfOptionsFileError)
If true, then DB::Open / CreateColumnFamily / DropColumnFamily
/ SetOptions will fail if options file is not detected or properly
persisted.
|
DBOptions |
setIncreaseParallelism(int totalThreads)
By default, RocksDB uses only one background thread for flush and
compaction.
|
DBOptions |
setInfoLogLevel(InfoLogLevel infoLogLevel)
Sets the RocksDB log level.
|
DBOptions |
setIsFdCloseOnExec(boolean isFdCloseOnExec)
Disable child process inherit open files.
|
DBOptions |
setKeepLogFileNum(long keepLogFileNum)
Specifies the maximum number of info log files to be kept.
|
DBOptions |
setListeners(List<AbstractEventListener> listeners)
Sets the
EventListeners whose callback functions
will be called when specific RocksDB event happens. |
DBOptions |
setLogFileTimeToRoll(long logFileTimeToRoll)
Specifies the time interval for the info log file to roll (in seconds).
|
DBOptions |
setLogger(Logger logger)
Any internal progress/error information generated by
the db will be written to the Logger if it is non-nullptr,
or to a file stored in the same directory as the DB
contents if info_log is nullptr.
|
DBOptions |
setLogReadaheadSize(long logReadaheadSize)
The number of bytes to prefetch when reading the log.
|
DBOptions |
setManifestPreallocationSize(long size)
Number of bytes to preallocate (via fallocate) the manifest
files.
|
DBOptions |
setManualWalFlush(boolean manualWalFlush)
If true WAL is not flushed automatically after each write.
|
DBOptions |
setMaxBackgroundCompactions(int maxBackgroundCompactions)
Deprecated.
|
DBOptions |
setMaxBackgroundFlushes(int maxBackgroundFlushes)
Deprecated.
|
DBOptions |
setMaxBackgroundJobs(int maxBackgroundJobs)
Specifies the maximum number of concurrent background jobs (both flushes
and compactions combined).
|
DBOptions |
setMaxBgErrorResumeCount(int maxBgerrorResumeCount)
It defines how many times db resume is called by a separate thread when
background retryable IO Error happens.
|
DBOptions |
setMaxFileOpeningThreads(int maxFileOpeningThreads)
If
MutableDBOptionsInterface.maxOpenFiles() is -1, DB will open
all files on DB::Open(). |
DBOptions |
setMaxLogFileSize(long maxLogFileSize)
Specifies the maximum size of a info log file.
|
DBOptions |
setMaxManifestFileSize(long maxManifestFileSize)
Manifest file is rolled over on reaching this limit.
|
DBOptions |
setMaxOpenFiles(int maxOpenFiles)
Number of open files that can be used by the DB.
|
DBOptions |
setMaxSubcompactions(int maxSubcompactions)
This value represents the maximum number of threads that will
concurrently perform a compaction job by breaking it into multiple,
smaller ones that are run simultaneously.
|
DBOptions |
setMaxTotalWalSize(long maxTotalWalSize)
Once write-ahead logs exceed this size, we will start forcing the
flush of column families whose memtables are backed by the oldest live
WAL file (i.e. the ones that are causing all the space amplification).
|
DBOptions |
setMaxWriteBatchGroupSizeBytes(long maxWriteBatchGroupSizeBytes)
The maximum limit of number of bytes that are written in a single batch
of WAL or memtable write.
|
DBOptions |
setNewTableReaderForCompactionInputs(boolean newTableReaderForCompactionInputs)
If true, always create a new file descriptor and new table reader
for compaction inputs.
|
DBOptions |
setParanoidChecks(boolean paranoidChecks)
If true, the implementation will do aggressive checking of the
data it is processing and will stop early if it detects any
errors.
|
DBOptions |
setPersistStatsToDisk(boolean persistStatsToDisk)
If true, automatically persist stats to a hidden column family (column
family name: ___rocksdb_stats_history___) every
stats_persist_period_sec seconds; otherwise, write to an in-memory
struct.
|
DBOptions |
setPreserveDeletes(boolean preserveDeletes)
Needed to support differential snapshots.
|
DBOptions |
setRandomAccessMaxBufferSize(long randomAccessMaxBufferSize)
This is a maximum buffer size that is used by WinMmapReadableFile in
unbuffered disk I/O mode.
|
DBOptions |
setRateLimiter(RateLimiter rateLimiter)
Use to control write rate of flush and compaction.
|
DBOptions |
setRecycleLogFileNum(long recycleLogFileNum)
Recycle log files.
|
DBOptions |
setRowCache(Cache rowCache)
A global cache for table-level rows.
|
DBOptions |
setSkipCheckingSstFileSizesOnDbOpen(boolean skipCheckingSstFileSizesOnDbOpen)
If true, then
RocksDB.open(String) will not fetch and check sizes of all sst files. |
DBOptions |
setSkipStatsUpdateOnDbOpen(boolean skipStatsUpdateOnDbOpen)
If true, then DB::Open() will not update the statistics used to optimize
compaction decision by loading table properties from many files.
|
DBOptions |
setSstFileManager(SstFileManager sstFileManager)
Use to track SST files and control their file deletion rate.
|
DBOptions |
setStatistics(Statistics statistics)
Sets the statistics object which collects metrics about database operations.
|
DBOptions |
setStatsDumpPeriodSec(int statsDumpPeriodSec)
if not zero, dump rocksdb.stats to LOG every stats_dump_period_sec
Default: 600 (10 minutes)
|
DBOptions |
setStatsHistoryBufferSize(long statsHistoryBufferSize)
If not zero, periodically take stats snapshots and store in memory, the
memory size for stats snapshots is capped at
statsHistoryBufferSize
Default: 1MB |
DBOptions |
setStatsPersistPeriodSec(int statsPersistPeriodSec)
If not zero, dump rocksdb.stats to RocksDB every
statsPersistPeriodSec
Default: 600 |
DBOptions |
setStrictBytesPerSync(boolean strictBytesPerSync)
When true, guarantees WAL files have at most
MutableDBOptionsInterface.walBytesPerSync()
bytes submitted for writeback at any given time, and SST files have at most
MutableDBOptionsInterface.bytesPerSync() bytes pending writeback at any given time. |
DBOptions |
setTableCacheNumshardbits(int tableCacheNumshardbits)
Number of shards used for table cache.
|
DBOptions |
setTwoWriteQueues(boolean twoWriteQueues)
If enabled it uses two queues for writes, one for the ones with
disable_memtable and one for the ones that also write to memtable.
|
DBOptions |
setUnorderedWrite(boolean unorderedWrite)
Setting
DBOptionsInterface.unorderedWrite() to true trades higher write throughput with
relaxing the immutability guarantee of snapshots. |
DBOptions |
setUseAdaptiveMutex(boolean useAdaptiveMutex)
Use adaptive mutex, which spins in the user space before resorting
to kernel.
|
DBOptions |
setUseDirectIoForFlushAndCompaction(boolean useDirectIoForFlushAndCompaction)
Enable the OS to use direct reads and writes in flush and
compaction
Default: false
|
DBOptions |
setUseDirectReads(boolean useDirectReads)
Enable the OS to use direct I/O for reading sst tables.
|
DBOptions |
setUseFsync(boolean useFsync)
If true, then every store to stable storage will issue a fsync.
|
DBOptions |
setWalBytesPerSync(long walBytesPerSync)
Same as
MutableDBOptionsInterface.setBytesPerSync(long) , but applies to WAL files
Default: 0, turned off |
DBOptions |
setWalDir(String walDir)
This specifies the absolute dir path for write-ahead logs (WAL).
|
DBOptions |
setWalFilter(AbstractWalFilter walFilter)
A filter object supplied to be invoked while processing write-ahead-logs
(WALs) during recovery.
|
DBOptions |
setWalRecoveryMode(WALRecoveryMode walRecoveryMode)
Recovery mode to control the consistency while replaying WAL
Default:
WALRecoveryMode.PointInTimeRecovery |
DBOptions |
setWalSizeLimitMB(long sizeLimitMB)
WalTtlSeconds() and walSizeLimitMB() affect how archived logs
will be deleted.
|
DBOptions |
setWalTtlSeconds(long walTtlSeconds)
DBOptionsInterface.walTtlSeconds() and DBOptionsInterface.walSizeLimitMB() affect how archived logs
will be deleted. |
DBOptions |
setWritableFileMaxBufferSize(long writableFileMaxBufferSize)
This is the maximum buffer size that is used by WritableFileWriter.
|
DBOptions |
setWriteBufferManager(WriteBufferManager writeBufferManager)
Use passed
WriteBufferManager to control memory usage across
multiple column families and/or DB instances. |
DBOptions |
setWriteDbidToManifest(boolean writeDbidToManifest)
Historically DB ID has always been stored in Identity File in DB folder.
|
DBOptions |
setWriteThreadMaxYieldUsec(long writeThreadMaxYieldUsec)
The maximum number of microseconds that a write operation will use
a yielding spin loop to coordinate with other write threads before
blocking on a mutex.
|
DBOptions |
setWriteThreadSlowYieldUsec(long writeThreadSlowYieldUsec)
The latency in microseconds after which a std::this_thread::yield
call (sched_yield on Linux) is considered to be a signal that
other processes or threads would like to use the current core.
|
boolean |
skipCheckingSstFileSizesOnDbOpen()
If true, then
RocksDB.open(String) will not fetch and check sizes of all sst files. |
boolean |
skipStatsUpdateOnDbOpen()
If true, then DB::Open() will not update the statistics used to optimize
compaction decision by loading table properties from many files.
|
Statistics |
statistics()
Returns statistics object.
|
int |
statsDumpPeriodSec()
If not zero, dump rocksdb.stats to LOG every stats_dump_period_sec
Default: 600 (10 minutes)
|
long |
statsHistoryBufferSize()
If not zero, periodically take stats snapshots and store in memory, the
memory size for stats snapshots is capped at
statsHistoryBufferSize |
int |
statsPersistPeriodSec()
If not zero, dump rocksdb.stats to RocksDB every
statsPersistPeriodSec |
boolean |
strictBytesPerSync()
Return the strict byte limit per sync.
|
int |
tableCacheNumshardbits()
Number of shards used for table cache.
|
boolean |
twoWriteQueues()
Returns true if two write queues are enabled.
|
boolean |
unorderedWrite()
Returns true if unordered write are enabled.
|
boolean |
useAdaptiveMutex()
Use adaptive mutex, which spins in the user space before resorting
to kernel.
|
boolean |
useDirectIoForFlushAndCompaction()
Enable the OS to use direct reads and writes in flush and
compaction
|
boolean |
useDirectReads()
Enable the OS to use direct I/O for reading sst tables.
|
boolean |
useFsync()
If true, then every store to stable storage will issue a fsync.
|
long |
walBytesPerSync()
Same as
MutableDBOptionsInterface.bytesPerSync() , but applies to WAL files
Default: 0, turned off |
String |
walDir()
Returns the path to the write-ahead-logs (WAL) directory.
|
WalFilter |
walFilter()
Get's the filter for processing WALs during recovery.
|
WALRecoveryMode |
walRecoveryMode()
Recovery mode to control the consistency while replaying WAL
Default:
WALRecoveryMode.PointInTimeRecovery |
long |
walSizeLimitMB()
DBOptionsInterface.walTtlSeconds() and #walSizeLimitMB() affect how archived logs
will be deleted. |
long |
walTtlSeconds()
WalTtlSeconds() and walSizeLimitMB() affect how archived logs
will be deleted.
|
long |
writableFileMaxBufferSize()
This is the maximum buffer size that is used by WritableFileWriter.
|
WriteBufferManager |
writeBufferManager()
Reference to
WriteBufferManager used by it. |
boolean |
writeDbidToManifest()
Historically DB ID has always been stored in Identity File in DB folder.
|
long |
writeThreadMaxYieldUsec()
The maximum number of microseconds that a write operation will use
a yielding spin loop to coordinate with other write threads before
blocking on a mutex.
|
long |
writeThreadSlowYieldUsec()
The latency in microseconds after which a std::this_thread::yield
call (sched_yield on Linux) is considered to be a signal that
other processes or threads would like to use the current core.
|
disposeInternal, getNativeHandleclose, disOwnNativeHandle, isOwningHandledispose, finalizepublic DBOptions()
rocksdb::DBOptions in the c++ side.public DBOptions(DBOptions other)
other - The DBOptions to copy.public DBOptions(Options options)
options - The options.public static DBOptions getDBOptionsFromProps(ConfigOptions cfgOpts, Properties properties)
Method to get a options instance by using pre-configured property values. If one or many values are undefined in the context of RocksDB the method will return a null value.
Note: Property keys can be derived from
getter methods within the options class. Example: the method
allowMmapReads() has a property key:
allow_mmap_reads.
cfgOpts - The ConfigOptions to control how the string is processed.properties - Properties instance.instance
or null.IllegalArgumentException - if null or empty
Properties instance is passed to the method call.public static DBOptions getDBOptionsFromProps(Properties properties)
Method to get a options instance by using pre-configured property values. If one or many values are undefined in the context of RocksDB the method will return a null value.
Note: Property keys can be derived from
getter methods within the options class. Example: the method
allowMmapReads() has a property key:
allow_mmap_reads.
properties - Properties instance.instance
or null.IllegalArgumentException - if null or empty
Properties instance is passed to the method call.public DBOptions optimizeForSmallDb()
DBOptionsInterfaceoptimizeForSmallDb in interface DBOptionsInterface<DBOptions>public DBOptions setIncreaseParallelism(int totalThreads)
DBOptionsInterfaceBy default, RocksDB uses only one background thread for flush and compaction. Calling this function will set it up such that total of `total_threads` is used.
You almost definitely want to call this function if your system is bottlenecked by RocksDB.
setIncreaseParallelism in interface DBOptionsInterface<DBOptions>totalThreads - The total number of threads to be used by RocksDB.
A good value is the number of cores.public DBOptions setCreateIfMissing(boolean flag)
DBOptionsInterfaceRocksDB.open().
Default: falsesetCreateIfMissing in interface DBOptionsInterface<DBOptions>flag - a flag indicating whether to create a database the
specified database in RocksDB.open(org.rocksdb.Options, String) operation
is missing.RocksDB.open(org.rocksdb.Options, String)public boolean createIfMissing()
DBOptionsInterfacecreateIfMissing in interface DBOptionsInterface<DBOptions>DBOptionsInterface.setCreateIfMissing(boolean)public DBOptions setCreateMissingColumnFamilies(boolean flag)
DBOptionsInterfaceIf true, missing column families will be automatically created
Default: false
setCreateMissingColumnFamilies in interface DBOptionsInterface<DBOptions>flag - a flag indicating if missing column families shall be
created automatically.public boolean createMissingColumnFamilies()
DBOptionsInterfacecreateMissingColumnFamilies in interface DBOptionsInterface<DBOptions>DBOptionsInterface.setCreateMissingColumnFamilies(boolean)public DBOptions setErrorIfExists(boolean errorIfExists)
DBOptionsInterfacesetErrorIfExists in interface DBOptionsInterface<DBOptions>errorIfExists - if true, an exception will be thrown
during RocksDB.open() if the database already exists.RocksDB.open(org.rocksdb.Options, String)public boolean errorIfExists()
DBOptionsInterfaceerrorIfExists in interface DBOptionsInterface<DBOptions>public DBOptions setParanoidChecks(boolean paranoidChecks)
DBOptionsInterfacesetParanoidChecks in interface DBOptionsInterface<DBOptions>paranoidChecks - a flag to indicate whether paranoid-check
is on.public boolean paranoidChecks()
DBOptionsInterfaceparanoidChecks in interface DBOptionsInterface<DBOptions>public DBOptions setEnv(Env env)
DBOptionsInterfaceEnv.getDefault()setEnv in interface DBOptionsInterface<DBOptions>env - Env instance.public Env getEnv()
DBOptionsInterfacegetEnv in interface DBOptionsInterface<DBOptions>RocksEnv instance set in the options.public DBOptions setRateLimiter(RateLimiter rateLimiter)
DBOptionsInterfacesetRateLimiter in interface DBOptionsInterface<DBOptions>rateLimiter - RateLimiter instance.public DBOptions setSstFileManager(SstFileManager sstFileManager)
DBOptionsInterfacesetSstFileManager in interface DBOptionsInterface<DBOptions>sstFileManager - The SST File Manager for the db.public DBOptions setLogger(Logger logger)
DBOptionsInterfaceAny internal progress/error information generated by the db will be written to the Logger if it is non-nullptr, or to a file stored in the same directory as the DB contents if info_log is nullptr.
Default: nullptr
setLogger in interface DBOptionsInterface<DBOptions>logger - Logger instance.public DBOptions setInfoLogLevel(InfoLogLevel infoLogLevel)
DBOptionsInterfaceSets the RocksDB log level. Default level is INFO
setInfoLogLevel in interface DBOptionsInterface<DBOptions>infoLogLevel - log level to set.public InfoLogLevel infoLogLevel()
DBOptionsInterfaceReturns currently set log level.
infoLogLevel in interface DBOptionsInterface<DBOptions>InfoLogLevel instance.public DBOptions setMaxOpenFiles(int maxOpenFiles)
MutableDBOptionsInterfacetarget_file_size_base and target_file_size_multiplier
for level-based compaction. For universal-style compaction, you can usually
set it to -1.
Default: -1setMaxOpenFiles in interface MutableDBOptionsInterface<DBOptions>maxOpenFiles - the maximum number of open files.public int maxOpenFiles()
MutableDBOptionsInterfacetarget_file_size_base and target_file_size_multiplier
for level-based compaction. For universal-style compaction, you can usually
set it to -1.
Default: -1maxOpenFiles in interface MutableDBOptionsInterface<DBOptions>public DBOptions setMaxFileOpeningThreads(int maxFileOpeningThreads)
DBOptionsInterfaceMutableDBOptionsInterface.maxOpenFiles() is -1, DB will open
all files on DB::Open(). You can use this option to increase the number
of threads used to open the files.
Default: 16setMaxFileOpeningThreads in interface DBOptionsInterface<DBOptions>maxFileOpeningThreads - the maximum number of threads to use to
open filespublic int maxFileOpeningThreads()
DBOptionsInterfaceMutableDBOptionsInterface.maxOpenFiles() is -1, DB will open all
files on DB::Open(). You can use this option to increase the number of
threads used to open the files.
Default: 16maxFileOpeningThreads in interface DBOptionsInterface<DBOptions>public DBOptions setMaxTotalWalSize(long maxTotalWalSize)
MutableDBOptionsInterfaceOnce write-ahead logs exceed this size, we will start forcing the flush of column families whose memtables are backed by the oldest live WAL file (i.e. the ones that are causing all the space amplification).
If set to 0 (default), we will dynamically choose the WAL size limit to be [sum of all write_buffer_size * max_write_buffer_number] * 2
This option takes effect only when there are more than one column family as otherwise the wal size is dictated by the write_buffer_size.
Default: 0
setMaxTotalWalSize in interface MutableDBOptionsInterface<DBOptions>maxTotalWalSize - max total wal size.public long maxTotalWalSize()
MutableDBOptionsInterfaceReturns the max total wal size. Once write-ahead logs exceed this size, we will start forcing the flush of column families whose memtables are backed by the oldest live WAL file (i.e. the ones that are causing all the space amplification).
If set to 0 (default), we will dynamically choose the WAL size limit to be [sum of all write_buffer_size * max_write_buffer_number] * 2
maxTotalWalSize in interface MutableDBOptionsInterface<DBOptions>public DBOptions setStatistics(Statistics statistics)
DBOptionsInterfaceSets the statistics object which collects metrics about database operations. Statistics objects should not be shared between DB instances as it does not use any locks to prevent concurrent updates.
setStatistics in interface DBOptionsInterface<DBOptions>statistics - The statistics to setRocksDB.open(org.rocksdb.Options, String)public Statistics statistics()
DBOptionsInterfaceReturns statistics object.
statistics in interface DBOptionsInterface<DBOptions>DBOptionsInterface.setStatistics(Statistics)public DBOptions setUseFsync(boolean useFsync)
DBOptionsInterfaceIf true, then every store to stable storage will issue a fsync.
If false, then every store to stable storage will issue a fdatasync. This parameter should be set to true while storing data to filesystem like ext3 that can lose files after a reboot.
Default: false
setUseFsync in interface DBOptionsInterface<DBOptions>useFsync - a boolean flag to specify whether to use fsyncpublic boolean useFsync()
DBOptionsInterfaceIf true, then every store to stable storage will issue a fsync.
If false, then every store to stable storage will issue a fdatasync. This parameter should be set to true while storing data to filesystem like ext3 that can lose files after a reboot.
useFsync in interface DBOptionsInterface<DBOptions>public DBOptions setDbPaths(Collection<DbPath> dbPaths)
DBOptionsInterfacesetDbPaths in interface DBOptionsInterface<DBOptions>dbPaths - the paths and target sizespublic List<DbPath> dbPaths()
DBOptionsInterfaceCollections.emptyList()dbPaths in interface DBOptionsInterface<DBOptions>public DBOptions setDbLogDir(String dbLogDir)
DBOptionsInterfacesetDbLogDir in interface DBOptionsInterface<DBOptions>dbLogDir - the path to the info log directorypublic String dbLogDir()
DBOptionsInterfacedbLogDir in interface DBOptionsInterface<DBOptions>public DBOptions setWalDir(String walDir)
DBOptionsInterfacesetWalDir in interface DBOptionsInterface<DBOptions>walDir - the path to the write-ahead-log directory.public String walDir()
DBOptionsInterfacewalDir in interface DBOptionsInterface<DBOptions>public DBOptions setDeleteObsoleteFilesPeriodMicros(long micros)
DBOptionsInterfacesetDeleteObsoleteFilesPeriodMicros in interface DBOptionsInterface<DBOptions>setDeleteObsoleteFilesPeriodMicros in interface MutableDBOptionsInterface<DBOptions>micros - the time interval in microspublic long deleteObsoleteFilesPeriodMicros()
DBOptionsInterfacedeleteObsoleteFilesPeriodMicros in interface DBOptionsInterface<DBOptions>deleteObsoleteFilesPeriodMicros in interface MutableDBOptionsInterface<DBOptions>public DBOptions setMaxBackgroundJobs(int maxBackgroundJobs)
MutableDBOptionsInterfacesetMaxBackgroundJobs in interface MutableDBOptionsInterface<DBOptions>maxBackgroundJobs - number of max concurrent background jobspublic int maxBackgroundJobs()
MutableDBOptionsInterfacemaxBackgroundJobs in interface MutableDBOptionsInterface<DBOptions>@Deprecated public void setBaseBackgroundCompactions(int baseBackgroundCompactions)
MutableDBOptionsInterfacesetBaseBackgroundCompactions in interface MutableDBOptionsInterface<DBOptions>baseBackgroundCompactions - Suggested number of background compaction
jobspublic int baseBackgroundCompactions()
MutableDBOptionsInterfacebaseBackgroundCompactions in interface MutableDBOptionsInterface<DBOptions>@Deprecated public DBOptions setMaxBackgroundCompactions(int maxBackgroundCompactions)
MutableDBOptionsInterfacesetMaxBackgroundCompactions in interface MutableDBOptionsInterface<DBOptions>maxBackgroundCompactions - the maximum number of background
compaction jobs.Env.setBackgroundThreads(int),
Env.setBackgroundThreads(int, Priority),
DBOptionsInterface.maxBackgroundFlushes()@Deprecated public int maxBackgroundCompactions()
MutableDBOptionsInterfacemaxBackgroundCompactions in interface MutableDBOptionsInterface<DBOptions>Env.setBackgroundThreads(int),
Env.setBackgroundThreads(int, Priority)public DBOptions setMaxSubcompactions(int maxSubcompactions)
DBOptionsInterfacesetMaxSubcompactions in interface DBOptionsInterface<DBOptions>maxSubcompactions - The maximum number of threads that will
concurrently perform a compaction jobpublic int maxSubcompactions()
DBOptionsInterfacemaxSubcompactions in interface DBOptionsInterface<DBOptions>@Deprecated public DBOptions setMaxBackgroundFlushes(int maxBackgroundFlushes)
DBOptionsInterfacesetMaxBackgroundFlushes in interface DBOptionsInterface<DBOptions>maxBackgroundFlushes - number of max concurrent flush jobsEnv.setBackgroundThreads(int),
Env.setBackgroundThreads(int, Priority),
MutableDBOptionsInterface.maxBackgroundCompactions()@Deprecated public int maxBackgroundFlushes()
DBOptionsInterfacemaxBackgroundFlushes in interface DBOptionsInterface<DBOptions>Env.setBackgroundThreads(int),
Env.setBackgroundThreads(int, Priority)public DBOptions setMaxLogFileSize(long maxLogFileSize)
DBOptionsInterfacesetMaxLogFileSize in interface DBOptionsInterface<DBOptions>maxLogFileSize - the maximum size of a info log file.public long maxLogFileSize()
DBOptionsInterfacemaxLogFileSize in interface DBOptionsInterface<DBOptions>public DBOptions setLogFileTimeToRoll(long logFileTimeToRoll)
DBOptionsInterfacesetLogFileTimeToRoll in interface DBOptionsInterface<DBOptions>logFileTimeToRoll - the time interval in seconds.public long logFileTimeToRoll()
DBOptionsInterfacelogFileTimeToRoll in interface DBOptionsInterface<DBOptions>public DBOptions setKeepLogFileNum(long keepLogFileNum)
DBOptionsInterfacesetKeepLogFileNum in interface DBOptionsInterface<DBOptions>keepLogFileNum - the maximum number of info log files to be kept.public long keepLogFileNum()
DBOptionsInterfacekeepLogFileNum in interface DBOptionsInterface<DBOptions>public DBOptions setRecycleLogFileNum(long recycleLogFileNum)
DBOptionsInterfacesetRecycleLogFileNum in interface DBOptionsInterface<DBOptions>recycleLogFileNum - the number of log files to keep for recyclingpublic long recycleLogFileNum()
DBOptionsInterfacerecycleLogFileNum in interface DBOptionsInterface<DBOptions>public DBOptions setMaxManifestFileSize(long maxManifestFileSize)
DBOptionsInterfacesetMaxManifestFileSize in interface DBOptionsInterface<DBOptions>maxManifestFileSize - the size limit of a manifest file.public long maxManifestFileSize()
DBOptionsInterfacemaxManifestFileSize in interface DBOptionsInterface<DBOptions>public DBOptions setTableCacheNumshardbits(int tableCacheNumshardbits)
DBOptionsInterfacesetTableCacheNumshardbits in interface DBOptionsInterface<DBOptions>tableCacheNumshardbits - the number of chardspublic int tableCacheNumshardbits()
DBOptionsInterfacetableCacheNumshardbits in interface DBOptionsInterface<DBOptions>public DBOptions setWalTtlSeconds(long walTtlSeconds)
DBOptionsInterfaceDBOptionsInterface.walTtlSeconds() and DBOptionsInterface.walSizeLimitMB() affect how archived logs
will be deleted.
setWalTtlSeconds in interface DBOptionsInterface<DBOptions>walTtlSeconds - the ttl secondsDBOptionsInterface.setWalSizeLimitMB(long)public long walTtlSeconds()
DBOptionsInterfacewalTtlSeconds in interface DBOptionsInterface<DBOptions>DBOptionsInterface.walSizeLimitMB()public DBOptions setWalSizeLimitMB(long sizeLimitMB)
DBOptionsInterfacesetWalSizeLimitMB in interface DBOptionsInterface<DBOptions>sizeLimitMB - size limit in mega-bytes.DBOptionsInterface.setWalSizeLimitMB(long)public long walSizeLimitMB()
DBOptionsInterfaceDBOptionsInterface.walTtlSeconds() and #walSizeLimitMB() affect how archived logs
will be deleted.
walSizeLimitMB in interface DBOptionsInterface<DBOptions>DBOptionsInterface.walSizeLimitMB()public DBOptions setMaxWriteBatchGroupSizeBytes(long maxWriteBatchGroupSizeBytes)
DBOptionsInterfacesetMaxWriteBatchGroupSizeBytes in interface DBOptionsInterface<DBOptions>maxWriteBatchGroupSizeBytes - the maximum limit of number of bytes, see description.public long maxWriteBatchGroupSizeBytes()
DBOptionsInterfacemaxWriteBatchGroupSizeBytes in interface DBOptionsInterface<DBOptions>public DBOptions setManifestPreallocationSize(long size)
DBOptionsInterfacesetManifestPreallocationSize in interface DBOptionsInterface<DBOptions>size - the size in bytepublic long manifestPreallocationSize()
DBOptionsInterfacemanifestPreallocationSize in interface DBOptionsInterface<DBOptions>public DBOptions setAllowMmapReads(boolean allowMmapReads)
DBOptionsInterfacesetAllowMmapReads in interface DBOptionsInterface<DBOptions>allowMmapReads - true if mmap reads are allowed.public boolean allowMmapReads()
DBOptionsInterfaceallowMmapReads in interface DBOptionsInterface<DBOptions>public DBOptions setAllowMmapWrites(boolean allowMmapWrites)
DBOptionsInterfacesetAllowMmapWrites in interface DBOptionsInterface<DBOptions>allowMmapWrites - true if mmap writes are allowd.public boolean allowMmapWrites()
DBOptionsInterfaceallowMmapWrites in interface DBOptionsInterface<DBOptions>public DBOptions setUseDirectReads(boolean useDirectReads)
DBOptionsInterfacesetUseDirectReads in interface DBOptionsInterface<DBOptions>useDirectReads - if true, then direct read is enabledpublic boolean useDirectReads()
DBOptionsInterfaceuseDirectReads in interface DBOptionsInterface<DBOptions>public DBOptions setUseDirectIoForFlushAndCompaction(boolean useDirectIoForFlushAndCompaction)
DBOptionsInterfacesetUseDirectIoForFlushAndCompaction in interface DBOptionsInterface<DBOptions>useDirectIoForFlushAndCompaction - if true, then direct
I/O will be enabled for background flush and compactionspublic boolean useDirectIoForFlushAndCompaction()
DBOptionsInterfaceuseDirectIoForFlushAndCompaction in interface DBOptionsInterface<DBOptions>public DBOptions setAllowFAllocate(boolean allowFAllocate)
DBOptionsInterfacesetAllowFAllocate in interface DBOptionsInterface<DBOptions>allowFAllocate - false if fallocate() calls are bypassedpublic boolean allowFAllocate()
DBOptionsInterfaceallowFAllocate in interface DBOptionsInterface<DBOptions>public DBOptions setIsFdCloseOnExec(boolean isFdCloseOnExec)
DBOptionsInterfacesetIsFdCloseOnExec in interface DBOptionsInterface<DBOptions>isFdCloseOnExec - true if child process inheriting open
files is disabled.public boolean isFdCloseOnExec()
DBOptionsInterfaceisFdCloseOnExec in interface DBOptionsInterface<DBOptions>public DBOptions setStatsDumpPeriodSec(int statsDumpPeriodSec)
MutableDBOptionsInterfacesetStatsDumpPeriodSec in interface MutableDBOptionsInterface<DBOptions>statsDumpPeriodSec - time interval in seconds.public int statsDumpPeriodSec()
MutableDBOptionsInterfacestatsDumpPeriodSec in interface MutableDBOptionsInterface<DBOptions>public DBOptions setStatsPersistPeriodSec(int statsPersistPeriodSec)
MutableDBOptionsInterfacestatsPersistPeriodSec
Default: 600setStatsPersistPeriodSec in interface MutableDBOptionsInterface<DBOptions>statsPersistPeriodSec - time interval in seconds.public int statsPersistPeriodSec()
MutableDBOptionsInterfacestatsPersistPeriodSecstatsPersistPeriodSec in interface MutableDBOptionsInterface<DBOptions>public DBOptions setStatsHistoryBufferSize(long statsHistoryBufferSize)
MutableDBOptionsInterfacestatsHistoryBufferSize
Default: 1MBsetStatsHistoryBufferSize in interface MutableDBOptionsInterface<DBOptions>statsHistoryBufferSize - the size of the buffer.public long statsHistoryBufferSize()
MutableDBOptionsInterfacestatsHistoryBufferSizestatsHistoryBufferSize in interface MutableDBOptionsInterface<DBOptions>public DBOptions setAdviseRandomOnOpen(boolean adviseRandomOnOpen)
DBOptionsInterfacesetAdviseRandomOnOpen in interface DBOptionsInterface<DBOptions>adviseRandomOnOpen - true if hinting random access is on.public boolean adviseRandomOnOpen()
DBOptionsInterfaceadviseRandomOnOpen in interface DBOptionsInterface<DBOptions>public DBOptions setDbWriteBufferSize(long dbWriteBufferSize)
DBOptionsInterfaceColumnFamilyOptions.writeBufferSize(),
which enforces a limit for a single memtable.
This feature is disabled by default. Specify a non-zero value
to enable it.
Default: 0 (disabled)setDbWriteBufferSize in interface DBOptionsInterface<DBOptions>dbWriteBufferSize - the size of the write bufferpublic DBOptions setWriteBufferManager(WriteBufferManager writeBufferManager)
DBOptionsInterfaceWriteBufferManager to control memory usage across
multiple column families and/or DB instances.
Check
https://github.com/facebook/rocksdb/wiki/Write-Buffer-Manager
for more details on when to use itsetWriteBufferManager in interface DBOptionsInterface<DBOptions>writeBufferManager - The WriteBufferManager to usepublic WriteBufferManager writeBufferManager()
DBOptionsInterfaceWriteBufferManager used by it. writeBufferManager in interface DBOptionsInterface<DBOptions>public long dbWriteBufferSize()
DBOptionsInterfaceColumnFamilyOptions.writeBufferSize(),
which enforces a limit for a single memtable.
This feature is disabled by default. Specify a non-zero value
to enable it.
Default: 0 (disabled)dbWriteBufferSize in interface DBOptionsInterface<DBOptions>public DBOptions setAccessHintOnCompactionStart(AccessHint accessHint)
DBOptionsInterfaceAccessHint.NORMALsetAccessHintOnCompactionStart in interface DBOptionsInterface<DBOptions>accessHint - The access hintpublic AccessHint accessHintOnCompactionStart()
DBOptionsInterfaceAccessHint.NORMALaccessHintOnCompactionStart in interface DBOptionsInterface<DBOptions>public DBOptions setNewTableReaderForCompactionInputs(boolean newTableReaderForCompactionInputs)
DBOptionsInterfaceBlockBasedTableConfig.cacheIndexAndFilterBlocks()
for this mode if using block-based table.
Default: falsesetNewTableReaderForCompactionInputs in interface DBOptionsInterface<DBOptions>newTableReaderForCompactionInputs - true if a new file descriptor and
table reader should be created for compaction inputspublic boolean newTableReaderForCompactionInputs()
DBOptionsInterfaceBlockBasedTableConfig.cacheIndexAndFilterBlocks()
for this mode if using block-based table.
Default: falsenewTableReaderForCompactionInputs in interface DBOptionsInterface<DBOptions>public DBOptions setCompactionReadaheadSize(long compactionReadaheadSize)
MutableDBOptionsInterfaceDBOptionsInterface.newTableReaderForCompactionInputs() to true.
Default: 0setCompactionReadaheadSize in interface MutableDBOptionsInterface<DBOptions>compactionReadaheadSize - The compaction read-ahead sizepublic long compactionReadaheadSize()
MutableDBOptionsInterfaceDBOptionsInterface.newTableReaderForCompactionInputs() to true.
Default: 0compactionReadaheadSize in interface MutableDBOptionsInterface<DBOptions>public DBOptions setRandomAccessMaxBufferSize(long randomAccessMaxBufferSize)
DBOptionsInterfaceMutableDBOptionsInterface.compactionReadaheadSize() value and
always try to read ahead.
With read-ahead we always pre-allocate buffer to the size instead of
growing it up to a limit.
This option is currently honored only on Windows
Default: 1 Mb
Special value: 0 - means do not maintain per instance buffer. Allocate
per request buffer and avoid locking.setRandomAccessMaxBufferSize in interface DBOptionsInterface<DBOptions>randomAccessMaxBufferSize - the maximum size of the random access
bufferpublic long randomAccessMaxBufferSize()
DBOptionsInterfaceMutableDBOptionsInterface.compactionReadaheadSize() value and
always try to read ahead. With read-ahead we always pre-allocate buffer
to the size instead of growing it up to a limit.
This option is currently honored only on Windows
Default: 1 Mb
Special value: 0 - means do not maintain per instance buffer. Allocate
per request buffer and avoid locking.randomAccessMaxBufferSize in interface DBOptionsInterface<DBOptions>public DBOptions setWritableFileMaxBufferSize(long writableFileMaxBufferSize)
MutableDBOptionsInterfacesetWritableFileMaxBufferSize in interface MutableDBOptionsInterface<DBOptions>writableFileMaxBufferSize - the maximum buffer sizepublic long writableFileMaxBufferSize()
MutableDBOptionsInterfacewritableFileMaxBufferSize in interface MutableDBOptionsInterface<DBOptions>public DBOptions setUseAdaptiveMutex(boolean useAdaptiveMutex)
DBOptionsInterfacesetUseAdaptiveMutex in interface DBOptionsInterface<DBOptions>useAdaptiveMutex - true if adaptive mutex is used.public boolean useAdaptiveMutex()
DBOptionsInterfaceuseAdaptiveMutex in interface DBOptionsInterface<DBOptions>public DBOptions setBytesPerSync(long bytesPerSync)
MutableDBOptionsInterfacesetBytesPerSync in interface MutableDBOptionsInterface<DBOptions>bytesPerSync - size in bytespublic long bytesPerSync()
MutableDBOptionsInterfacebytesPerSync in interface MutableDBOptionsInterface<DBOptions>public DBOptions setWalBytesPerSync(long walBytesPerSync)
MutableDBOptionsInterfaceMutableDBOptionsInterface.setBytesPerSync(long) , but applies to WAL files
Default: 0, turned offsetWalBytesPerSync in interface MutableDBOptionsInterface<DBOptions>walBytesPerSync - size in bytespublic long walBytesPerSync()
MutableDBOptionsInterfaceMutableDBOptionsInterface.bytesPerSync() , but applies to WAL files
Default: 0, turned offwalBytesPerSync in interface MutableDBOptionsInterface<DBOptions>public DBOptions setStrictBytesPerSync(boolean strictBytesPerSync)
MutableDBOptionsInterfaceMutableDBOptionsInterface.walBytesPerSync()
bytes submitted for writeback at any given time, and SST files have at most
MutableDBOptionsInterface.bytesPerSync() bytes pending writeback at any given time. This
can be used to handle cases where processing speed exceeds I/O speed
during file generation, which can lead to a huge sync when the file is
finished, even with MutableDBOptionsInterface.bytesPerSync() / MutableDBOptionsInterface.walBytesPerSync()
properly configured.
- If `sync_file_range` is supported it achieves this by waiting for any
prior `sync_file_range`s to finish before proceeding. In this way,
processing (compression, etc.) can proceed uninhibited in the gap
between `sync_file_range`s, and we block only when I/O falls
behind.
- Otherwise the `WritableFile::Sync` method is used. Note this mechanism
always blocks, thus preventing the interleaving of I/O and processing.
Note: Enabling this option does not provide any additional persistence
guarantees, as it may use `sync_file_range`, which does not write out
metadata.
Default: falsesetStrictBytesPerSync in interface MutableDBOptionsInterface<DBOptions>strictBytesPerSync - the bytes per syncpublic boolean strictBytesPerSync()
MutableDBOptionsInterfaceMutableDBOptionsInterface.setStrictBytesPerSync(boolean)strictBytesPerSync in interface MutableDBOptionsInterface<DBOptions>public DBOptions setListeners(List<AbstractEventListener> listeners)
DBOptionsInterfaceEventListeners whose callback functions
will be called when specific RocksDB event happens.
Note: the RocksJava API currently only supports EventListeners implemented in Java.
It could be extended in future to also support adding/removing EventListeners implemented in
C++.setListeners in interface DBOptionsInterface<DBOptions>listeners - the listeners who should be notified on various events.public List<AbstractEventListener> listeners()
DBOptionsInterfaceEventListeners whose callback functions
will be called when specific RocksDB event happens.
Note: the RocksJava API currently only supports EventListeners implemented in Java.
It could be extended in future to also support adding/removing EventListeners implemented in
C++.listeners in interface DBOptionsInterface<DBOptions>public DBOptions setEnableThreadTracking(boolean enableThreadTracking)
DBOptionsInterfacesetEnableThreadTracking in interface DBOptionsInterface<DBOptions>enableThreadTracking - true to enable trackingpublic boolean enableThreadTracking()
DBOptionsInterfaceenableThreadTracking in interface DBOptionsInterface<DBOptions>public DBOptions setDelayedWriteRate(long delayedWriteRate)
MutableDBOptionsInterfaceColumnFamilyOptions.softPendingCompactionBytesLimit() or
ColumnFamilyOptions.level0SlowdownWritesTrigger() is triggered,
or we are writing to the last mem table allowed and we allow more than 3
mem tables. It is calculated using size of user write requests before
compression. RocksDB may decide to slow down more if the compaction still
gets behind further.
If the value is 0, we will infer a value from `rater_limiter` value
if it is not empty, or 16MB if `rater_limiter` is empty. Note that
if users change the rate in `rate_limiter` after DB is opened,
`delayed_write_rate` won't be adjusted.
Unit: bytes per second.
Default: 0
Dynamically changeable through RocksDB.setDBOptions(MutableDBOptions).setDelayedWriteRate in interface MutableDBOptionsInterface<DBOptions>delayedWriteRate - the rate in bytes per secondpublic long delayedWriteRate()
MutableDBOptionsInterfaceColumnFamilyOptions.softPendingCompactionBytesLimit() or
ColumnFamilyOptions.level0SlowdownWritesTrigger() is triggered,
or we are writing to the last mem table allowed and we allow more than 3
mem tables. It is calculated using size of user write requests before
compression. RocksDB may decide to slow down more if the compaction still
gets behind further.
If the value is 0, we will infer a value from `rater_limiter` value
if it is not empty, or 16MB if `rater_limiter` is empty. Note that
if users change the rate in `rate_limiter` after DB is opened,
`delayed_write_rate` won't be adjusted.
Unit: bytes per second.
Default: 0
Dynamically changeable through RocksDB.setDBOptions(MutableDBOptions).delayedWriteRate in interface MutableDBOptionsInterface<DBOptions>public DBOptions setEnablePipelinedWrite(boolean enablePipelinedWrite)
DBOptionsInterfaceDBOptionsInterface.enablePipelinedWrite() is true, separate write thread queue is
maintained for WAL write and memtable write. A write thread first enter WAL
writer queue and then memtable writer queue. Pending thread on the WAL
writer queue thus only have to wait for previous writers to finish their
WAL writing but not the memtable writing. Enabling the feature may improve
write throughput and reduce latency of the prepare phase of two-phase
commit.
Default: falsesetEnablePipelinedWrite in interface DBOptionsInterface<DBOptions>enablePipelinedWrite - true to enabled pipelined writespublic boolean enablePipelinedWrite()
DBOptionsInterfaceDBOptionsInterface.setEnablePipelinedWrite(boolean).enablePipelinedWrite in interface DBOptionsInterface<DBOptions>public DBOptions setUnorderedWrite(boolean unorderedWrite)
DBOptionsInterfaceDBOptionsInterface.unorderedWrite() to true trades higher write throughput with
relaxing the immutability guarantee of snapshots. This violates the
repeatability one expects from ::Get from a snapshot, as well as
::MultiGet and Iterator's consistent-point-in-time view property.
If the application cannot tolerate the relaxed guarantees, it can implement
its own mechanisms to work around that and yet benefit from the higher
throughput. Using TransactionDB with WRITE_PREPARED write policy and
DBOptionsInterface.twoWriteQueues() true is one way to achieve immutable snapshots despite
unordered_write.
By default, i.e., when it is false, rocksdb does not advance the sequence
number for new snapshots unless all the writes with lower sequence numbers
are already finished. This provides the immutability that we except from
snapshots. Moreover, since Iterator and MultiGet internally depend on
snapshots, the snapshot immutability results into Iterator and MultiGet
offering consistent-point-in-time view. If set to true, although
Read-Your-Own-Write property is still provided, the snapshot immutability
property is relaxed: the writes issued after the snapshot is obtained (with
larger sequence numbers) will be still not visible to the reads from that
snapshot, however, there still might be pending writes (with lower sequence
number) that will change the state visible to the snapshot after they are
landed to the memtable.setUnorderedWrite in interface DBOptionsInterface<DBOptions>unorderedWrite - true to enabled unordered writepublic boolean unorderedWrite()
DBOptionsInterfaceDBOptionsInterface.setUnorderedWrite(boolean).unorderedWrite in interface DBOptionsInterface<DBOptions>public DBOptions setAllowConcurrentMemtableWrite(boolean allowConcurrentMemtableWrite)
DBOptionsInterfaceDBOptionsInterface.setEnableWriteThreadAdaptiveYield(boolean) if you are going to use
this feature.
Default: truesetAllowConcurrentMemtableWrite in interface DBOptionsInterface<DBOptions>allowConcurrentMemtableWrite - true to enable concurrent writes
for the memtablepublic boolean allowConcurrentMemtableWrite()
DBOptionsInterfaceDBOptionsInterface.setEnableWriteThreadAdaptiveYield(boolean) if you are going to use
this feature.
Default: trueallowConcurrentMemtableWrite in interface DBOptionsInterface<DBOptions>public DBOptions setEnableWriteThreadAdaptiveYield(boolean enableWriteThreadAdaptiveYield)
DBOptionsInterfaceDBOptionsInterface.writeThreadMaxYieldUsec() before blocking on a
mutex. This can substantially improve throughput for concurrent workloads,
regardless of whether DBOptionsInterface.allowConcurrentMemtableWrite() is enabled.
Default: truesetEnableWriteThreadAdaptiveYield in interface DBOptionsInterface<DBOptions>enableWriteThreadAdaptiveYield - true to enable adaptive yield for the
write threadspublic boolean enableWriteThreadAdaptiveYield()
DBOptionsInterfaceDBOptionsInterface.writeThreadMaxYieldUsec() before blocking on a
mutex. This can substantially improve throughput for concurrent workloads,
regardless of whether DBOptionsInterface.allowConcurrentMemtableWrite() is enabled.
Default: trueenableWriteThreadAdaptiveYield in interface DBOptionsInterface<DBOptions>public DBOptions setWriteThreadMaxYieldUsec(long writeThreadMaxYieldUsec)
DBOptionsInterfaceDBOptionsInterface.writeThreadSlowYieldUsec() is
set properly) increasing this value is likely to increase RocksDB
throughput at the expense of increased CPU usage.
Default: 100setWriteThreadMaxYieldUsec in interface DBOptionsInterface<DBOptions>writeThreadMaxYieldUsec - maximum number of microsecondspublic long writeThreadMaxYieldUsec()
DBOptionsInterfaceDBOptionsInterface.writeThreadSlowYieldUsec() is
set properly) increasing this value is likely to increase RocksDB
throughput at the expense of increased CPU usage.
Default: 100writeThreadMaxYieldUsec in interface DBOptionsInterface<DBOptions>public DBOptions setWriteThreadSlowYieldUsec(long writeThreadSlowYieldUsec)
DBOptionsInterfacesetWriteThreadSlowYieldUsec in interface DBOptionsInterface<DBOptions>writeThreadSlowYieldUsec - the latency in microsecondspublic long writeThreadSlowYieldUsec()
DBOptionsInterfacewriteThreadSlowYieldUsec in interface DBOptionsInterface<DBOptions>public DBOptions setSkipStatsUpdateOnDbOpen(boolean skipStatsUpdateOnDbOpen)
DBOptionsInterfacesetSkipStatsUpdateOnDbOpen in interface DBOptionsInterface<DBOptions>skipStatsUpdateOnDbOpen - true if updating stats will be skippedpublic boolean skipStatsUpdateOnDbOpen()
DBOptionsInterfaceskipStatsUpdateOnDbOpen in interface DBOptionsInterface<DBOptions>public DBOptions setSkipCheckingSstFileSizesOnDbOpen(boolean skipCheckingSstFileSizesOnDbOpen)
DBOptionsInterfaceRocksDB.open(String) will not fetch and check sizes of all sst files.
This may significantly speed up startup if there are many sst files,
especially when using non-default Env with expensive GetFileSize().
We'll still check that all required sst files exist.
If paranoid_checks is false, this option is ignored, and sst files are
not checked at all.
Default: falsesetSkipCheckingSstFileSizesOnDbOpen in interface DBOptionsInterface<DBOptions>skipCheckingSstFileSizesOnDbOpen - if true, then SST file sizes will not be checked
when calling RocksDB.open(String).public boolean skipCheckingSstFileSizesOnDbOpen()
DBOptionsInterfaceRocksDB.open(String) will not fetch and check sizes of all sst files.
This may significantly speed up startup if there are many sst files,
especially when using non-default Env with expensive GetFileSize().
We'll still check that all required sst files exist.
If paranoid_checks is false, this option is ignored, and sst files are
not checked at all.
Default: falseskipCheckingSstFileSizesOnDbOpen in interface DBOptionsInterface<DBOptions>RocksDB.open(String).public DBOptions setWalRecoveryMode(WALRecoveryMode walRecoveryMode)
DBOptionsInterfaceWALRecoveryMode.PointInTimeRecoverysetWalRecoveryMode in interface DBOptionsInterface<DBOptions>walRecoveryMode - The WAL recover modepublic WALRecoveryMode walRecoveryMode()
DBOptionsInterfaceWALRecoveryMode.PointInTimeRecoverywalRecoveryMode in interface DBOptionsInterface<DBOptions>public DBOptions setAllow2pc(boolean allow2pc)
DBOptionsInterfacesetAllow2pc in interface DBOptionsInterface<DBOptions>allow2pc - true if two-phase-commit is enabledpublic boolean allow2pc()
DBOptionsInterfaceallow2pc in interface DBOptionsInterface<DBOptions>public DBOptions setRowCache(Cache rowCache)
DBOptionsInterfacesetRowCache in interface DBOptionsInterface<DBOptions>rowCache - The global row cachepublic Cache rowCache()
DBOptionsInterfacerowCache in interface DBOptionsInterface<DBOptions>public DBOptions setWalFilter(AbstractWalFilter walFilter)
DBOptionsInterfacesetWalFilter in interface DBOptionsInterface<DBOptions>walFilter - the filter for processing WALs during recovery.public WalFilter walFilter()
DBOptionsInterfaceDBOptionsInterface.setWalFilter(AbstractWalFilter).walFilter in interface DBOptionsInterface<DBOptions>public DBOptions setFailIfOptionsFileError(boolean failIfOptionsFileError)
DBOptionsInterfacesetFailIfOptionsFileError in interface DBOptionsInterface<DBOptions>failIfOptionsFileError - true if we should fail if there is an error
in the options filepublic boolean failIfOptionsFileError()
DBOptionsInterfacefailIfOptionsFileError in interface DBOptionsInterface<DBOptions>public DBOptions setDumpMallocStats(boolean dumpMallocStats)
DBOptionsInterfacesetDumpMallocStats in interface DBOptionsInterface<DBOptions>dumpMallocStats - true if malloc stats should be printed to LOGpublic boolean dumpMallocStats()
DBOptionsInterfacedumpMallocStats in interface DBOptionsInterface<DBOptions>public DBOptions setAvoidFlushDuringRecovery(boolean avoidFlushDuringRecovery)
DBOptionsInterfacesetAvoidFlushDuringRecovery in interface DBOptionsInterface<DBOptions>avoidFlushDuringRecovery - true to try to avoid (but not guarantee
not to) flush during recoverypublic boolean avoidFlushDuringRecovery()
DBOptionsInterfaceavoidFlushDuringRecovery in interface DBOptionsInterface<DBOptions>public DBOptions setAvoidFlushDuringShutdown(boolean avoidFlushDuringShutdown)
MutableDBOptionsInterfaceRocksDB.setOptions(ColumnFamilyHandle, MutableColumnFamilyOptions)
API.setAvoidFlushDuringShutdown in interface MutableDBOptionsInterface<DBOptions>avoidFlushDuringShutdown - true if we should avoid flush during
shutdownpublic boolean avoidFlushDuringShutdown()
MutableDBOptionsInterfaceRocksDB.setOptions(ColumnFamilyHandle, MutableColumnFamilyOptions)
API.avoidFlushDuringShutdown in interface MutableDBOptionsInterface<DBOptions>public DBOptions setAllowIngestBehind(boolean allowIngestBehind)
DBOptionsInterfacesetAllowIngestBehind in interface DBOptionsInterface<DBOptions>allowIngestBehind - true to allow ingest behind, false to disallow.public boolean allowIngestBehind()
DBOptionsInterfaceDBOptionsInterface.setAllowIngestBehind(boolean).allowIngestBehind in interface DBOptionsInterface<DBOptions>public DBOptions setPreserveDeletes(boolean preserveDeletes)
DBOptionsInterfacesetPreserveDeletes in interface DBOptionsInterface<DBOptions>preserveDeletes - true to preserve deletes.public boolean preserveDeletes()
DBOptionsInterfaceDBOptionsInterface.setPreserveDeletes(boolean).preserveDeletes in interface DBOptionsInterface<DBOptions>public DBOptions setTwoWriteQueues(boolean twoWriteQueues)
DBOptionsInterfacesetTwoWriteQueues in interface DBOptionsInterface<DBOptions>twoWriteQueues - true to enable two write queues, false otherwise.public boolean twoWriteQueues()
DBOptionsInterfacetwoWriteQueues in interface DBOptionsInterface<DBOptions>public DBOptions setManualWalFlush(boolean manualWalFlush)
DBOptionsInterfacesetManualWalFlush in interface DBOptionsInterface<DBOptions>manualWalFlush - true to set disable automatic WAL flushing,
false otherwise.public boolean manualWalFlush()
DBOptionsInterfaceDBOptionsInterface.setManualWalFlush(boolean).manualWalFlush in interface DBOptionsInterface<DBOptions>public DBOptions setAtomicFlush(boolean atomicFlush)
DBOptionsInterfaceRocksDB.flush(FlushOptions, List).
For auto-triggered flush, RocksDB atomically flushes ALL column families.
Currently, any WAL-enabled writes after atomic flush may be replayed
independently if the process crashes later and tries to recover.setAtomicFlush in interface DBOptionsInterface<DBOptions>atomicFlush - true to enable atomic flush of multiple column families.public boolean atomicFlush()
DBOptionsInterfaceDBOptionsInterface.setAtomicFlush(boolean).atomicFlush in interface DBOptionsInterface<DBOptions>public DBOptions setAvoidUnnecessaryBlockingIO(boolean avoidUnnecessaryBlockingIO)
DBOptionsInterfaceReadOptions.setBackgroundPurgeOnIteratorCleanup(boolean).setAvoidUnnecessaryBlockingIO in interface DBOptionsInterface<DBOptions>avoidUnnecessaryBlockingIO - If true, working thread may avoid doing unnecessary
operation.public boolean avoidUnnecessaryBlockingIO()
DBOptionsInterfaceReadOptions.setBackgroundPurgeOnIteratorCleanup(boolean).avoidUnnecessaryBlockingIO in interface DBOptionsInterface<DBOptions>public DBOptions setPersistStatsToDisk(boolean persistStatsToDisk)
DBOptionsInterfacesetPersistStatsToDisk in interface DBOptionsInterface<DBOptions>persistStatsToDisk - true if stats should be persisted to hidden column family.public boolean persistStatsToDisk()
DBOptionsInterfacepersistStatsToDisk in interface DBOptionsInterface<DBOptions>public DBOptions setWriteDbidToManifest(boolean writeDbidToManifest)
DBOptionsInterfacesetWriteDbidToManifest in interface DBOptionsInterface<DBOptions>writeDbidToManifest - if true, then DB ID will be written to Manifest file.public boolean writeDbidToManifest()
DBOptionsInterfacewriteDbidToManifest in interface DBOptionsInterface<DBOptions>public DBOptions setLogReadaheadSize(long logReadaheadSize)
DBOptionsInterfacesetLogReadaheadSize in interface DBOptionsInterface<DBOptions>logReadaheadSize - the number of bytes to prefetch when reading the log.public long logReadaheadSize()
DBOptionsInterfacelogReadaheadSize in interface DBOptionsInterface<DBOptions>public DBOptions setBestEffortsRecovery(boolean bestEffortsRecovery)
DBOptionsInterfacesetBestEffortsRecovery in interface DBOptionsInterface<DBOptions>bestEffortsRecovery - if true, RocksDB will use best-efforts mode when recovering.public boolean bestEffortsRecovery()
DBOptionsInterfacebestEffortsRecovery in interface DBOptionsInterface<DBOptions>public DBOptions setMaxBgErrorResumeCount(int maxBgerrorResumeCount)
DBOptionsInterfacesetMaxBgErrorResumeCount in interface DBOptionsInterface<DBOptions>maxBgerrorResumeCount - maximum number of times db resume should be called when IO Error
happens.public int maxBgerrorResumeCount()
DBOptionsInterfacemaxBgerrorResumeCount in interface DBOptionsInterface<DBOptions>public DBOptions setBgerrorResumeRetryInterval(long bgerrorResumeRetryInterval)
DBOptionsInterfacesetBgerrorResumeRetryInterval in interface DBOptionsInterface<DBOptions>bgerrorResumeRetryInterval - how many microseconds to wait between DB resume attempts.public long bgerrorResumeRetryInterval()
DBOptionsInterfacebgerrorResumeRetryInterval in interface DBOptionsInterface<DBOptions>protected final void disposeInternal(long handle)
disposeInternal in class RocksObjectCopyright © 2021. All rights reserved.