Passer au contenu

Can I retrieve binlogs from a MariaDB RDS snapshot

0

I want to rescue some binlogs from a snapshot of a MariaDB RDS instance.

However, when restoring from a snapshot I can see that the binlogs get deleted before the instance becomes connectable: Image showing BinLogDiskUsage metric fall sharply from >60G to 0

This is with a suitably long period set for automated backups.

Is there a way I can prevent the binlogs being deleted on start like this? Or is there some other way I can get at those bin logs?

demandé il y a 2 ans737 vues

1 réponse
0

Hi

Here is the related question answered https://repost.aws/questions/QUF82SbQh6SUi5yT4Ito-BLw/why-don-t-i-get-en-event-with-binlog-information-when-i-create-a-snapshot

Binlogs info Link: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-stored-proc-configuring.html

binlog retention hours
The binlog retention hours parameter is used to specify the number of hours to retain binary log files. Amazon RDS normally purges a binary log as soon as possible, but the binary log might still be required for replication with a MySQL database external to RDS.

The default value of binlog retention hours is NULL. For RDS for MySQL, NULL means binary logs aren't retained (0 hours).

To specify the number of hours to retain binary logs on a DB instance, use the mysql.rds_set_configuration stored procedure and specify a period with enough time for replication to occur, as shown in the following example.

call mysql.rds_set_configuration('binlog retention hours', 24);

Note
You can't use the value 0 for binlog retention hours.

For MySQL DB instances, the maximum binlog retention hours value is 168 (7 days).After you set the retention period, monitor storage usage for the DB instance to make sure that the retained binary logs don't take up too much storage.

Even if you set a binlog retention period, those** logs won't be captured in an RDS snapshot**. Snapshots are full backups at a specific point in time, excluding binlogs which track ongoing changes.

EXPERT

répondu il y a 2 ans

EXPERT

vérifié il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.