Skip to content

Commit

Permalink
Release 2.0.0 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShooterIT authored Apr 23, 2021
1 parent a0dbde4 commit e0ec568
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)
project(kvrocks
VERSION 999.999.999
VERSION 2.0.0
DESCRIPTION "NoSQL which based on rocksdb and compatible with the Redis protocol"
LANGUAGES CXX)

Expand Down
40 changes: 39 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,42 @@
# Version 999.999.999
# Version 2.0.0

New features
- Don't use extra port for replication (#200)
- Use checkpoint to implement data snapshot when full replication (#208)
Reduce disk space and bandwidth usage and decrease the time of replicas
recovery during full synchronization.
- Use checkpoint to implement kvrocks backup (#232)
- Replicas can empty db before fullsync (#233)
Replicas use less disks space if enabled, but have a risk to lose data.

Command changes
- Add QPS and input/output kbps for INFO command (#213)
- Add pubsub_patterns for INFO command (#234)
- Slowlog omits args or argument string if too many or big (#215)

Cluster
- Remove codis support (#217)
From now, we doesn't support codis, you can adopt pre-sharding to implement
cluster, and we are developing new cluster solution that is similar with
redis cluster mode, please see #219.

Bugfixes
- Fix kvrocks can't auto resume after no space error (#229)

Dependences
- Upgrade rocksdb to latest tag v6.19.3 (#226)


# Version 1.3.2

Bug fixes
- Fix incorrect used_db_size in INFO command (#204)
- Fix the SST file creation time maybe 0 in some unknown conditions (#211)
- Fix get corruption writebatch data after psync restart (#221)

Improvements
- Optimize TCP keepalive detection time (#201)


# Version 1.3.1

Expand Down

0 comments on commit e0ec568

Please sign in to comment.