Comments - Getting Started with MyRocks

5 years, 9 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.