Skip to content

Fix: dynamic configuration of RocksDB CF parameters now applies to all column families#425

Open
wsa-wsa wants to merge 1 commit intoTencent:unstablefrom
wsa-wsa:fix
Open

Fix: dynamic configuration of RocksDB CF parameters now applies to all column families#425
wsa-wsa wants to merge 1 commit intoTencent:unstablefrom
wsa-wsa:fix

Conversation

@wsa-wsa
Copy link
Contributor

@wsa-wsa wsa-wsa commented Nov 3, 2025

#424

修复下面几个错误:
配置文件:
rocks.defaultcf.enable_blob_files 1 (default_cf生效)
动态修改:
config set rocks.enable_blob_files 1 (default_cf和binlog_cf都生效)
config set rocks.defaultcf.enable_blob_files 1 (default_cf生效)

但是还遗留一个问题,就是
config get rocks.enable_blob_files
config get rocks.defaultcf.enable_blob_files
config get rocks.binlogcf.enable_blob_files
三个返回结果无法真实反映开闭状态,后续需要进一步优化。

Description

Motivation and Context

How Has This Been Tested?

Types of Changes

Checklist:

  • Code follows the code style of this project.
  • Change requires a change to the documentation.
  • I have updated the documentation accordingly.

@wsa-wsa wsa-wsa force-pushed the fix branch 13 times, most recently from 421a95c to 1a36517 Compare December 15, 2025 09:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

动态设置rocksdb的cf参数,默认只对default_cf生效,需要改为对binlog_cf也生效。

1 participant