Outshift Logo

PRODUCT

8 min read

Blog thumbnail
Published on 06/08/2022
Last updated on 03/13/2024

Transferring Data with AWS Data Sync

Share

AWS DataSync is an online data transfer service that simplifies, automates, and accelerates the process of copying large amounts of data to and from AWS storage services over the Internet or AWS Direct Connect. DataSync can be particularly useful when migrating large amounts of data between clouds or from on-premises systems to the cloud. With DataSync, you can copy data between Network File System (NFS) or Server Message block (SMB) file servers, Amazon Simple Storage Service (S3), Amazon Elastic File System (EFS) and Amazon FSx for Windows File Servers. I’ll describe the steps you need to take next in two scenarios: the first will describe what to do if you’re transferring data between AWS accounts, and the second will describe what to do if you’re transferring data from on-premises to AWS S3. For an in-depth look at using AWS Data Sync, check out this user guide. No matter which scenario applies to you, start with these initial steps:
  1. Deploy an agent, which can be an on-premises VM or an EC2 instance deployed on the source to access NFS/SMB to read and write data.
  2. Create a data transfer task specifying required data source and destination locations. Configure options for your data, such as file patterns and scheduling.
  3. Start and monitor your task in the AWS management console or Cloudwatch.

Scenario 1: Data Transfer between AWS accounts with S3 as source and destination locations

The following diagram provides a high-level view of the DataSync architecture for transferring data between AWS services within the same account. This architecture applies to both in-region and cross-region transfers. Data_Transfer_between_AWS_accounts_with_S3 A DataSync agent is not required when executing S3-to-S3 transfers across accounts and regions. This is internally handled by AWS’ DataSync architecture. For other storage resources — such as EFS and FSx — you can execute DataSync without an agent when transferring within the same account, but you need to use an agent when transferring data across accounts. When transferring data between accounts, make sure that your destination account has IAM credentials for accessing your source S3 location data. It is recommended that you run the DataSync service in the destination AWS account to avoid any issues. Your source account will contain the source S3 bucket and your destination account will contain the destination S3 bucket and run the DataSync service.

Setup in source account

  1. Create a S3 bucket(trellis-datasync-src1) in the source account/region with default attributes.
  2. On the bucket’s Permissions tab, click Bucket policy. Setup_in_source_account
  3. Click Edit and add the following:
    {
    	"Version": "2012–10–17",
    	"Id": "Policy1616194240988",
    	"Statement": [
    		{
    			"Sid": "Stmt1616194236908",
    			"Effect": "Allow",
    			"Principal": {
    				"AWS": [
    					"arn:aws:iam::1111111111111:user/username",
    					"arn:aws:iam::1111111111111:role/CrossAccountAccess"
    				]
    			},
    			"Action": "s3:*",
    			"Resource": [
    				"arn:aws:s3:::trellis-datasync-src1",
    				"arn:aws:s3:::trellis-datasync-src1/*"
    			]
    		}
    	]
    }
  4. Get destination account details by running the following command for AWS destination, to be used in above policy:
    ❯ aws sts get-caller-identity
    {
      "UserId": "ABCDEFGHIJKLMNOP5555",
      "Account": "555555555555",
      "Arn": "arn:aws:iam::55555555555:user/username"
    }

Setup in destination account

  1. Setup a IAM Role CrossAccountAccess for S3 access from the source. For simplicity, I’ve used the AmazonS3FullAccess policy below. Setup_in_destination_account
  2. Click on the Trust relationships tab, where you’ll see the following view. Trust_relationships
  3. Click Edit trust relationship and add the following Trust Policy, which will show up under Trusted entities:
    {
    	"Version": "2012–10–17",
    	"Statement": [
    		{
    			"Effect": "Allow",
    			"Principal": {
    				"Service": "datasync.amazonaws.com"
    			},
    			"Action": "sts:AssumeRole"
    		}
    	]
    }
  4. Next, create a S3 bucket (trellis-datasync-dst1) in the destination account/region with default attributes. Create the cross account s3 location (for source A), from destination B using the AWS CLI below:
    ❯ aws datasync create-location-s3 — s3-bucket-arn arn:aws:s3:::trellis-datasync-src1 — s3-config ‘{**BucketAccessRoleArn**:**arn:aws:iam::5555555555:role/CrossAccountAccess**}’ — region eu-west-1
    If the command works, below output will be displayed:
    {
    	"LocationArn": "arn:aws:datasync:eu-west-1:079349112641:location/loc-054160bbd934e32c9"
    }
    Now, the source S3 location should show up in the destination view, and we can set up both source and destination locations for the DataSync service. Setup_in_destination_account Setup_in_destination_account
  5. In either the DataSync source or destination view, click Create task to initiate a data transfer with specified parameters. Setup_in_source_account
  6. Next, configure your source location by selecting Choose an existing location. Choose_an_existing _location.
  7. Next, configure your destination location by selecting your destination bucket. Setup_in_source_account
  8. Next, configure your settings, specifying your Task Name, Task execution configuration, Data transfer configuration, Filtering configuration, and Task logging: Setup_in_source_accountWhen you’ve completed configuration, you’ll see details about your task in the following dashboard:Setup_in_source_account
  9. As the data transfers, you can check your DataSync task execution status by clicking the History tab. DataSync_task_execution_status_by_clicking_the_History

