DRAGEN on AWS
Getting Access to the DRAGEN AMI (Amazon Machine Image)
Launch an Instance
Connect to and Configure Your Instance
sudo yum -y install mdadm
sudo mdadm --create --verbose /dev/md0 --level=0 --name=MY_RAID0 --raid-devices=<number of volumes> <device name 1> <device name 2>
sudo mkfs.ext4 -L MY_RAID0 /dev/md0
sudo mkdir -p /staging
sudo sh -c "echo 'LABEL=MY_RAID0 /staging ext4 defaults,noatime 0 0' >> /etc/fstab"
sudo mount -aData Flow
Simple Run Example
Last updated
Was this helpful?