Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 27) sorted by relevance

12

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DColumnFamilyOptionsTest.java42 Properties properties = new Properties(); in getColumnFamilyOptionsFromProps() local
43 properties.put("write_buffer_size", "112"); in getColumnFamilyOptionsFromProps()
44 properties.put("max_write_buffer_number", "13"); in getColumnFamilyOptionsFromProps()
47 getColumnFamilyOptionsFromProps(properties)) { in getColumnFamilyOptionsFromProps()
51 isEqualTo(properties.get("write_buffer_size")); in getColumnFamilyOptionsFromProps()
53 isEqualTo(properties.get("max_write_buffer_number")); in getColumnFamilyOptionsFromProps()
60 final Properties properties = new Properties(); in failColumnFamilyOptionsFromPropsWithIllegalValue() local
61 properties.put("tomato", "1024"); in failColumnFamilyOptionsFromPropsWithIllegalValue()
62 properties.put("burger", "2"); in failColumnFamilyOptionsFromPropsWithIllegalValue()
65 ColumnFamilyOptions.getColumnFamilyOptionsFromProps(properties)) { in failColumnFamilyOptionsFromPropsWithIllegalValue()
DDBOptionsTest.java41 final Properties properties = new Properties(); in getDBOptionsFromProps() local
42 properties.put("allow_mmap_reads", "true"); in getDBOptionsFromProps()
43 properties.put("bytes_per_sync", "13"); in getDBOptionsFromProps()
44 try(final DBOptions opt = DBOptions.getDBOptionsFromProps(properties)) { in getDBOptionsFromProps()
47 isEqualTo(properties.get("allow_mmap_reads")); in getDBOptionsFromProps()
49 isEqualTo(properties.get("bytes_per_sync")); in getDBOptionsFromProps()
56 final Properties properties = new Properties(); in failDBOptionsFromPropsWithIllegalValue() local
57 properties.put("tomato", "1024"); in failDBOptionsFromPropsWithIllegalValue()
58 properties.put("burger", "2"); in failDBOptionsFromPropsWithIllegalValue()
59 try(final DBOptions opt = DBOptions.getDBOptionsFromProps(properties)) { in failDBOptionsFromPropsWithIllegalValue()
DRocksDBTest.java1504 final Map<String, TableProperties> properties = in getPropertiesOfAllTables() local
1506 assertThat(properties).isNotNull(); in getPropertiesOfAllTables()
1533 final Map<String, TableProperties> properties = in getPropertiesOfTablesInRange() local
1536 assertThat(properties).isNotNull(); in getPropertiesOfTablesInRange()
DColumnFamilyTest.java468 public void properties() throws RocksDBException { in properties() method in ColumnFamilyTest
/rocksdb-6.9/table/
Dsst_file_writer_collectors.h46 virtual Status Finish(UserCollectedProperties* properties) override { in Finish() argument
50 properties->insert({ExternalSstFilePropertyNames::kVersion, version_val}); in Finish()
55 properties->insert({ExternalSstFilePropertyNames::kGlobalSeqno, seqno_val}); in Finish()
Dsst_file_reader_test.cc91 auto properties = reader.GetTableProperties(); in CheckFile() local
92 ASSERT_TRUE(properties); in CheckFile()
93 auto& user_properties = properties->user_collected_properties; in CheckFile()
Dmeta_blocks.h122 TableProperties** properties,
Dmeta_blocks.cc359 TableProperties** properties, in ReadTableProperties() argument
403 ioptions, properties, false /* verify_checksum */, in ReadTableProperties()
/rocksdb-6.9/db/
Dtable_properties_collector_test.cc68 Status Finish(UserCollectedProperties* properties) override { in Finish() argument
79 *properties = UserCollectedProperties{ in Finish()
134 Status Finish(UserCollectedProperties* properties) override { in Finish() argument
137 *properties = UserCollectedProperties{{"TablePropertiesTest", "Rocksdb"}, in Finish()
162 Status Finish(UserCollectedProperties* properties) override { in Finish() argument
165 *properties = UserCollectedProperties{{"TablePropertiesTest", "Rocksdb"}, in Finish()
Dtable_properties_collector.cc52 UserCollectedProperties* properties) { in Finish() argument
53 return collector_->Finish(properties); in Finish()
Dtable_properties_collector.h21 virtual Status Finish(UserCollectedProperties* properties) = 0;
71 virtual Status Finish(UserCollectedProperties* properties) override;
Dtable_cache.cc558 std::shared_ptr<const TableProperties>* properties, in GetTableProperties() argument
564 *properties = table_reader->GetTableProperties(); in GetTableProperties()
577 *properties = table->GetTableProperties(); in GetTableProperties()
Dtable_cache.h152 std::shared_ptr<const TableProperties>* properties,
Ddb_properties_test.cc1082 Status Finish(UserCollectedProperties* properties) override { in Finish() argument
1085 *properties = UserCollectedProperties{ in Finish()
1149 Status Finish(UserCollectedProperties* properties) override { in Finish() argument
1150 *properties = in Finish()
Dlistener_test.cc68 ROCKSDB_NAMESPACE::UserCollectedProperties* properties) override { in Finish()
69 properties->insert({"0", "1"}); in Finish()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DColumnFamilyOptions.java98 final Properties properties) { in getColumnFamilyOptionsFromProps() argument
99 if (properties == null || properties.size() == 0) { in getColumnFamilyOptionsFromProps()
105 for (final String name : properties.stringPropertyNames()){ in getColumnFamilyOptionsFromProps()
108 stringBuilder.append(properties.getProperty(name)); in getColumnFamilyOptionsFromProps()
DDBOptions.java83 final Properties properties) { in getDBOptionsFromProps() argument
84 if (properties == null || properties.size() == 0) { in getDBOptionsFromProps()
90 for (final String name : properties.stringPropertyNames()){ in getDBOptionsFromProps()
93 stringBuilder.append(properties.getProperty(name)); in getDBOptionsFromProps()
/rocksdb-6.9/table/block_based/
Dblock_based_table_builder.cc252 Status Finish(UserCollectedProperties* properties) override { in Finish() argument
255 properties->insert({BlockBasedTablePropertyNames::kIndexType, val}); in Finish()
256 properties->insert({BlockBasedTablePropertyNames::kWholeKeyFiltering, in Finish()
258 properties->insert({BlockBasedTablePropertyNames::kPrefixFiltering, in Finish()
/rocksdb-6.9/include/rocksdb/
Dtable_properties.h110 virtual Status Finish(UserCollectedProperties* properties) = 0;
/rocksdb-6.9/docs/_posts/
D2019-08-15-unordered-write.markdown19 …ur-own-write property, neither atomic reads nor the immutable snapshot properties are provided any…
D2015-02-27-write-batch-with-index.markdown10 …r storage engines. RocksDB can help with guaranteeing some of the ACID properties: durability is g…
D2014-09-12-cuckoo.markdown61 We noticed the following two sub-optimal properties in original Cuckoo implementation:
D2015-10-27-getthreadlist.markdown184 // A list of properties that describe some details about the current
D2014-05-14-lock.markdown82 What all ACID properties is supported by RocksDB, only durability irrespective of single or batch w…
/rocksdb-6.9/
DHISTORY.md110 … this information will be used instead of creation_time and file_creation_time in table properties.
322 * Enable properties block checksum verification for block-based tables.
421 * Fix a bug in misreporting the estimated partition index size in properties block.
438 * Write properties meta-block at the end of block-based table to save read-ahead IO.
464 * Add DB properties "rocksdb.block-cache-capacity", "rocksdb.block-cache-usage", "rocksdb.block-cac…
859properties" and "rocksdb.aggregated-table-properties-at-levelN", in which case it returns aggregat…
1037 * Add DB::GetIntProperty(), which returns DB properties that are integer as uint64_t.
1107 * Supports several more DB properties: compaction-pending, background-errors and cur-size-active-me…
1138 its metadata and (2) end user to collect and store properties they

12