スキップしてコンテンツを表示

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?

質問済み 2年前737ビュー

1回答
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.

エキスパート

回答済み 2年前

エキスパート

レビュー済み 2年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

関連するコンテンツ