Home
last modified time | relevance | path

Searched refs:SetDBOptions (Results 1 – 17 of 17) sorted by relevance

/rocksdb-6.9/db/
Ddb_options_test.cc98 ASSERT_OK(dbfull()->SetDBOptions(new_options)); in TEST_F()
154 ASSERT_OK(dbfull()->SetDBOptions({{"bytes_per_sync", "8388608"}})); in TEST_F()
196 ASSERT_OK(dbfull()->SetDBOptions({{"wal_bytes_per_sync", "5242880"}})); in TEST_F()
243 dbfull()->SetDBOptions({{"writable_file_max_buffer_size", "524288"}})); in TEST_F()
401 ASSERT_OK(dbfull()->SetDBOptions({{"max_background_compactions", "3"}})); in TEST_F()
417 ASSERT_OK(dbfull()->SetDBOptions( in TEST_F()
472 ASSERT_OK(dbfull()->SetDBOptions({{"delayed_write_rate", "20000"}})); in TEST_F()
496 ASSERT_OK(dbfull()->SetDBOptions({{"max_total_wal_size", "10"}})); in TEST_F()
515 dbfull()->SetDBOptions({{"stats_dump_period_sec", ToString(num)}})); in TEST_F()
593 ASSERT_OK(dbfull()->SetDBOptions({{"max_open_files", "1024"}})); in TEST_F()
[all …]
Ddb_test.cc2858 Status SetDBOptions( in SetDBOptions() function in ROCKSDB_NAMESPACE::ModelDB
/rocksdb-6.9/docs/_posts/
D2017-01-06-rocksdb-5-0-1-released.markdown11 …upport dynamically change `delayed_write_rate` and `max_total_wal_size` options via SetDBOptions().
13 * Support dynamically change `delayed_write_rate` option via SetDBOptions().
23 …L = true). Unpersisted data will be lost. The options is dynamically changeable via SetDBOptions().
D2017-02-07-rocksdb-5-1-2-released.markdown9 * Support dynamically change `delete_obsolete_files_period_micros` option via SetDBOptions().
D2017-06-29-rocksdb-5-5-1-released.markdown13 * Support dynamically change `max_open_files` option via SetDBOptions()
D2017-05-26-rocksdb-5-4-5-released.markdown9 * Support dynamically changing `stats_dump_period_sec` option via SetDBOptions().
/rocksdb-6.9/monitoring/
Dstats_history_test.cc64 ASSERT_OK(dbfull()->SetDBOptions({{"stats_dump_period_sec", "0"}})); in TEST_F()
104 ASSERT_OK(dbfull()->SetDBOptions({{"stats_persist_period_sec", "0"}})); in TEST_F()
134 ASSERT_OK(dbfull()->SetDBOptions({{"stats_persist_period_sec", "5"}})); in TEST_F()
175 ASSERT_OK(dbfull()->SetDBOptions({{"stats_persist_period_sec", "0"}})); in TEST_F()
275 ASSERT_OK(dbfull()->SetDBOptions({{"stats_history_buffer_size", "12000"}})); in TEST_F()
/rocksdb-6.9/db/db_impl/
Ddb_impl_secondary.h176 using DBImpl::SetDBOptions;
177 Status SetDBOptions(const std::unordered_map<std::string, std::string>& in SetDBOptions() function
Ddb_secondary_test.cc277 Status s = db_secondary_->SetDBOptions({{"max_open_files", "-1"}}); in TEST_F()
Ddb_impl.h316 virtual Status SetDBOptions(
Ddb_impl.cc971 Status DBImpl::SetDBOptions( in SetDBOptions() function in ROCKSDB_NAMESPACE::DBImpl
/rocksdb-6.9/include/rocksdb/utilities/
Dstackable_db.h410 virtual Status SetDBOptions( in SetDBOptions() function
413 return db_->SetDBOptions(new_options); in SetDBOptions()
Dldb_cmd.h86 virtual void SetDBOptions(Options options) { options_ = options; } in SetDBOptions() function
/rocksdb-6.9/
DHISTORY.md64 …re not resized upon setting `max_background_jobs` dynamically through the `SetDBOptions` interface.
638 * Support dynamically change `max_open_files` option via SetDBOptions()
652 * Support dynamically change `stats_dump_period_sec` option via SetDBOptions().
694 * Support dynamically change `delete_obsolete_files_period_micros` option via SetDBOptions().
705 * Support dynamically change `delayed_write_rate` and `max_total_wal_size` options via SetDBOptions
707 * Support dynamically change `delayed_write_rate` option via SetDBOptions().
716 …L = true). Unpersisted data will be lost. The options is dynamically changeable via SetDBOptions().
727 * Add DB::SetDBOptions() to dynamic change base_background_compactions and max_background_compactio…
/rocksdb-6.9/include/rocksdb/
Ddb.h1111 virtual Status SetDBOptions(
/rocksdb-6.9/java/rocksjni/
Drocksjni.cc2558 auto s = db->SetDBOptions(options_map); in Java_org_rocksdb_RocksDB_setDBOptions()
/rocksdb-6.9/tools/
Dldb_cmd.cc170 command->SetDBOptions(options); in InitFromCmdLineArgs()