Package org.apache.kafka.streams.state
Interface RocksDBConfigSetter
-
public interface RocksDBConfigSetterAn interface to that allows developers to customize the RocksDB settings for a given Store. Please read the RocksDB Tuning Guide.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetConfig(java.lang.String storeName, org.rocksdb.Options options, java.util.Map<java.lang.String,java.lang.Object> configs)Set the rocks db options for the provided storeName.
-
-
-
Method Detail
-
setConfig
void setConfig(java.lang.String storeName, org.rocksdb.Options options, java.util.Map<java.lang.String,java.lang.Object> configs)Set the rocks db options for the provided storeName.- Parameters:
storeName- the name of the store being configuredoptions- the Rocks DB optionsconfigs- the configuration supplied toStreamsConfig
-
-