From 8cf86258b85a610e248298d9df0dfd0d343ba867 Mon Sep 17 00:00:00 2001 From: Changyu Bi Date: Thu, 16 Jun 2022 19:59:26 -0700 Subject: [PATCH] Update HISTORY.md for #10114 (#10189) Summary: Update HISTORY.md for https://github.com/facebook/rocksdb/issues/10114: write batch checksum verification before writing to WAL. Pull Request resolved: https://github.com/facebook/rocksdb/pull/10189 Reviewed By: ajkr Differential Revision: D37226366 Pulled By: cbi42 fbshipit-source-id: cd2f076961abc35f35783e0f2cc3beda68cdb446 --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.md b/HISTORY.md index fadf57eb9..a455f19b4 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -38,6 +38,7 @@ ### Behavior changes * DB::Open(), DB::OpenAsSecondary() will fail if a Logger cannot be created (#9984) * Removed support for reading Bloom filters using obsolete block-based filter format. (Support for writing such filters was dropped in 7.0.) For good read performance on old DBs using these filters, a full compaction is required. +* Per KV checksum in write batch is verified before a write batch is written to WAL to detect any corruption to the write batch (#10114). ## 7.3.0 (05/20/2022) ### Bug Fixes