Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 47) sorted by relevance

12

/rocksdb-6.9/tools/advisor/advisor/
Ddb_options_parser.py197 all_options.append(option)
205 for option in reqd_options:
210 if option not in self.misc_options:
213 reqd_options_dict[option] = {}
215 self.misc_options[option]
222 opt_name = option.split('.')[-1]
239 for option in options:
253 self.misc_options[option] = options[option][NO_COL_FAMILY]
256 opt_name = option.split('.')[-1]
259 for col_fam in options[option]:
[all …]
Ddb_config_optimizer.py59 option = suggestions_dict[sugg_name].option
64 assert(option)
66 required_options.append(option)
73 if sugg.option not in current_config:
79 updated_config[sugg.option] = {}
91 'for ' + sugg.option
107 'for ' + sugg.option
190 for option in diff:
191 bt_config[option] = {}
192 for col_fam in diff[option]:
[all …]
Drules.ini62 option=DBOptions.max_background_flushes key
67 option=CFOptions.max_write_buffer_number key
71 option=DBOptions.max_subcompactions key
80 option=CFOptions.write_buffer_size key
84 option=CFOptions.max_bytes_for_level_base key
142 option=DBOptions.bytes_per_sync key
147 option=DBOptions.wal_bytes_per_sync key
152 option=rate_limiter_bytes_per_sec key
179 option=bloom_bits key
207 option=cache_size key
[all …]
Drule_parser.py229 self.option = None
242 self.option = value
244 if self.option and not value:
257 if not self.option:
272 ' option : ' + self.option + ' action : ' + self.action.name
/rocksdb-6.9/tools/advisor/test/input_files/
Dtriggered_rules.ini34 option=DBOptions.max_background_flushes key
38 option=CFOptions.max_write_buffer_number key
42 option=DBOptions.max_subcompactions key
46 option=DBOptions.max_background_compactions key
50 option=CFOptions.write_buffer_size key
54 option=CFOptions.max_bytes_for_level_base key
58 option=CFOptions.level0_slowdown_writes_trigger key
62 option=CFOptions.level0_stop_writes_trigger key
66 option=CFOptions.hard_pending_compaction_bytes_limit key
70 option=CFOptions.soft_pending_compaction_bytes_limit key
Drules_err1.ini10 option=DBOptions.max_background_flushes key
14 option=CFOptions.max_write_buffer_number key
46 [Suggestion "missing-option"]
47 option= key
51 option=CFOptions.write_buffer_size key
55 option=CFOptions.level0_stop_writes_trigger key
Drules_err4.ini10 option=DBOptions.max_background_flushes key
14 option=CFOptions.max_write_buffer_number key
Drules_err3.ini10 option=DBOptions.max_background_flushes key
14 option=CFOptions.max_write_buffer_number key
Drules_err2.ini10 option=DBOptions.max_background_flushes key
14 option=CFOptions.max_write_buffer_number key
Dtest_rules.ini39 option=DBOptions.max_background_flushes key
43 option=CFOptions.max_write_buffer_number key
DOPTIONS-0000051 # This is a RocksDB option file.
/rocksdb-6.9/docs/_posts/
D2017-06-29-rocksdb-5-5-1-released.markdown11 * ldb add option --try_load_options, which will open DB with its own option file.
13 * Support dynamically change `max_open_files` option via SetDBOptions()
17 * Support file ingestion behind with option `allow_ingest_behind`
18 * New option enable_pipelined_write which may improve write throughput in case writing from multipl…
D2017-01-06-rocksdb-5-0-1-released.markdown13 * Support dynamically change `delayed_write_rate` option via SetDBOptions().
23 …* Add avoid_flush_during_shutdown option, which speeds up DB shutdown by not flushing unpersisted …
24 …* Add memtable_insert_with_hint_prefix_extractor option. The option is mean to reduce CPU usage fo…
D2018-08-01-rocksdb-tuning-advisor.markdown33 configuration option, for example, increase CFOptions.write_buffer_size,
50 Suggestion: inc-bg-flush option : DBOptions.max_background_flushes action : increase suggested_valu…
51 Suggestion: inc-write-buffer option : CFOptions.max_write_buffer_number action : increase
D2016-07-26-rocksdb-4-8-released.markdown32option files. See [https://github.com/facebook/rocksdb/wiki/RocksDB-Options-File](https://github.c…
41 …* Added strict_capacity_limit option to NewLRUCache. If the flag is set to true, insert to cache w…
D2014-07-29-rocksdb-3-3-release.markdown27 …* **rate_limiter option**: We added an option that controls total throughput of flush and compacti…
D2016-09-28-rocksdb-4-11-2-released.markdown46 * Add avoid_flush_during_recovery option.
47 …* Add a read option background_purge_on_iterator_cleanup to avoid deleting files in foreground whe…
/rocksdb-6.9/
DCMakeLists.txt65 option(WITH_SNAPPY "build with SNAPPY" OFF)
66 option(WITH_LZ4 "build with lz4" OFF)
67 option(WITH_ZLIB "build with zlib" OFF)
68 option(WITH_ZSTD "build with zstd" OFF)
126 option(WITH_BZ2 "build with bzip2" OFF)
170 option(WITH_MD_LIBRARY "build with MD" ON)
298 option(WITH_ASAN "build with ASAN" OFF)
308 option(WITH_TSAN "build with TSAN" OFF)
318 option(WITH_UBSAN "build with UBSAN" OFF)
862 option(WITH_JNI "build with JNI" OFF)
[all …]
DHISTORY.md129 * Deprecate `snap_refresh_nanos` option.
338 * Remove ttl option from `CompactionOptionsFIFO`. The option has been deprecated and ttl in `Column…
526 * Add "--use_txn" option to use transactional API in db_stress.
636 * ldb add option --try_load_options, which will open DB with its own option file.
642 * Support file ingestion behind with option `allow_ingest_behind`
667 * Remove disableDataSync option.
668 * Remove timeout_hint_us option from WriteOptions. The option has been deprecated and has no effect…
757 * Add avoid_flush_during_recovery option.
877 * Deprecated purge_redundant_kvs_while_flush option.
898 * Add max_write_buffer_number_to_maintain option
[all …]
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DMutableDBOptions.java57 for(final String option : options) { in parse()
58 final int equalsOffset = option.indexOf(KEY_VALUE_SEPARATOR); in parse()
64 final String key = option.substring(0, equalsOffset); in parse()
69 final String value = option.substring(equalsOffset + 1); in parse()
DMutableColumnFamilyOptions.java57 for(final String option : options) { in parse()
58 final int equalsOffset = option.indexOf(KEY_VALUE_SEPARATOR); in parse()
64 final String key = option.substring(0, equalsOffset); in parse()
69 final String value = option.substring(equalsOffset + 1); in parse()
DAbstractMutableOptions.java87 for (final Map.Entry<K, MutableOptionValue<?>> option : options.entrySet()) { in build()
88 keys[i] = option.getKey().name(); in build()
89 values[i] = option.getValue().asString(); in build()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DWalFilterTest.java57 for (final WalProcessingOption option : WalProcessingOption.values()) { in walFilter()
85 new TestableWalFilter(option, applyOptionForRecordIndex)) { in walFilter()
105 if (option != WalProcessingOption.CORRUPTED_RECORD) { in walFilter()
/rocksdb-6.9/include/rocksdb/utilities/
Dldb_cmd.h223 const std::string& option, int& value,
227 const std::string& option, std::string* value);
236 const std::string& option, bool default_val);
/rocksdb-6.9/tools/advisor/
DREADME.md30 configuration option, for example, increase CFOptions.write_buffer_size,
81 Suggestion: inc-bg-flush option : DBOptions.max_background_flushes action : increase suggested_valu…
82 Suggestion: inc-write-buffer option : CFOptions.max_write_buffer_number action : increase

12