| /rocksdb-6.9/include/rocksdb/ |
| D | db.h | 1365 virtual Status IngestExternalFile( 1370 virtual Status IngestExternalFile( in IngestExternalFile() function 1373 return IngestExternalFile(DefaultColumnFamily(), external_files, options); in IngestExternalFile() 1429 return IngestExternalFile(column_family, file_path_list, ifo); 1440 return IngestExternalFile(DefaultColumnFamily(), file_path_list, ifo); 1452 return IngestExternalFile(column_family, {file_path}, ifo); 1463 return IngestExternalFile(DefaultColumnFamily(), {file_path}, ifo); 1480 return IngestExternalFile(column_family, external_files, ifo); 1495 return IngestExternalFile(DefaultColumnFamily(), external_files, ifo); 1506 return IngestExternalFile(column_family, {file_info->file_path}, ifo); [all …]
|
| /rocksdb-6.9/db/ |
| D | external_sst_file_basic_test.cc | 41 return db_->IngestExternalFile(files, opts); in DeprecatedAddFile() 115 s = db_->IngestExternalFile({file_path}, ifo); in GenerateAndAddExternalFile() 739 ASSERT_FALSE(db_->IngestExternalFile({file_name}, ingest_opt).ok()); in TEST_F() 773 ASSERT_OK(db_->IngestExternalFile({file_name}, ingest_opt)); in TEST_F() 786 ASSERT_OK(db_->IngestExternalFile({file_name}, ingest_opt)); in TEST_F() 830 ASSERT_OK(db_->IngestExternalFile({file}, ifo)); in TEST_F() 1043 s = db_->IngestExternalFile({file_path}, ifo); in TEST_P() 1107 s = db_->IngestExternalFile({file_path}, ifo); in TEST_P() 1137 ASSERT_OK(db_->IngestExternalFile(files, ifo)); in TEST_F()
|
| D | external_sst_file_test.cc | 182 s = db_->IngestExternalFile(cfh, {file_path}, ifo); in GenerateAndAddExternalFile() 184 s = db_->IngestExternalFile({file_path}, ifo); in GenerateAndAddExternalFile() 277 return db_->IngestExternalFile(files, opts); in DeprecatedAddFile() 1386 Status s = db_->IngestExternalFile({"non_existing_file"}, in TEST_F() 2063 ASSERT_NOK(db_->IngestExternalFile(handles_[0], {cf1_sst}, ifo)); in TEST_F() 2065 ASSERT_NOK(db_->IngestExternalFile(handles_[2], {cf1_sst}, ifo)); in TEST_F() 2067 ASSERT_OK(db_->IngestExternalFile(handles_[1], {cf1_sst}, ifo)); in TEST_F() 2077 ASSERT_OK(db_->IngestExternalFile(handles_[1], {unknown_sst}, ifo)); in TEST_F() 2079 ASSERT_OK(db_->IngestExternalFile(handles_[2], {unknown_sst}, ifo)); in TEST_F() 2123 const Status s = db_->IngestExternalFile({file_path}, ifo); in TEST_P() [all …]
|
| D | compacted_db_impl.h | 85 using DB::IngestExternalFile; 86 virtual Status IngestExternalFile( in IngestExternalFile() function
|
| D | c.cc | 3515 SaveError(errptr, db->rep->IngestExternalFile(files, opt->rep)); in rocksdb_ingest_external_file() 3526 SaveError(errptr, db->rep->IngestExternalFile(handle->rep, files, opt->rep)); in rocksdb_ingest_external_file_cf()
|
| D | db_test2.cc | 3862 ASSERT_OK(db_->IngestExternalFile(handle, {external_file1, external_file3}, in TEST_F() 3873 ASSERT_OK(db_->IngestExternalFile(handle, {external_file2}, in TEST_F()
|
| D | db_compaction_test.cc | 5015 Status s = db_->IngestExternalFile({sst_file_path}, ifo); in TEST_P() 5065 ASSERT_OK(db->IngestExternalFile({info.file_path}, ingest_opt)); in IngestOneKeyValue()
|
| D | db_test.cc | 2713 using DB::IngestExternalFile; 2714 Status IngestExternalFile( in IngestExternalFile() function in ROCKSDB_NAMESPACE::ModelDB
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl_readonly.h | 114 using DB::IngestExternalFile; 115 virtual Status IngestExternalFile( in IngestExternalFile() function
|
| D | db_impl_secondary.h | 199 using DB::IngestExternalFile; 200 Status IngestExternalFile( in IngestExternalFile() function
|
| D | db_impl.h | 404 using DB::IngestExternalFile; 405 virtual Status IngestExternalFile(
|
| D | db_impl.cc | 3967 Status DBImpl::IngestExternalFile( in IngestExternalFile() function in ROCKSDB_NAMESPACE::DBImpl
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-01-06-rocksdb-5-0-1-released.markdown | 19 … DB::AddFile() is deprecated and is replaced with DB::IngestExternalFile(). DB::IngestExternalFile…
|
| D | 2017-02-07-rocksdb-5-1-2-released.markdown | 10 * Added EventListener::OnExternalFileIngested which will be called when IngestExternalFile() add a …
|
| D | 2018-02-05-rocksdb-5-10-2-released.markdown | 20 * Fix performance issue in `IngestExternalFile()` affecting databases with large number of SST file…
|
| D | 2017-07-25-rocksdb-5-6-1-released.markdown | 19 * `DB::IngestExternalFile()` now supports ingesting files into a database containing range deletion…
|
| D | 2017-02-17-bulkoad-ingest-sst-file.markdown | 40 s = db_->IngestExternalFile({"/home/usr/file1.sst"}, IngestExternalFileOptions());
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | stackable_db.h | 120 using DB::IngestExternalFile; 121 virtual Status IngestExternalFile( in IngestExternalFile() function 125 return db_->IngestExternalFile(column_family, external_files, options); in IngestExternalFile()
|
| /rocksdb-6.9/table/ |
| D | sst_file_reader_test.cc | 151 ASSERT_OK(db->IngestExternalFile({sst_name_}, ingest_options)); in TEST_F()
|
| /rocksdb-6.9/db_stress_tool/ |
| D | no_batched_ops_stress.cc | 570 s = db_->IngestExternalFile(column_families_[column_family], in TestIngestExternalFile()
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 549 * Fix performance issue in `IngestExternalFile()` affecting databases with large number of SST file… 626 * `DB::IngestExternalFile()` now supports ingesting files into a database containing range deletion… 695 * Added EventListener::OnExternalFileIngested which will be called when IngestExternalFile() add a … 713 * DB::AddFile() is deprecated and is replaced with DB::IngestExternalFile(). DB::IngestExternalFile…
|
| /rocksdb-6.9/java/rocksjni/ |
| D | rocksjni.cc | 3051 db->IngestExternalFile(column_family, file_path_list, *ifo); in Java_org_rocksdb_RocksDB_ingestExternalFile()
|
| /rocksdb-6.9/tools/ |
| D | ldb_cmd.cc | 3366 Status status = db_->IngestExternalFile(cfh, {input_sst_path_}, ifo); in DoCommand()
|