Comments - How to include "mariadb-dump" in the build? Best practices for backup?

2 months ago John Doe
This comment has the status of 'removed' and can only be seen by you.

Would you mind writing out the exact commands here? I'm not sure if I understand it correctly. I have done this so far:

cd ~
wget https://archive.mariadb.org/mariadb-11.4.2/source/mariadb-11.4.2.tar.gz
tar -xf mariadb-*.tar.gz
cd mariadb-11.4.2

cmake . -DWITHOUT_DYNAMIC_PLUGINS=1 -DWITH_MARIABACKUP=0 -DPLUGIN_PERFSCHEMA=NO -DWITH_UNIT_TESTS=0

What should I write now? I have 8 CPU cores by the way.

 
2 months ago Vladislav Vaintroub

If you have 8 cores

cmake --build . -j 8

is much faster than without -j.

 
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.