Does anybody know how to back up a database inside RDS MariaDB, For example I created a MariaDB instance and a have four databases inside that instance (test1db, test2db, test3db, test4db) how can I just do a backup of test2db and not for the entire instance that have 4 databases
Asked
Active
Viewed 53 times
0
-
Such a feature is not available in the infrastructure layer and you must implement it in your application layer. e.g. A lambda function running periodically and dump your database using a script to an S3 bucket or your desired storage system. – Mohammad Moallemi Sep 23 '20 at 22:59
-
Thanks, I'll research on doing that. – Maruko Sep 24 '20 at 16:34