| /rocksdb-6.9/java/src/test/java/org/rocksdb/ |
| D | ColumnFamilyOptionsTest.java | 42 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()
|
| D | DBOptionsTest.java | 41 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()
|
| D | RocksDBTest.java | 1504 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()
|
| D | ColumnFamilyTest.java | 468 public void properties() throws RocksDBException { in properties() method in ColumnFamilyTest
|
| /rocksdb-6.9/table/ |
| D | sst_file_writer_collectors.h | 46 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()
|
| D | sst_file_reader_test.cc | 91 auto properties = reader.GetTableProperties(); in CheckFile() local 92 ASSERT_TRUE(properties); in CheckFile() 93 auto& user_properties = properties->user_collected_properties; in CheckFile()
|
| D | meta_blocks.h | 122 TableProperties** properties,
|
| D | meta_blocks.cc | 359 TableProperties** properties, in ReadTableProperties() argument 403 ioptions, properties, false /* verify_checksum */, in ReadTableProperties()
|
| /rocksdb-6.9/db/ |
| D | table_properties_collector_test.cc | 68 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()
|
| D | table_properties_collector.cc | 52 UserCollectedProperties* properties) { in Finish() argument 53 return collector_->Finish(properties); in Finish()
|
| D | table_properties_collector.h | 21 virtual Status Finish(UserCollectedProperties* properties) = 0; 71 virtual Status Finish(UserCollectedProperties* properties) override;
|
| D | table_cache.cc | 558 std::shared_ptr<const TableProperties>* properties, in GetTableProperties() argument 564 *properties = table_reader->GetTableProperties(); in GetTableProperties() 577 *properties = table->GetTableProperties(); in GetTableProperties()
|
| D | table_cache.h | 152 std::shared_ptr<const TableProperties>* properties,
|
| D | db_properties_test.cc | 1082 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()
|
| D | listener_test.cc | 68 ROCKSDB_NAMESPACE::UserCollectedProperties* properties) override { in Finish() 69 properties->insert({"0", "1"}); in Finish()
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | ColumnFamilyOptions.java | 98 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()
|
| D | DBOptions.java | 83 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/ |
| D | block_based_table_builder.cc | 252 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/ |
| D | table_properties.h | 110 virtual Status Finish(UserCollectedProperties* properties) = 0;
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2019-08-15-unordered-write.markdown | 19 …ur-own-write property, neither atomic reads nor the immutable snapshot properties are provided any…
|
| D | 2015-02-27-write-batch-with-index.markdown | 10 …r storage engines. RocksDB can help with guaranteeing some of the ACID properties: durability is g…
|
| D | 2014-09-12-cuckoo.markdown | 61 We noticed the following two sub-optimal properties in original Cuckoo implementation:
|
| D | 2015-10-27-getthreadlist.markdown | 184 // A list of properties that describe some details about the current
|
| D | 2014-05-14-lock.markdown | 82 What all ACID properties is supported by RocksDB, only durability irrespective of single or batch w…
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 110 … 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… 859 …properties" 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
|