Comments - Getting Started with MyRocks

5 years, 10 months ago Juan Telleria
This comment has the status of 'removed' and can only be seen by you.

Which are the key ROCKSDB Engine Server variables to tune when using RocksDB for high performance? The innodb_buffer_pool_size equivalent for RocksDB?

Thank you. Juan

 
5 years, 8 months ago Juan Telleria

After some research, I identified that the "innodb_buffer_pool_size" equivalent in "rocksdb" MariaDB engine is "rocksdb_block_cache_size" (By default, 500Mb).

You can decide if its value shall be increased by executing on the live server "SHOW ENGINE ROCKSDB STATUS;", in order to see some engine statistics, or by executing "SELECT * FROM INFORMATION_SCHEMA.ROCKSDB_DBSTATS".

So for using the engine, simply when creating a table set "ENGINE=rocksdb", and you are done! :)

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.