jjz921024 commented on issue #2279:
URL: https://github.com/apache/kvrocks/issues/2279#issuecomment-2082885791

   For setting the `write_buff_size` for each column family. There are a simple 
way that i can think of is to extend `config set rocksdb.write_buffer_size num` 
command. 
   
   For example, the command of `config set rocksdb.write_buffer_size [cf_name] 
num` is used to set the buff_size of the specify cf.
   
   Mor example: 
   ```shell
   config set rocksdb.write_buffer_size **ALL** num  
   // equivalent to `config set rocksdb.write_buffer_size num`
   // settings the buff_size for all of column families
   
   config set rocksdb.write_buffer_size **MAJOR** num
   // for major colunm families include metadata and default
   
   config set rocksdb.write_buffer_size **MINOR** num
   // for minor colunm families except for metadata and default
   
   config set rocksdb.write_buffer_size [metadate | default | zset | pubsub | 
... ] num
   // for specify column family
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to