From f7445bdc97cb938200299030a5370421ac66de05 Mon Sep 17 00:00:00 2001 From: Leyla Galatin <56415703+lgalatin@users.noreply.github.com> Date: Tue, 25 Feb 2020 13:47:24 -0800 Subject: [PATCH 1/3] Update CHANGELOG for Badger2.0.2 release --- CHANGELOG.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9668992f0..f21668e05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Serialization Versioning](VERSIONING.md). +## [Unreleased] + +### Fixed + +- Cast sz to uint32 to fix compilation on 32 bit. (#1175) +- Fix checkOverlap in compaction. (#1166) +- Avoid sync in inmemory mode. (#1190) +- Improve write stalling on level 0 and 1. +- Support disabling the cache completely. (#1185) +- Add support for caching bloomfilters. (#1204) +- Fix int overflow for 32bit. (#1216) +- Remove the 'this entry should've caught' log from value.go. (#1170) +- Rework concurrency semantics of valueLog.maxFid. (#1187) + +### Performance + +- Use fastRand instead of locked-rand in skiplist. (#1173) +- Disable compression and set ZSTD Compression Level to 1. (#1191) + ## [2.0.1] - 2020-01-02 ### New APIs @@ -274,7 +293,7 @@ Bug fix: ## [1.0.1] - 2017-11-06 * Fix an uint16 overflow when resizing key slice -[Unreleased]: https://github.com/dgraph-io/badger/compare/v2.0.1...HEAD +[Unreleased]: https://github.com/dgraph-io/badger/compare/v2.0.2...HEAD [2.0.1]: https://github.com/dgraph-io/badger/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/dgraph-io/badger/compare/v1.6.0...v2.0.0 [1.6.0]: https://github.com/dgraph-io/badger/compare/v1.5.5...v1.6.0 From 9ce2c1be3516ad6643bd13aa9e09b40388c62d77 Mon Sep 17 00:00:00 2001 From: Ibrahim Jarif Date: Wed, 26 Feb 2020 23:03:24 +0530 Subject: [PATCH 2/3] Move l0/l1 stall from fixed to performance section --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f21668e05..a1697d4ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,6 @@ and this project adheres to [Serialization Versioning](VERSIONING.md). - Cast sz to uint32 to fix compilation on 32 bit. (#1175) - Fix checkOverlap in compaction. (#1166) - Avoid sync in inmemory mode. (#1190) -- Improve write stalling on level 0 and 1. - Support disabling the cache completely. (#1185) - Add support for caching bloomfilters. (#1204) - Fix int overflow for 32bit. (#1216) @@ -22,6 +21,7 @@ and this project adheres to [Serialization Versioning](VERSIONING.md). - Use fastRand instead of locked-rand in skiplist. (#1173) - Disable compression and set ZSTD Compression Level to 1. (#1191) +- Improve write stalling on level 0 and 1. (#1186) ## [2.0.1] - 2020-01-02 From 4bdba4ed692b2b4f1bf2ca24092ac64e5d712b44 Mon Sep 17 00:00:00 2001 From: Ibrahim Jarif Date: Wed, 26 Feb 2020 23:17:01 +0530 Subject: [PATCH 3/3] fixup --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1697d4ba..ae9c43fbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Serialization Versioning](VERSIONING.md). -## [Unreleased] +## [2.0.2-rc1] - 2020-02-26 ### Fixed @@ -20,8 +20,8 @@ and this project adheres to [Serialization Versioning](VERSIONING.md). ### Performance - Use fastRand instead of locked-rand in skiplist. (#1173) -- Disable compression and set ZSTD Compression Level to 1. (#1191) - Improve write stalling on level 0 and 1. (#1186) +- Disable compression and set ZSTD Compression Level to 1. (#1191) ## [2.0.1] - 2020-01-02 @@ -293,7 +293,7 @@ Bug fix: ## [1.0.1] - 2017-11-06 * Fix an uint16 overflow when resizing key slice -[Unreleased]: https://github.com/dgraph-io/badger/compare/v2.0.2...HEAD +[2.0.2-rc1]: https://github.com/dgraph-io/badger/compare/v2.0.1...v2.0.2-rc1 [2.0.1]: https://github.com/dgraph-io/badger/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/dgraph-io/badger/compare/v1.6.0...v2.0.0 [1.6.0]: https://github.com/dgraph-io/badger/compare/v1.5.5...v1.6.0