Skip to content

Commit

Permalink
refactor md,my pitr
Browse files Browse the repository at this point in the history
Signed-off-by: SK Ali Arman <[email protected]>
  • Loading branch information
sheikh-arman committed Dec 20, 2024
1 parent cdbe600 commit 4fa15ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/guides/mariadb/pitr/nfs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,8 @@ NAME READYTOUSE SOURCEPVC SOURCESNAPSHOTCONTENT RE
mariadb-1726549985 true data-mariadb-0 10Gi longhorn-snapshot-vsc snapcontent-317aaac9-ae4f-438b-9763-4eb81ff828af 11m 11m
```

## data insert and switch wal
After each and every wal switch the wal files will be uploaded to backup storage
## Data Insert and Switch Binlog File
After each and every binlog switch the binlog files will be uploaded to backup storage

```bash
$ kubectl exec -it -n demo mariadb-0 -- bash
Expand Down Expand Up @@ -481,7 +481,7 @@ MariaDB [hello]> drop table demo_table;
MariaDB [hello]> flush logs;

```
We can't restore from a full backup since at this point no full backup was perform. so we can choose a specific time in which time we want to restore.We can get the specfice time from the wal that archived in the backup storage . Go to the binlog file and find where to store. You can parse binlog-files using `mariadbbinlog`.
We can't restore from a full backup since at this point no full backup was perform. so we can choose a specific time in which time we want to restore.We can get the specfice time from the binlog that archived in the backup storage . Go to the binlog file and find where to store. You can parse binlog-files using `mariadbbinlog`.


For the demo I will use the previous time we get form `select now()`
Expand Down
6 changes: 3 additions & 3 deletions docs/guides/mariadb/pitr/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ NAME READYTOUSE SOURCEPVC SOURCESNAPSHOTCONTENT RE
mariadb-1726549985 true data-mariadb-0 10Gi longhorn-snapshot-vsc snapcontent-317aaac9-ae4f-438b-9763-4eb81ff828af 11m 11m
```

## data insert and switch wal
After each and every wal switch the wal files will be uploaded to backup storage
## Data Insert and Switch Binlog File
After each and every binlog switch the binlog files will be uploaded to backup storage

```bash
$ kubectl exec -it -n demo mariadb-0 -- bash
Expand Down Expand Up @@ -342,7 +342,7 @@ MariaDB [hello]> drop table demo_table;
MariaDB [hello]> flush logs;
```
We can't restore from a full backup since at this point no full backup was perform. so we can choose a specific time in which time we want to restore.We can get the specfice time from the wal that archived in the backup storage . Go to the binlog file and find where to store. You can parse binlog-files using `mariadbbinlog`.
We can't restore from a full backup since at this point no full backup was perform. so we can choose a specific time in which time we want to restore.We can get the specfice time from the binlog that archived in the backup storage . Go to the binlog file and find where to store. You can parse binlog-files using `mariadbbinlog`.
For the demo I will use the previous time we get form `select now()`
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/mysql/pitr/volumesnapshot/archiver.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ mysql> drop table demo_table;
mysql> flush logs;

```
We can't restore from a full backup since at this point no full backup was perform. so we can choose a specific time in which time we want to restore.We can get the specfice time from the wal that archived in the backup storage . Go to the binlog file and find where to store. You can parse binlog-files using `mysqlbinlog`.
We can't restore from a full backup since at this point no full backup was perform. so we can choose a specific time in which time we want to restore.We can get the specfice time from the binlog that archived in the backup storage . Go to the binlog file and find where to store. You can parse binlog-files using `mysqlbinlog`.


For the demo I will use the previous time we get form `select now()`
Expand Down

0 comments on commit 4fa15ab

Please sign in to comment.