J JohnyByk Verified User Joined Mar 7, 2012 Messages 248 Oct 2, 2018 #1 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
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
zEitEr Super Moderator Joined Apr 11, 2005 Messages 15,366 Location www.poralix.com Oct 5, 2018 #2 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/
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/