From 47e023abbd2db5f715dde923af84b37b5b05c039 Mon Sep 17 00:00:00 2001 From: Hui Xiao Date: Thu, 14 Sep 2023 16:07:59 -0700 Subject: [PATCH] Remove "rocksdb.file.read.db.open.micros" typo from 8.6 HISTORY (#11839) Summary: **Context/Summary:** `rocksdb.file.read.db.open.micros` is landed in 8.3 but not 8.6. It was included in the HISTORY due to an error. Pull Request resolved: https://github.com/facebook/rocksdb/pull/11839 Test Plan: no code change; Will cherry pick this to 8.6 branch when landed. Reviewed By: anand1976 Differential Revision: D49294250 Pulled By: hx235 fbshipit-source-id: b2ac10758a15eadd5c129d80e93e1c3d0aa569cb --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 27a248b4eb..fc955a1ae7 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -12,7 +12,7 @@ * Add a column family option `memtable_max_range_deletions` that limits the number of range deletions in a memtable. RocksDB will try to do an automatic flush after the limit is reached. (#11358) * Add PutEntity API in sst_file_writer * Add `timeout` in microsecond option to `WaitForCompactOptions` to allow timely termination of prolonged waiting in scenarios like recurring recoverable errors, such as out-of-space situations and continuous write streams that sustain ongoing flush and compactions -* New statistics `rocksdb.file.read.{db.open|get|multiget|db.iterator|verify.checksum|verify.file.checksums}.micros` measure read time of block-based SST tables or blob files during db open, `Get()`, `MultiGet()`, using db iterator, `VerifyFileChecksums()` and `VerifyChecksum()`. They require stats level greater than `StatsLevel::kExceptDetailedTimers`. +* New statistics `rocksdb.file.read.{get|multiget|db.iterator|verify.checksum|verify.file.checksums}.micros` measure read time of block-based SST tables or blob files during db open, `Get()`, `MultiGet()`, using db iterator, `VerifyFileChecksums()` and `VerifyChecksum()`. They require stats level greater than `StatsLevel::kExceptDetailedTimers`. * Add close_db option to `WaitForCompactOptions` to call Close() after waiting is done. * Add a new compression option `CompressionOptions::checksum` for enabling ZSTD's checksum feature to detect corruption during decompression.