Home
last modified time | relevance | path

Searched refs:table_properties (Results 1 – 25 of 855) sorted by relevance

12345678910>>...35

/rocksdb-6.9/db/
Devent_helpers.cc90 << table_properties.index_size << "index_partitions" in LogAndNotifyTableFileCreationFinished()
92 << table_properties.top_level_index_size in LogAndNotifyTableFileCreationFinished()
94 << table_properties.index_key_is_user_key in LogAndNotifyTableFileCreationFinished()
97 << table_properties.filter_size << "raw_key_size" in LogAndNotifyTableFileCreationFinished()
99 << SafeDivide(table_properties.raw_key_size, in LogAndNotifyTableFileCreationFinished()
100 table_properties.num_entries) in LogAndNotifyTableFileCreationFinished()
103 << SafeDivide(table_properties.raw_value_size, in LogAndNotifyTableFileCreationFinished()
104 table_properties.num_entries) in LogAndNotifyTableFileCreationFinished()
106 << "num_entries" << table_properties.num_entries in LogAndNotifyTableFileCreationFinished()
124 << table_properties.file_creation_time; in LogAndNotifyTableFileCreationFinished()
[all …]
Dlistener_test.cc140 auto it = ci.table_properties.find(fn); in OnCompactionCompleted()
141 ASSERT_NE(it, ci.table_properties.end()); in OnCompactionCompleted()
225 ASSERT_GT(info.table_properties.data_size, 0U); in OnTableFileCreated()
226 ASSERT_GT(info.table_properties.raw_key_size, 0U); in OnTableFileCreated()
227 ASSERT_GT(info.table_properties.raw_value_size, 0U); in OnTableFileCreated()
228 ASSERT_GT(info.table_properties.num_data_blocks, 0U); in OnTableFileCreated()
229 ASSERT_GT(info.table_properties.num_entries, 0U); in OnTableFileCreated()
755 ASSERT_GT(info.table_properties.data_size, 0U); in OnTableFileCreated()
756 ASSERT_GT(info.table_properties.raw_key_size, 0U); in OnTableFileCreated()
757 ASSERT_GT(info.table_properties.raw_value_size, 0U); in OnTableFileCreated()
[all …]
Dbuilder.cc86 TableProperties* table_properties, int level, const uint64_t creation_time, in BuildTable() argument
203 if (table_properties) { in BuildTable()
204 *table_properties = tp; in BuildTable()
/rocksdb-6.9/tools/
Dsst_dump_tool.cc280 TableProperties* table_properties = nullptr; in ReadTableProperties() local
284 table_properties_.reset(table_properties); in ReadTableProperties()
415 std::shared_ptr<const TableProperties>* table_properties) { in ReadTableProperties() argument
420 *table_properties = table_reader_->GetTableProperties(); in ReadTableProperties()
722 const ROCKSDB_NAMESPACE::TableProperties* table_properties; in Run() local
730 table_properties = dumper.GetInitTableProperties(); in Run()
732 table_properties = table_properties_from_reader.get(); in Run()
734 if (table_properties != nullptr) { in Run()
744 total_data_block_size += table_properties->data_size; in Run()
745 total_index_block_size += table_properties->index_size; in Run()
[all …]
/rocksdb-6.9/table/block_based/
Dblock_based_table_reader.cc732 TableProperties** table_properties) { in TryReadPropertiesWithGlobalSeqno() argument
733 assert(table_properties != nullptr); in TryReadPropertiesWithGlobalSeqno()
749 (*table_properties) in TryReadPropertiesWithGlobalSeqno()
792 if (table_properties != nullptr) { in ReadPropertiesBlock()
818 if (rep_->table_properties) { in ReadPropertiesBlock()
825 if (rep_->table_properties) { in ReadPropertiesBlock()
1038 return rep_->table_properties; in GetTableProperties()
2793 delete table_properties; in VerifyChecksumInMetaBlocks()
2918 if (rep_->table_properties) { in ApproximateOffsetOf()
3092 table_properties = rep_->table_properties.get(); in DumpTable()
[all …]
Dblock_based_table_reader.h404 TableProperties** table_properties);
525 std::shared_ptr<const TableProperties> table_properties; member
576 return table_properties in cf_id_for_tracing()
577 ? table_properties->column_family_id in cf_id_for_tracing()
583 return table_properties ? table_properties->column_family_name in cf_name_for_tracing()
Ddata_block_footer.cc.d14 include/rocksdb/table_properties.h include/rocksdb/types.h \
/rocksdb-6.9/include/rocksdb/
Dlistener.h53 : table_properties(prop) {} in TableFileCreationInfo()
57 TableProperties table_properties; member
196 TableProperties table_properties; member
248 TablePropertiesCollection table_properties; member
288 TableProperties table_properties; member
/rocksdb-6.9/table/
Dtable_properties.cc.d1 table/table_properties.cc.d table/table_properties.o: \
2 table/table_properties.cc include/rocksdb/table_properties.h \
Dmeta_blocks.cc197 TableProperties** table_properties, bool verify_checksum, in ReadProperties() argument
202 assert(table_properties); in ReadProperties()
337 *table_properties = new_table_properties; in ReadProperties()
399 TableProperties table_properties; in ReadTableProperties() local
/rocksdb-6.9/db_stress_tool/
Ddb_stress_listener.h72 assert(info.table_properties.data_size > 0 || in OnTableFileCreated()
73 info.table_properties.num_range_deletions > 0); in OnTableFileCreated()
74 assert(info.table_properties.raw_key_size > 0); in OnTableFileCreated()
75 assert(info.table_properties.num_entries > 0); in OnTableFileCreated()
/rocksdb-6.9/java/rocksjni/
Dtable_filter_jnicallback.cc30 [this](const ROCKSDB_NAMESPACE::TableProperties& table_properties) { in TableFilterJniCallback() argument
37 thread_env, table_properties); in TableFilterJniCallback()
Dportal.h5981 env, table_properties.column_family_name); in fromCppTableProperties()
5988 env, &table_properties.filter_policy_name, true); in fromCppTableProperties()
5996 env, &table_properties.comparator_name, true); in fromCppTableProperties()
6005 env, &table_properties.merge_operator_name, true); in fromCppTableProperties()
6039 env, &table_properties.compression_name, true); in fromCppTableProperties()
6069 env, &table_properties.readable_properties); in fromCppTableProperties()
6085 env, &table_properties.properties_offsets); in fromCppTableProperties()
6101 static_cast<jlong>(table_properties.data_size), in fromCppTableProperties()
6102 static_cast<jlong>(table_properties.index_size), in fromCppTableProperties()
6107 static_cast<jlong>(table_properties.filter_size), in fromCppTableProperties()
[all …]
/rocksdb-6.9/tools/advisor/test/input_files/
DLOG-110 …": "table_file_creation", "file_number": 10, "file_size": 1890434, "table_properties": {"data_size…
15 …": "table_file_creation", "file_number": 23, "file_size": 1893200, "table_properties": {"data_size…
20 …": "table_file_creation", "file_number": 84, "file_size": 1890780, "table_properties": {"data_size…
DLOG-010 …": "table_file_creation", "file_number": 10, "file_size": 1890434, "table_properties": {"data_size…
15 …": "table_file_creation", "file_number": 23, "file_size": 1893200, "table_properties": {"data_size…
20 …": "table_file_creation", "file_number": 84, "file_size": 1890780, "table_properties": {"data_size…
/rocksdb-6.9/utilities/table_properties_collectors/
Dcompact_on_deletion_collector.cc.d6 include/rocksdb/table_properties.h include/rocksdb/status.h \
/rocksdb-6.9/port/
Dport_posix.cc.d10 include/rocksdb/table_properties.h include/rocksdb/types.h \
/rocksdb-6.9/util/
Dstatus.cc.d9 include/rocksdb/table_properties.h include/rocksdb/types.h \
Dcomparator.cc.d10 include/rocksdb/table_properties.h include/rocksdb/types.h \
Dtimer_queue_test.cc.d11 include/rocksdb/table_properties.h include/rocksdb/types.h \
Dstring_util.cc.d10 include/rocksdb/table_properties.h include/rocksdb/types.h \
/rocksdb-6.9/table/plain/
Dplain_table_reader.cc100 const TableProperties* table_properties, in PlainTableReader() argument
105 user_key_len_(static_cast<uint32_t>(table_properties->fixed_key_len)), in PlainTableReader()
110 static_cast<uint32_t>(table_properties->data_size)), in PlainTableReader()
/rocksdb-6.9/monitoring/
Dhistogram.cc.d11 include/rocksdb/table_properties.h include/rocksdb/types.h \
Dperf_level.cc.d11 include/rocksdb/table_properties.h include/rocksdb/types.h \
/rocksdb-6.9/test_util/
Dsync_point.cc.d11 include/rocksdb/table_properties.h include/rocksdb/types.h \

12345678910>>...35