Backup & Restore using AWS Backup
Lucidity guarantees that the customer's existing backup and restore process will remain unchanged.
AWS Backup enables you to centralize and automate data protection across AWS services. With AWS Backup, you can create backup policies called backup plans. You can use these plans to define your backup requirements, such as how frequently to back up your data and how long to retain those backups. AWS Backup lets you apply backup plans to your AWS resources by simply tagging them. AWS Backup then automatically backs up your AWS resources according to the backup plan that you defined.
By default, AWS Backup creates crash-consistent backups of Amazon EBS volumes that are attached to an Amazon EC2 instance. Crash consistency means that the snapshots for every Amazon EBS volume attached to the same Amazon EC2 instance are taken at the exact same moment. You no longer have to stop your instances or coordinate between multiple Amazon EBS volumes to ensure crash-consistency of your application state.
📦 Amazon EBS and AWS Backup - AWS Backup
Lucidity_Demo_Instance is onboarded to Lucidity platform and the EBS volumes managed by Lucidity are highlighted in the picture below. All the tags which were part of the existing disk will be replicated to the resulting Lucidity managed EBS volumes

2. The EBS volumes are assigned a tag value of env = backup

3. AWS Backup plan is created with the assigned tag. Backup service creates a backup of all the volumes which has the tag value of env = backup
[IMAGE PLACEHOLDER: Screenshot illustrating backup-protected EBS volumes in the AWS console, showing volumes marked as protected/attached and labeled to indicate backup protection; captioned "Figure 3 - Backup protected EBS volumes".]

4. AWS Backup creates a snapshot of all EBS volumes under protected resources as shown below.

Figure 4 - Snapshots created by AWS Backup service
5. Recovery points are created by AWS Backup for restoration of the EBS volumes.
Figure 5 - AWS Backup recovery points


6. Restore the protected resources using the snapshot recovery point

Figure 6 - Restored EBS volumes
7. Attach the restored volumes on a recovery instance.

8. Create a mountpoint and mount the volumes using the below commands
$ sudo mkdir /data_vol$ sudo mount -o nodatacow,noatime /dev/xvdq /data_volNote - The subvolumes of the BTRFS files system share the same UUID which makes it easier to re-mount the multiple volumes as a single mount point. You can choose to mount any one of the devices (/dev/xvdq, /dev/xvdp, /dev/xvdo, /dev/xvdn, /dev/xvdm, /dev/xvdl, /dev/xvdk, /dev/xvdj) present in the BTRFS volume pool.

9. Run df -hT to verify the mount point.
