| /rocksdb-6.9/ |
| D | CMakeCache.txt | 444 //ADVANCED property for variable: CMAKE_AR 507 //ADVANCED property for variable: CMAKE_C_FLAGS 517 //ADVANCED property for variable: CMAKE_DLLTOOL 586 //ADVANCED property for variable: CMAKE_LINKER 600 //ADVANCED property for variable: CMAKE_NM 604 //ADVANCED property for variable: CMAKE_OBJCOPY 606 //ADVANCED property for variable: CMAKE_OBJDUMP 610 //ADVANCED property for variable: CMAKE_RANLIB 612 //ADVANCED property for variable: CMAKE_READELF 640 //ADVANCED property for variable: CMAKE_STRIP [all …]
|
| D | HISTORY.md | 429 * The "rocksdb.num.entries" table property no longer counts range deletion tombstones as entries. 435 * Add a new table property, "rocksdb.num.range-deletions", which counts the number of range deletio… 491 * Add "rocksdb.live-sst-files-size" DB property to return total bytes of all SST files belong to th… 570 * Add a new db property "rocksdb.estimate-oldest-key-time" to return oldest data timestamp. The pro… 601 * DB property "rocksdb.sstables" now prints keys in hex form. 604 … information can be accessed through DB::GetColumnFamilyMetaData or "rocksdb.sstables" DB property. 776 * Expose estimate of per-level compression ratio via DB property: "rocksdb.compression-ratio-at-lev… 792 * Add monotonically increasing counter (DB property "rocksdb.current-super-version-number") that in… 1007 * Add identity_as_first_hash property to CuckooTable. SST file needs to be rebuilt to be opened by … 1036 * Add DB property rocksdb.estimate-num-keys, estimated number of live keys in DB. [all …]
|
| /rocksdb-6.9/.circleci/ |
| D | config.yml | 43 msbuild.exe Snappy.sln -maxCpuCount -property:Configuration=Debug -property:Platform=x64 51 … msbuild.exe build/rocksdb.sln -maxCpuCount -property:Configuration=Debug -property:Platform=x64
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | stackable_db.h | 205 const Slice& property, std::string* value) override { in GetProperty() argument 206 return db_->GetProperty(column_family, property, value); in GetProperty() 209 ColumnFamilyHandle* column_family, const Slice& property, in GetMapProperty() argument 211 return db_->GetMapProperty(column_family, property, value); in GetMapProperty() 216 const Slice& property, uint64_t* value) override { in GetIntProperty() argument 217 return db_->GetIntProperty(column_family, property, value); in GetIntProperty() 221 virtual bool GetAggregatedIntProperty(const Slice& property, in GetAggregatedIntProperty() argument 223 return db_->GetAggregatedIntProperty(property, value); in GetAggregatedIntProperty()
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | RocksDB.java | 2794 final String property) throws RocksDBException { in getProperty() argument 2797 property, property.length()); in getProperty() 2824 return getProperty(null, property); in getProperty() 2839 return getMapProperty(null, property); in getMapProperty() 2858 property, property.length()); in getMapProperty() 2884 return getLongProperty(null, property); in getLongProperty() 2913 final String property) throws RocksDBException { in getLongProperty() argument 2916 property, property.length()); in getLongProperty() 2952 public long getAggregatedLongProperty(final String property) in getAggregatedLongProperty() argument 2954 return getAggregatedLongProperty(nativeHandle_, property, in getAggregatedLongProperty() [all …]
|
| /rocksdb-6.9/include/rocksdb/ |
| D | db.h | 921 const Slice& property, std::string* value) = 0; 922 virtual bool GetProperty(const Slice& property, std::string* value) { in GetProperty() argument 923 return GetProperty(DefaultColumnFamily(), property, value); in GetProperty() 926 const Slice& property, 928 virtual bool GetMapProperty(const Slice& property, in GetMapProperty() argument 930 return GetMapProperty(DefaultColumnFamily(), property, value); in GetMapProperty() 970 const Slice& property, uint64_t* value) = 0; 971 virtual bool GetIntProperty(const Slice& property, uint64_t* value) { in GetIntProperty() argument 972 return GetIntProperty(DefaultColumnFamily(), property, value); in GetIntProperty() 984 virtual bool GetAggregatedIntProperty(const Slice& property,
|
| /rocksdb-6.9/tools/ |
| D | reduce_levels_test.cc | 71 std::string property; in FilesOnLevel() local 73 "rocksdb.num-files-at-level" + NumberToString(level), &property)); in FilesOnLevel() 74 return atoi(property.c_str()); in FilesOnLevel()
|
| D | ldb_cmd.cc | 2028 std::string property; in DoCommand() local 2033 &property); in DoCommand() 2037 snprintf(buf, sizeof(buf), "%s%s", (i ? "," : ""), property.c_str()); in DoCommand() 2055 &property); in DoCommand() 2059 snprintf(buf, sizeof(buf), "%s%s", (i ? "," : ""), property.c_str()); in DoCommand() 2062 num_files = atoi(property.c_str()); in DoCommand()
|
| /rocksdb-6.9/db/ |
| D | internal_stats.cc | 183 std::pair<Slice, Slice> GetPropertyNameAndArg(const Slice& property) { in GetPropertyNameAndArg() argument 184 Slice name = property, arg = property; in GetPropertyNameAndArg() 186 while (sfx_len < property.size() && in GetPropertyNameAndArg() 187 isdigit(property[property.size() - sfx_len - 1])) { in GetPropertyNameAndArg() 191 arg.remove_prefix(property.size() - sfx_len); in GetPropertyNameAndArg() 491 const DBPropertyInfo* GetPropertyInfo(const Slice& property) { in GetPropertyInfo() argument 492 std::string ppt_name = GetPropertyNameAndArg(property).first.ToString(); in GetPropertyInfo() 501 const Slice& property, in GetStringProperty() argument 505 Slice arg = GetPropertyNameAndArg(property).second; in GetStringProperty()
|
| D | db_test_util.cc | 1029 std::string property; in NumTableFilesAtLevel() local 1033 "rocksdb.num-files-at-level" + NumberToString(level), &property)); in NumTableFilesAtLevel() 1037 &property)); in NumTableFilesAtLevel() 1039 return atoi(property.c_str()); in NumTableFilesAtLevel() 1043 std::string property; in CompressionRatioAtLevel() local 1048 &property)); in CompressionRatioAtLevel() 1053 &property)); in CompressionRatioAtLevel() 1055 return std::stod(property); in CompressionRatioAtLevel() 1172 std::string property; in DumpSSTableList() local 1173 db_->GetProperty("rocksdb.sstables", &property); in DumpSSTableList() [all …]
|
| D | cuckoo_table_db_test.cc | 88 std::string property; in NumTableFilesAtLevel() local 90 "rocksdb.num-files-at-level" + NumberToString(level), &property)); in NumTableFilesAtLevel() 91 return atoi(property.c_str()); in NumTableFilesAtLevel()
|
| D | corruption_test.cc | 233 std::string property; in Property() local 235 if (db_->GetProperty(name, &property) && in Property() 236 sscanf(property.c_str(), "%d", &result) == 1) { in Property()
|
| D | internal_stats.h | 54 extern const DBPropertyInfo* GetPropertyInfo(const Slice& property); 383 const Slice& property, std::string* value); 386 const Slice& property,
|
| D | plain_table_db_test.cc | 224 std::string property; in NumTableFilesAtLevel() local 226 "rocksdb.num-files-at-level" + NumberToString(level), &property)); in NumTableFilesAtLevel() 227 return atoi(property.c_str()); in NumTableFilesAtLevel()
|
| D | db_properties_test.cc | 367 std::string property; in TEST_F() local 368 db_->GetProperty(DB::Properties::kAggregatedTableProperties, &property); in TEST_F() 370 ParseTablePropertiesString(property, &output_tp); in TEST_F()
|
| /rocksdb-6.9/java/rocksjni/ |
| D | rocksjni.cc | 2119 if (property == nullptr) { in Java_org_rocksdb_RocksDB_getProperty() 2123 ROCKSDB_NAMESPACE::Slice property_name(property, jproperty_len); in Java_org_rocksdb_RocksDB_getProperty() 2136 env->ReleaseStringUTFChars(jproperty, property); in Java_org_rocksdb_RocksDB_getProperty() 2156 if (property == nullptr) { in Java_org_rocksdb_RocksDB_getMapProperty() 2160 ROCKSDB_NAMESPACE::Slice property_name(property, jproperty_len); in Java_org_rocksdb_RocksDB_getMapProperty() 2173 env->ReleaseStringUTFChars(jproperty, property); in Java_org_rocksdb_RocksDB_getMapProperty() 2193 if (property == nullptr) { in Java_org_rocksdb_RocksDB_getLongProperty() 2197 ROCKSDB_NAMESPACE::Slice property_name(property, jproperty_len); in Java_org_rocksdb_RocksDB_getLongProperty() 2210 env->ReleaseStringUTFChars(jproperty, property); in Java_org_rocksdb_RocksDB_getLongProperty() 2241 if (property == nullptr) { in Java_org_rocksdb_RocksDB_getAggregatedLongProperty() [all …]
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2016-07-26-rocksdb-4-8-released.markdown | 16 …* Expose estimate of per-level compression ratio via DB property: "rocksdb.compression-ratio-at-le… 43 …* Add monotonically increasing counter (DB property "rocksdb.current-super-version-number") that i…
|
| D | 2015-11-16-analysis-file-read-latency-by-level.markdown | 16 …tency for each level. Users can retrieve the information by querying DB property “rocksdb.stats” (… 162 …, you should be able to get the value from `RocksDB.getProperty()` with property `rocksdb.dbstats`…
|
| D | 2019-08-15-unordered-write.markdown | 19 …default guarantees of RocksDB. While it still gives read-your-own-write property, neither atomic r…
|
| D | 2017-08-25-flushwal.markdown | 26 …rage WAL flush after each individual commit. MyRocks benefits from this property, disables automat…
|
| D | 2015-10-27-getthreadlist.markdown | 118 …4 bytes. This indicates the compaction is about to complete. The stage property indicates which c…
|
| /rocksdb-6.9/db/compaction/ |
| D | compaction_job_stats_test.cc | 270 std::string property; in NumTableFilesAtLevel() local 274 "rocksdb.num-files-at-level" + NumberToString(level), &property)); in NumTableFilesAtLevel() 278 &property)); in NumTableFilesAtLevel() 280 return atoi(property.c_str()); in NumTableFilesAtLevel()
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl.cc | 2849 const Slice& property, std::string* value) { in GetProperty() argument 2850 const DBPropertyInfo* property_info = GetPropertyInfo(property); in GetProperty() 2865 return cfd->internal_stats()->GetStringProperty(*property_info, property, in GetProperty() 2882 const Slice& property, in GetMapProperty() argument 2884 const DBPropertyInfo* property_info = GetPropertyInfo(property); in GetMapProperty() 2891 return cfd->internal_stats()->GetMapProperty(*property_info, property, in GetMapProperty() 2900 const Slice& property, uint64_t* value) { in GetIntProperty() argument 2901 const DBPropertyInfo* property_info = GetPropertyInfo(property); in GetIntProperty() 2962 bool DBImpl::GetAggregatedIntProperty(const Slice& property, in GetAggregatedIntProperty() argument 2964 const DBPropertyInfo* property_info = GetPropertyInfo(property); in GetAggregatedIntProperty()
|
| D | db_impl.h | 267 const Slice& property, std::string* value) override; 270 ColumnFamilyHandle* column_family, const Slice& property, 274 const Slice& property, uint64_t* value) override; 276 virtual bool GetAggregatedIntProperty(const Slice& property,
|
| /rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/ |
| D | gtest-all.cc | 1424 const TestProperty& property) { in RecordProperty() argument 1425 test_result->RecordProperty(xml_element, property); in RecordProperty() 5303 const TestProperty& property = result.GetTestProperty(i); in TestPropertiesAsXmlAttributes() local 5304 attributes << " " << property.key() << "=" in TestPropertiesAsXmlAttributes() 5305 << "\"" << EscapeXmlAttribute(property.value()) << "\""; in TestPropertiesAsXmlAttributes() 5321 const TestProperty& property = result.GetTestProperty(i); in OutputXmlTestProperties() local 5323 *stream << " name=\"" << EscapeXmlAttribute(property.key()) << "\""; in OutputXmlTestProperties() 5324 *stream << " value=\"" << EscapeXmlAttribute(property.value()) << "\""; in OutputXmlTestProperties() 5685 const TestProperty& property = result.GetTestProperty(i); in TestPropertiesAsJson() local 5686 attributes << ",\n" << indent << "\"" << property.key() << "\": " in TestPropertiesAsJson() [all …]
|