Browse Source

Added note to RocksDBConfigSetter (#6578)

Reviewers: Matthias J. Sax <mjsax@apache.org>,  John Roesler <john@confluent.io>, Bill Bejeck <bbejeck@gmail.com>
pull/6595/head
A. Sophie Blee-Goldman 6 years ago committed by Bill Bejeck
parent
commit
555d05971e
  1. 3
      streams/src/main/java/org/apache/kafka/streams/state/RocksDBConfigSetter.java

3
streams/src/main/java/org/apache/kafka/streams/state/RocksDBConfigSetter.java

@ -23,6 +23,9 @@ import java.util.Map;
/** /**
* An interface to that allows developers to customize the RocksDB settings for a given Store. * An interface to that allows developers to customize the RocksDB settings for a given Store.
* Please read the <a href="https://github.com/facebook/rocksdb/wiki/RocksDB-Tuning-Guide">RocksDB Tuning Guide</a>. * Please read the <a href="https://github.com/facebook/rocksdb/wiki/RocksDB-Tuning-Guide">RocksDB Tuning Guide</a>.
*
* Note: if you choose to set options.setTableFormatConfig(tableConfig) with a new BlockBasedTableConfig you should
* probably also set the filter for that tableConfig, most likely with tableConfig.setFilter(new BloomFilter());
*/ */
public interface RocksDBConfigSetter { public interface RocksDBConfigSetter {

Loading…
Cancel
Save