Home
last modified time | relevance | path

Searched refs:creation_time (Results 1 – 23 of 23) sorted by relevance

/rocksdb-6.9/db/
Dbuilder.cc52 int level, const bool skip_filters, const uint64_t creation_time, in NewTableBuilder() argument
63 creation_time, oldest_key_time, target_file_size, in NewTableBuilder()
86 TableProperties* table_properties, int level, const uint64_t creation_time, in BuildTable() argument
144 false /* skip_filters */, creation_time, oldest_key_time, in BuildTable()
Dbuilder.h52 const bool skip_filters = false, const uint64_t creation_time = 0,
84 const uint64_t creation_time = 0, const uint64_t oldest_key_time = 0,
Devent_helpers.cc122 << table_properties.creation_time << "oldest_key_time" in LogAndNotifyTableFileCreationFinished()
Dversion_edit.h196 return fd.table_reader->GetTableProperties()->creation_time; in TryGetOldestAncesterTime()
Drepair.cc506 t->meta.oldest_ancester_time = props->creation_time; in ScanTable()
Dversion_set.h693 void GetCreationTimeOfOldestFile(uint64_t* creation_time);
Dversion_set.cc1468 void Version::GetCreationTimeOfOldestFile(uint64_t* creation_time) { in GetCreationTimeOfOldestFile() argument
1475 *creation_time = 0; in GetCreationTimeOfOldestFile()
1483 *creation_time = oldest_time; in GetCreationTimeOfOldestFile()
Ddb_test.cc6551 uint64_t creation_time; in TEST_F() local
6552 Status s1 = dbfull()->GetCreationTimeOfOldestFile(&creation_time); in TEST_F()
6553 ASSERT_EQ(0, creation_time); in TEST_F()
Ddb_compaction_test.cc3910 props->creation_time = 0; in TEST_F()
/rocksdb-6.9/db/compaction/
Dcompaction_picker_fifo.cc74 uint64_t creation_time = f->TryGetFileCreationTime(); in PickTTLCompaction() local
75 if (creation_time == kUnknownFileCreationTime || in PickTTLCompaction()
76 creation_time >= (current_time - mutable_cf_options.ttl)) { in PickTTLCompaction()
/rocksdb-6.9/table/
Dtable_builder.h98 creation_time(_creation_time), in ioptions()
113 const uint64_t creation_time; member
Dmeta_blocks.cc94 Add(TablePropertiesNames::kCreationTime, props.creation_time); in AddTableProperty()
267 &new_table_properties->creation_time}, in ReadProperties()
Dtable_properties.cc163 AppendProperty(result, "creation time", creation_time, prop_delim, kv_delim); in ToString()
/rocksdb-6.9/table/block_based/
Dblock_based_table_builder.cc353 uint64_t creation_time = 0; member
407 creation_time(_creation_time), in Rep()
467 const uint64_t creation_time, const uint64_t oldest_key_time, in BlockBasedTableBuilder() argument
485 level_at_creation, column_family_name, creation_time, in BlockBasedTableBuilder()
971 rep_->props.creation_time = rep_->creation_time; in WritePropertiesBlock()
1073 Random64 generator{r->creation_time}; in EnterUnbuffered()
Dblock_based_table_builder.h52 const uint64_t creation_time = 0, const uint64_t oldest_key_time = 0,
Dblock_based_table_factory.cc229 table_builder_options.creation_time, in NewTableBuilder()
/rocksdb-6.9/include/rocksdb/
Dtable_properties.h185 uint64_t creation_time = 0; member
Ddb.h1311 virtual Status GetCreationTimeOfOldestFile(uint64_t* creation_time) = 0;
/rocksdb-6.9/include/rocksdb/utilities/
Dstackable_db.h391 uint64_t* creation_time) override { in GetCreationTimeOfOldestFile() argument
392 return db_->GetCreationTimeOfOldestFile(creation_time); in GetCreationTimeOfOldestFile()
/rocksdb-6.9/db/db_impl/
Ddb_impl.h377 uint64_t* creation_time) override;
Ddb_impl.cc4570 Status DBImpl::GetCreationTimeOfOldestFile(uint64_t* creation_time) { in GetCreationTimeOfOldestFile() argument
4591 *creation_time = oldest_time; in GetCreationTimeOfOldestFile()
/rocksdb-6.9/
DHISTORY.md78 * Fixed a bug where non-L0 compaction input files were not considered to compute the `creation_time
110 …anifest. If it is availalbe, this information will be used instead of creation_time and file_creat…
122 …key range so that it reaches the bottom level quickly on TTL expiry. `creation_time` table propert…
124 * Added an API GetCreationTimeOfOldestFile(uint64_t* creation_time) to get the file_creation_time o…
/rocksdb-6.9/java/rocksjni/
Dportal.h6118 static_cast<jlong>(table_properties.creation_time), in fromCppTableProperties()