Update version.h and HISTORY.md for 7.2.1

This commit is contained in:
akankshamahajan 2022-04-26 15:28:06 -07:00
parent 3620e69404
commit f38f5570d5
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,5 @@
# Rocksdb Change Log
## Unreleased
## 7.2.1 (04/26/2022)
### Bug Fixes
* Fixed a bug where RocksDB could corrupt DBs with `avoid_flush_during_recovery == true` by removing valid WALs, leading to `Status::Corruption` with message like "SST file is ahead of WALs" when attempting to reopen.
* RocksDB calls FileSystem::Poll API during FilePrefetchBuffer destruction which impacts performance as it waits for read requets completion which is not needed anymore. Calling FileSystem::AbortIO to abort those requests instead fixes that performance issue.

View File

@ -13,7 +13,7 @@
// minor or major version number planned for release.
#define ROCKSDB_MAJOR 7
#define ROCKSDB_MINOR 2
#define ROCKSDB_PATCH 0
#define ROCKSDB_PATCH 1
// Do not use these. We made the mistake of declaring macros starting with
// double underscore. Now we have to live with our choice. We'll deprecate these