summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Chang <xcc@fb.com>2021-01-11 13:33:08 -0800
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2021-01-11 13:34:15 -0800
commitfdbebdf48445a6a845a04cf8685bfcfa5e41f9e9 (patch)
tree87b089f696fcb83021661775b332d9f2733bd4ed
parente4bdf9e0cb59994844a313068549507d610172c0 (diff)
Add note for PR 7789 in history (#7855)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/7855 Reviewed By: ajkr Differential Revision: D25872797 Pulled By: cheng-chang fbshipit-source-id: 82159a13f897aaaad5f3c70c7dfa822e073bc623
-rw-r--r--HISTORY.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 9219f4ad2..923f2e449 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -22,6 +22,7 @@
* Fixed the logic of populating native data structure for `read_amp_bytes_per_bit` during OPTIONS file parsing on big-endian architecture. Without this fix, original code introduced in PR7659, when running on big-endian machine, can mistakenly store read_amp_bytes_per_bit (an uint32) in little endian format. Future access to `read_amp_bytes_per_bit` will give wrong values. Little endian architecture is not affected.
* Fixed prefix extractor with timestamp issues.
* Fixed a bug in atomic flush: in two-phase commit mode, the minimum WAL log number to keep is incorrect.
+* Fixed a bug related to checkpoint in PR7789: if there are multiple column families, and the checkpoint is not opened as read only, then in rare cases, data loss may happen in the checkpoint. Since backup engine relies on checkpoint, it may also be affected.
### New Features
* User defined timestamp feature supports `CompactRange` and `GetApproximateSizes`.