Scenario 2: Data Transfer between on-premises (NFS) as source to AWS S3 as destination

The diagram below depicts the process of transferring data between on-premises servers to AWS S3. Data_Transfer_between_on-premises_(NFS) The same dynamics apply when the source (NFS, SMB) is deployed in AWS, as the diagram below shows. source_(NFS, SMB)_is_deployed_in_AWS To execute this transfer, follow these steps:
    1. Ensure that your Security Group rules match the requirements for deploying DataSync agent on the source, as shown below: requirements_for_deploying_DataSync_agentrequirements_for_deploying_DataSync_agent
  1. Simulate on-premises NFS server by deploying an EC2 instance with an EBS/EFS storage system. NFS_server_by_deploying_an_EC2_instance_with_an_EBS/EFS storage system
  2. Mount EBS volume on the E2 instance. For more on this process, consult the user guide. Mount_EBS_volume_on_the_E2_instance
  3. Ensure that the nfs service is enabled and the nfs path is exported correctly: nfs_service_is_enabled_and_the_nfs_path_is_exported_correctly You’ll need CLIs to enable NFS service and export the NFS path:
    sudo apt-get update && sudo apt-get install nfs-kernel-server
    sudo vi /etc/exports
    ❯ Add /home/ubuntu/data
    *(rw,fsid=1,no_subtree_check,sync,insecure)
    sudo service nfs-kernel-server reload
    systemctl status nfs-server.service

Set up and activate DataSync agent, locations, and task

Whether you’re in scenario 1 or 2, take the steps below if you’re deploying the EC2 instance as a DataSync agent in an AWS region close to your source location. For the steps you need to take if you’re pursuing other deployment options, see this document.
  1. Create EC2 instance to be used as DataSync agent on the source account. Amazon recommends using one of the following EC2 instance types:
    • m5.2xlarge — For tasks to transfer up to 20 million files.
    • m5.4xlarge — For tasks to transfer more than 20 million files.
    First get AMI for the DataSync agent required for your region using the following command:
    ❯ aws ssm get-parameter — name /aws/service/datasync/ami — region eu-west-1{
      "Parameter": {
        "Name": "/aws/service/datasync/ami",
        "Type": "String",
        "Value": "ami-024d0f6d9d751d0a1",
        "Version": 20,
        "LastModifiedDate": "2021–03–02T07:50:22.419000–08:00",
        "ARN": "arn:aws:ssm:eu-west-1::parameter/aws/service/datasync/ami",
        "DataType": "text"
      }
    }
    Using the AMI value from the output above, launch the EC2 instance (m5.2xlarge or m5.4xlarge) using the following URL, substituting region and ami-id: https://console.aws.amazon.com/ec2/v2/home?region=source-file-system-region#LaunchInstanceWizard:ami=ami-id If using a security group, assign the above security-group or ensure desired inbound/outbound rules are applicable for this instance. For more on executing this process consult the AWS user guide.
  2. Once the EC2 instance (DataSync agent) is deployed, log in to your console to get the activation key with your required method using public or VPC endpoints.Note that you’ll need to set Private DNS names to False (unchecked) in VPC endpoints if you’re using the DataSync agent as a public endpoint. If you have agents activated with public rather than private endpoints within the same VPC, if the private DNS option is checked, the agent with public endpoint activation will not be able to resolve the service endpoints. This will cause communication failure that leads to the agent going offline. EC2_instance_(DataSync_agent)_is_deployed

Setup on destination account

  1. Go to DataSync service in AWS management console on destination account and select Create Agent: Create_Agent Create_Agent Create_Agent
  2. Create an S3 bucket (trellis-nfs-dst) in the destination account/region with default attributes. trellis-nfs-dst
  3. Set up a DataSync source location (NFS server) on the destination account. DataSync_source_location_(NFS_server) DataSync_source_location_(NFS_server)
  4. Create a DataSync task to initiate data transfer with specified parameters for source location, destination location, settings and task logging: source_location source_location DataSync-nfs-task Schedule DataSync-nfc-task
  5. Once on your DataSync dashboard view (see above), click History to check your DataSync task execution status. DataSync_dashboard_view_(see_above)

Transferring file data across AWS regions and accounts using VPC peering

For more on how to transfer file data across AWS regions and accounts using VPC peering, see AWS’ documentation titled Creating and accepting a VPC peering connection and Transferring file data across AWS Regions and accounts using AWS DataSync. AWS_regions_and_accounts_using_VPC_peering
Subscribe card background
Subscribe
Subscribe to
the Shift!

Get emerging insights on emerging technology straight to your inbox.

Unlocking Multi-Cloud Security: Panoptica's Graph-Based Approach

Discover why security teams rely on Panoptica's graph-based technology to navigate and prioritize risks across multi-cloud landscapes, enhancing accuracy and resilience in safeguarding diverse ecosystems.

thumbnail
I
Subscribe
Subscribe
 to
the Shift
!
Get
emerging insights
on emerging technology straight to your inbox.

The Shift keeps you at the forefront of cloud native modern applications, application security, generative AI, quantum computing, and other groundbreaking innovations that are shaping the future of technology.

Outshift Background