Home
last modified time | relevance | path

Searched refs:db_name (Results 1 – 21 of 21) sorted by relevance

/rocksdb-6.9/db/
Devent_helpers.cc27 const std::string& db_name, const std::string& cf_name, in NotifyTableFileCreationStarted() argument
30 info.db_name = db_name; in NotifyTableFileCreationStarted()
71 const std::string& db_name, const std::string& cf_name, in LogAndNotifyTableFileCreationFinished() argument
147 info.db_name = db_name; in LogAndNotifyTableFileCreationFinished()
160 (void)db_name; in LogAndNotifyTableFileCreationFinished()
188 info.db_name = dbname; in LogAndNotifyTableFileDeletion()
Devent_helpers.h25 const std::string& db_name, const std::string& cf_name,
35 const std::string& db_name, const std::string& cf_name,
42 const Status& status, const std::string& db_name,
Dlistener_test.cc221 ASSERT_GT(info.db_name.size(), 0U); in OnTableFileCreated()
262 ASSERT_EQ(prev_fc_info_.db_name, db->GetName()); in OnFlushCompleted()
739 ASSERT_GT(info.db_name.size(), 0U); in OnTableFileCreationStarted()
750 ASSERT_GT(info.db_name.size(), 0U); in OnTableFileCreated()
/rocksdb-6.9/utilities/
Denv_librados.md4 std::string db_name = "test_db";
8 options.env = EnvLibrados(db_name, config_path);
12 …read/write operation to the RADOS cluster assigned by config_path. Default pool is db_name+"_pool".
19 - wal_pool. Corresponding pool name for WAL files. Default value is db_name+"_wal_pool"
23 db_name = "test_db";
24 db_pool = db_name+"_pool";
26 wal_pool = db_name+"_wal_pool";
28 env_ = new EnvLibrados(db_name, config, db_pool, wal_dir, wal_pool, write_buffer_size);
Denv_librados_test.cc53 const std::string db_name = "env_librados_test_db"; member in ROCKSDB_NAMESPACE::EnvLibradosTest
54 const std::string db_pool = db_name + "_pool";
62 : env_(new EnvLibrados(db_name, config, db_pool)) { in EnvLibradosTest()
736 const std::string db_name = "env_librados_test_db"; member in ROCKSDB_NAMESPACE::EnvLibradosMutipoolTest
737 const std::string db_pool = db_name + "_pool";
739 const std::string wal_pool = db_name + "_wal_pool";
748 …env_ = new EnvLibrados(client_name, cluster_name, flags, db_name, config, db_pool, wal_dir, wal_po… in EnvLibradosMutipoolTest()
Denv_librados.cc589 EnvLibrados::EnvLibrados(const std::string& db_name, in EnvLibrados() argument
595 db_name, in EnvLibrados()
618 const std::string& db_name, in EnvLibrados() argument
628 _db_name(db_name), in EnvLibrados()
/rocksdb-6.9/table/
Dsst_file_reader_test.cc142 std::string db_name = test::PerThreadDBPath("test_db"); in TEST_F() local
144 ASSERT_OK(DB::Open(options, db_name, &db)); in TEST_F()
168 CheckFile(db_name + ingested_file, keys, true /* check_global_seqno */); in TEST_F()
171 ASSERT_OK(DestroyDB(db_name, options)); in TEST_F()
/rocksdb-6.9/monitoring/
Dthread_status_updater.h56 db_key(_db_key), db_name(_db_name), cf_name(_cf_name) {} in ConstantColumnFamilyInfo()
58 const std::string db_name; member
177 const void* db_key, const std::string& db_name,
Dthread_status_updater.cc198 iter != cf_info_map_.end() ? iter->second.db_name : "", in GetThreadList()
219 const std::string& db_name, in NewColumnFamilyInfo() argument
227 std::make_tuple(db_key, db_name, cf_name)); in NewColumnFamilyInfo()
/rocksdb-6.9/db_stress_tool/
Ddb_stress_listener.h17 DbStressListener(const std::string& db_name, in DbStressListener() argument
20 : db_name_(db_name), in DbStressListener()
65 assert(info.db_name == db_name_); in OnTableFileCreated()
/rocksdb-6.9/util/
Dthread_list_test.cc20 const void* db_key, const std::string& db_name, in SimulatedBackgroundTask() argument
26 : db_key_(db_key), db_name_(db_name), in SimulatedBackgroundTask()
152 thread_status.db_name == "running") { in TEST_F()
176 thread_status.db_name == "running") { in TEST_F()
/rocksdb-6.9/include/rocksdb/
Dthread_status.h115 db_name(_db_name), in ThreadStatus()
136 const std::string db_name; member
Dlistener.h38 std::string db_name; member
142 std::string db_name; member
/rocksdb-6.9/include/rocksdb/utilities/
Denv_librados.h135 explicit EnvLibrados(const std::string& db_name,
143 const std::string& db_name, const std::string& config_path,
/rocksdb-6.9/tools/rdb/
DAPI.md14 # db_name (string) - Location of the database (inside the
22 db_obj.(db_name, column_families = [])
/rocksdb-6.9/tools/
Dldb_cmd_test.cc170 FileChecksumTestHelper(Options& options, DB* db, std::string db_name) in FileChecksumTestHelper() argument
171 : options_(options), db_(db), dbname_(db_name) {} in FileChecksumTestHelper()
Ddb_bench_tool.cc4106 void OpenDb(Options options, const std::string& db_name, in OpenDb() argument
4147 s = DB::OpenForReadOnly(options, db_name, column_families, in OpenDb()
4163 s = TransactionDB::Open(options, txn_db_options, db_name, in OpenDb()
4169 s = DB::Open(options, db_name, column_families, &db->cfh, &db->db); in OpenDb()
4172 s = DB::Open(options, db_name, column_families, &db->cfh, &db->db); in OpenDb()
4180 s = DB::OpenForReadOnly(options, db_name, &db->db); in OpenDb()
4182 s = OptimisticTransactionDB::Open(options, db_name, &db->opt_txn_db); in OpenDb()
4194 s = CreateLoggerFromOptions(db_name, options, &options.info_log); in OpenDb()
4196 s = TransactionDB::Open(options, txn_db_options, db_name, &ptr); in OpenDb()
4213 s = blob_db::BlobDB::Open(options, blob_db_options, db_name, &ptr); in OpenDb()
[all …]
Dldb_cmd_impl.h130 DBLoaderCommand(std::string& db_name, std::vector<std::string>& args);
/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown167 const std::string db_name;
/rocksdb-6.9/java/rocksjni/
Dportal.h6648 JniUtil::toJavaString(env, &(thread_status->db_name), true); in construct()
/rocksdb-6.9/
DHISTORY.md234 …s is only enabled if DBOptions::wal_dir is not set, or explicitly set to db_name passed to DB::Ope…