DEV Community

Cover image for How to sync EFS and S3 every 5 min in AWS
Federico Navarrete
Federico Navarrete

Posted on • Updated on

How to sync EFS and S3 every 5 min in AWS

DataSync is a powerful tool to move data between different AWS storage options like S3, EFS, and EFx. However, there is a catch, you can only run a scheduled task every hour (Nov 2021), you cannot create a custom cron expression for a lower time like */5 * * * *. My guessing about this restriction is that this feature was planned for Data Warehousing, not for active synchronization.

My challenge started when I had to read some XMLs using RDS for SQL Server. RDS for SQL Server can read the files from S3 natively, but my files came from several micro-services running in Fargate that have only access to EFS as a volume (for S3, you must use a 3rd party plugin that requires your container to run as privileged and this is not authorized). These files came from external services at different times of the day and represented several gigas to transfer.

In the beginning, I was trying to find a way to read the EFS from SQL Server but it didn't work. RDS doesn't have an option to read EFS because it runs in Windows, and there is not a Linux option available yet, which could potentially give us access to EFS.

After several failed attempts, I created a workaround that involves:

  1. A DataSync task for creating the basic task and synchronizing the data.
  2. A Lambda function for running the task.
  3. An EventBridge rule for triggering the Lambda function every 5 min.

DataSync

Step 1:

Configure your data source (EFS, for instance):

Step 1

Step 2:

Choose the destination (S3, for instance):

Step 2

Step 3:

Configure what you want to move.

Step 4:

Review your new task and create it.


Lambda

This is the Python script that I wrote:

import boto3

client = boto3.client('datasync', region_name='YOUR_REGION')

def lambda_handler(event,context):

    response = client.start_task_execution(
        TaskArn='arn:aws:datasync:YOUR_REGION:YOUR_USER_ID:task/YOUR_TASK_ID'
    )
Enter fullscreen mode Exit fullscreen mode

Where,

  • YOUR_REGION is the location where you want to run it like eu-west-1.
  • YOUR_USER_ID is the user that is going to run the task.
  • YOUR_TASK_ID is the task ID created in the DataSync.

EventBridge

Create a new rule that runs in your expected schedule.

Step 1:

Create a new rule:

New rule

Step 2:

Configure your schedule:

Step 2

Step 3:

Choose your lambda function:

Step 3

Step 4:

Review your new rule and create it.

And that's all. Now, you can run your task DataSync in your required schedule.

Follow me on:

Personal LinkedIn YouTube Instagram Cyber Prophets Sharing Your Stories
Personal LinkedIn YouTube Instagram RedCircle Podcast RedCircle Podcast

sponsor me

Top comments (0)