Skip to content

Commit

Permalink
upgrade to RocksDB 9.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zaidoon1 committed Aug 21, 2024
1 parent ef643d8 commit f9facd3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ zstd-static-linking-only = ["rust-librocksdb-sys/zstd-static-linking-only"]

[dependencies]
libc = "0.2"
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.24.1" }
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.25.0" }
serde = { version = "1", features = ["derive"], optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion librocksdb-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-librocksdb-sys"
version = "0.24.1+9.4.0"
version = "0.25.0+9.5.2"
edition = "2021"
rust-version = "1.75.0"
authors = [
Expand Down
8 changes: 4 additions & 4 deletions librocksdb-sys/build_version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@

// The build script may replace these values with real values based
// on whether or not GIT is available and the platform settings
static const std::string rocksdb_build_git_sha = "5f003e4a22d2e48e37c98d9620241237cd30dd24";
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.4.0";
static const std::string rocksdb_build_git_sha = "a7e70f95aae5eb7adf61ae6b87e391a8f5dfe3ff";
static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v9.5.2";
#define HAS_GIT_CHANGES 0
#if HAS_GIT_CHANGES == 0
// If HAS_GIT_CHANGES is 0, the GIT date is used.
// Use the time the branch/tag was last modified
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-06-24 16:48:34";
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-08-13 12:59:14";
#else
// If HAS_GIT_CHANGES is > 0, the branch/tag has modifications.
// Use the time the build was created.
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-06-24 16:48:34";
static const std::string rocksdb_build_date = "rocksdb_build_date:2024-08-13 12:59:14";
#endif

std::unordered_map<std::string, ROCKSDB_NAMESPACE::RegistrarFunc> ROCKSDB_NAMESPACE::ObjectRegistry::builtins_ = {};
Expand Down
2 changes: 1 addition & 1 deletion librocksdb-sys/rocksdb
Submodule rocksdb updated 98 files
+30 −0 HISTORY.md
+4 −6 Makefile
+4 −4 db/arena_wrapped_db_iter.cc
+4 −2 db/arena_wrapped_db_iter.h
+106 −0 db/c.cc
+88 −0 db/c_test.c
+8 −1 db/compaction/compaction.cc
+11 −9 db/compaction/compaction.h
+6 −0 db/compaction/compaction_job.cc
+2 −0 db/compaction/compaction_service_job.cc
+107 −43 db/db_bloom_filter_test.cc
+19 −3 db/db_filesnapshot.cc
+57 −31 db/db_impl/db_impl.cc
+7 −0 db/db_impl/db_impl.h
+3 −1 db/db_impl/db_impl_compaction_flush.cc
+5 −0 db/db_impl/db_impl_debug.cc
+7 −1 db/db_impl/db_impl_open.cc
+32 −32 db/db_impl/db_impl_write.cc
+27 −0 db/db_io_failure_test.cc
+6 −0 db/db_rate_limiter_test.cc
+52 −0 db/db_sst_test.cc
+5 −0 db/db_test_util.cc
+1 −0 db/db_test_util.h
+34 −39 db/error_handler.cc
+3 −4 db/error_handler.h
+6 −2 db/error_handler_fs_test.cc
+6 −3 db/event_helpers.cc
+53 −4 db/external_sst_file_ingestion_job.cc
+334 −4 db/external_sst_file_test.cc
+59 −25 db/fault_injection_test.cc
+4 −4 db/memtable_list.cc
+2 −2 db/table_cache.cc
+1 −1 db/table_cache.h
+0 −1 db/version_edit.cc
+34 −27 db/version_set.cc
+24 −15 db/wal_manager.cc
+3 −2 db/wal_manager.h
+19 −43 db_stress_tool/cf_consistency_stress.cc
+0 −2 db_stress_tool/db_stress_common.cc
+5 −5 db_stress_tool/db_stress_driver.cc
+25 −88 db_stress_tool/db_stress_env_wrapper.h
+3 −0 db_stress_tool/db_stress_gflags.cc
+4 −3 db_stress_tool/db_stress_listener.h
+1 −0 db_stress_tool/db_stress_shared_state.h
+218 −104 db_stress_tool/db_stress_test_base.cc
+9 −7 db_stress_tool/db_stress_test_base.h
+9 −9 db_stress_tool/db_stress_tool.cc
+47 −87 db_stress_tool/no_batched_ops_stress.cc
+21 −0 env/composite_env_wrapper.h
+6 −0 env/env.cc
+124 −23 file/delete_scheduler.cc
+61 −8 file/delete_scheduler.h
+141 −2 file/delete_scheduler_test.cc
+17 −2 file/file_util.cc
+10 −0 file/file_util.h
+18 −0 file/sst_file_manager_impl.cc
+27 −4 file/sst_file_manager_impl.h
+12 −5 file/writable_file_writer.h
+25 −0 include/rocksdb/c.h
+4 −3 include/rocksdb/db.h
+5 −0 include/rocksdb/env.h
+19 −3 include/rocksdb/options.h
+5 −0 include/rocksdb/statistics.h
+4 −2 include/rocksdb/utilities/checkpoint.h
+2 −2 include/rocksdb/version.h
+9 −0 java/rocksjni/portal.h
+4 −4 java/src/main/java/org/rocksdb/RateLimiter.java
+4 −0 java/src/main/java/org/rocksdb/TickerType.java
+4 −0 monitoring/statistics.cc
+8 −5 options/db_options.h
+2 −2 port/jemalloc_helper.h
+3 −2 port/win/port_win.cc
+15 −0 table/block_based/block_based_table_iterator.cc
+14 −4 table/block_based/block_based_table_reader.cc
+8 −1 table/block_based/block_based_table_reader_sync_and_async.h
+12 −3 table/block_based/full_filter_block.cc
+1 −0 table/block_based/full_filter_block.h
+4 −1 table/block_based/partitioned_filter_block.cc
+13 −1 table/block_fetcher.cc
+9 −10 table/compaction_merging_iterator.cc
+3 −2 table/compaction_merging_iterator.h
+18 −13 table/merging_iterator.cc
+5 −3 table/merging_iterator.h
+1 −1 tools/check_format_compatible.sh
+122 −70 tools/db_crashtest.py
+1 −1 util/stderr_logger.h
+1 −1 util/xxhash.h
+1 −1 utilities/backup/backup_engine_test.cc
+2 −2 utilities/blob_db/blob_db_test.cc
+141 −0 utilities/checkpoint/checkpoint_test.cc
+228 −81 utilities/fault_injection_fs.cc
+60 −35 utilities/fault_injection_fs.h
+0 −2 utilities/table_properties_collectors/compact_for_tiering_collector.cc
+4 −3 utilities/transactions/pessimistic_transaction.cc
+10 −3 utilities/transactions/pessimistic_transaction_db.cc
+2 −1 utilities/transactions/pessimistic_transaction_db.h
+25 −5 utilities/transactions/transaction_base.cc
+17 −1 utilities/transactions/write_committed_transaction_ts_test.cc

0 comments on commit f9facd3

Please sign in to comment.