MariaDB and RocksDB

JohnyByk

Verified User
Joined
Mar 7, 2012
Messages
251
hi

It's possible to run MariaDB with RocksDB storage engine support? If yes, how to do that?
Default this engine is not supported.

Regards
 
Hello Johny,

I believe you need to install additional rpm package MariaDB-rocksdb-engine for this: https://mariadb.com/kb/en/library/myrocks/ It should match your MariaDB version.

and enable it with:

Code:
plugin-load-add=ha_rocksdb.so

in the [server], [mysqld], or [mariadb] section of your /etc/my.cnf file.

For example rpm`s of MariaDB 10.2.7 for Centos7 you can find here:

https://downloads.mariadb.com/MariaDB/mariadb-10.2.7/yum/centos7-amd64/rpms/

Search you package here: https://downloads.mariadb.com/MariaDB/ and download it to your server.

Related: https://mariadb.com/kb/en/library/getting-started-with-myrocks/
 
Back
Top