Home
last modified time | relevance | path

Searched refs:wal_bytes_per_sync (Results 1 – 20 of 20) sorted by relevance

/rocksdb-6.9/options/
Ddb_options.cc272 wal_bytes_per_sync(0), in MutableDBOptions()
291 wal_bytes_per_sync(options.wal_bytes_per_sync), in MutableDBOptions()
327 wal_bytes_per_sync); in Dump()
Ddb_options.h114 uint64_t wal_bytes_per_sync; member
Doptions_helper.cc62 options.wal_bytes_per_sync = mutable_db_options.wal_bytes_per_sync; in BuildDBOptions()
1578 {offsetof(struct DBOptions, wal_bytes_per_sync), OptionType::kUInt64T,
1580 offsetof(struct MutableDBOptions, wal_bytes_per_sync)}},
Doptions_test.cc281 ASSERT_EQ(new_db_opt.wal_bytes_per_sync, static_cast<uint64_t>(48)); in TEST_F()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DMutableDBOptions.java96 wal_bytes_per_sync(ValueType.LONG), enumConstant
294 return setLong(DBOption.wal_bytes_per_sync, walBytesPerSync); in setWalBytesPerSync()
299 return getLong(DBOption.wal_bytes_per_sync); in walBytesPerSync()
/rocksdb-6.9/db/
Ddb_options_test.cc175 options.wal_bytes_per_sync = 512; in TEST_F()
181 ASSERT_EQ(512, dbfull()->GetDBOptions().wal_bytes_per_sync); in TEST_F()
197 ASSERT_EQ(5242880, dbfull()->GetDBOptions().wal_bytes_per_sync); in TEST_F()
Ddb_write_test.cc243 options.wal_bytes_per_sync = 256 * 1024; in TEST_P()
Dc.cc2498 opt->rep.wal_bytes_per_sync = v; in rocksdb_options_set_wal_bytes_per_sync()
/rocksdb-6.9/env/
Dfile_system.cc58 optimized_file_options.bytes_per_sync = db_options.wal_bytes_per_sync; in OptimizeForLogWrite()
Denv.cc408 optimized_env_options.bytes_per_sync = db_options.wal_bytes_per_sync; in OptimizeForLogWrite()
Dfs_posix.cc883 optimized.bytes_per_sync = db_options.wal_bytes_per_sync; in OptimizeForLogWrite()
/rocksdb-6.9/examples/
Drocksdb_option_file_example.ini45 wal_bytes_per_sync=0
/rocksdb-6.9/include/rocksdb/
Doptions.h847 uint64_t wal_bytes_per_sync = 0; member
/rocksdb-6.9/test_util/
Dtestutil.cc305 db_opt->wal_bytes_per_sync = uint_max + rnd->Uniform(100000); in RandomInitDBOptions()
/rocksdb-6.9/tools/advisor/advisor/
Drules.ini147 option=DBOptions.wal_bytes_per_sync
/rocksdb-6.9/java/rocksjni/
Doptions.cc1553 reinterpret_cast<ROCKSDB_NAMESPACE::Options*>(jhandle)->wal_bytes_per_sync = in Java_org_rocksdb_Options_setWalBytesPerSync()
1565 return static_cast<jlong>(opt->wal_bytes_per_sync); in Java_org_rocksdb_Options_walBytesPerSync()
5957 reinterpret_cast<ROCKSDB_NAMESPACE::DBOptions*>(jhandle)->wal_bytes_per_sync = in Java_org_rocksdb_DBOptions_setWalBytesPerSync()
5969 return static_cast<jlong>(opt->wal_bytes_per_sync); in Java_org_rocksdb_DBOptions_walBytesPerSync()
/rocksdb-6.9/port/win/
Denv_win.cc1096 optimized.bytes_per_sync = db_options.wal_bytes_per_sync; in OptimizeForLogWrite()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1176 DEFINE_uint64(wal_bytes_per_sync,
1177 ROCKSDB_NAMESPACE::Options().wal_bytes_per_sync,
3937 options.wal_bytes_per_sync = FLAGS_wal_bytes_per_sync; in InitializeOptionsFromFlags()
/rocksdb-6.9/
DHISTORY.md263 … exceed the limit on bytes pending writeback specified by `bytes_per_sync` or `wal_bytes_per_sync`.
566 …n_readahead_size`, and `DBOptions::wal_bytes_per_sync` can now be changed dynamically, `DBOptions:…
923 … files. If you want to use this option to sync WAL in the background, please use wal_bytes_per_sync
/rocksdb-6.9/db/db_impl/
Ddb_impl.cc1079 wal_changed = mutable_db_options_.wal_bytes_per_sync != in SetDBOptions()
1080 new_options.wal_bytes_per_sync; in SetDBOptions()