You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kvrocks.apache.org by hu...@apache.org on 2023/01/19 02:59:49 UTC

[incubator-kvrocks] branch unstable updated: Update RocksDB to 7.9.2 & Google test to 1.13.0 (#1229)

This is an automated email from the ASF dual-hosted git repository.

hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git


The following commit(s) were added to refs/heads/unstable by this push:
     new 26026590 Update RocksDB to 7.9.2 & Google test to 1.13.0 (#1229)
26026590 is described below

commit 26026590347bfab7690d1b6b8d2abe8af91b475f
Author: Aleks Lozovyuk <al...@gmail.com>
AuthorDate: Thu Jan 19 04:59:43 2023 +0200

    Update RocksDB to 7.9.2 & Google test to 1.13.0 (#1229)
    
    Update google test up to 1.13.0
      - C++ 14 is now required
      - Fixed bugs
    
    Update RocksDB to 7.9.2
      - Many bug fixed (e.g. relative to async_io support)
      - Performance Improvements
      - (new) Basic support for the wide-column data model
      - (new) Marked HyperClockCache as a production-ready alternative to LRUCache for the block cache. As much as 4.5x higher ops/sec vs. LRUCache has been seen in db_bench under high parallel load.
---
 cmake/gtest.cmake   | 4 ++--
 cmake/rocksdb.cmake | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/cmake/gtest.cmake b/cmake/gtest.cmake
index a8517cf2..68ad2008 100644
--- a/cmake/gtest.cmake
+++ b/cmake/gtest.cmake
@@ -20,8 +20,8 @@ include_guard()
 include(cmake/utils.cmake)
 
 FetchContent_DeclareGitHubWithMirror(gtest
-  google/googletest release-1.12.1
-  MD5=2648d4138129812611cf6b6b4b497a3b
+  google/googletest v1.13.0
+  MD5=a1279c6fb5bf7d4a5e0d0b2a4adb39ac
 )
 
 FetchContent_MakeAvailableWithArgs(gtest
diff --git a/cmake/rocksdb.cmake b/cmake/rocksdb.cmake
index 1dd41523..87f49bcc 100644
--- a/cmake/rocksdb.cmake
+++ b/cmake/rocksdb.cmake
@@ -26,8 +26,8 @@ endif()
 include(cmake/utils.cmake)
 
 FetchContent_DeclareGitHubWithMirror(rocksdb
-  facebook/rocksdb v7.8.3
-  MD5=f0cbf71b1f44ce8f50407415d38b9d44
+  facebook/rocksdb v7.9.2
+  MD5=f9e250f3afdc82288925778cf5513acd
 )
 
 FetchContent_GetProperties(jemalloc)