
Moving Data with Mage on AWS ECS
In this blog, I will review how to deploy a Mage Docker container with Amazon Elastic Container Service (ECS) on AWS Fargate and Amazon Elastic Container Registry (ECR).
aws --version.
Then, type aws configure
and add Access key ID and Secret access key you noted from the previous step.1
2
3
4
5
6
7
8
9
10
11
12
13
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Service": "ecs-tasks.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
[project_name]
in ARG PROJECT_NAME
with my project name: ARG PROJECT_NAME=[demo_mage].
ENV REQUIRE_USER_AUTHENTICATION=1
ENV MAGE_ACCESS_TOKEN_EXPIRY_TIME=1440
docker build -t demo_mage .
docker run -it -p 6789:6789 demo_mage
. To view the Mage front end, go to http://localhost:6789 to get redirected to the login page. Success! It is time to move from running Mage on my local machine to running it remotely.1
2
3
4
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin <aws-account-id>.dkr.ecr.us-east-1.amazonaws.com
docker build -t demo-mage .
docker tag demo-mage:latest <aws-account-id>.dkr.ecr.us-east-1.amazonaws.com/demo-mage:latest
docker push <aws-account-id>.dkr.ecr.us-east-1.amazonaws.com/demo-mage:latest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"containerDefinitions": [
{
"name": "mage-data-prep-start",
"image": "<aws-account-id>.dkr.ecr.us-east-1.amazonaws.com/demo-mage:latest",
"portMappings": [
{
"containerPort": 6789,
"hostPort": 6789,
"protocol": "tcp"
}
],
"essential": true,
"entryPoint": ["sh", "-c"],
"command": ["mage init default_repo && mage start default_repo"],
"interactive": true,
"pseudoTerminal": true
}
],
"family": "mage-data-prep",
"networkMode": "awsvpc",
"requiresCompatibilities": ["FARGATE", "EC2"],
"cpu": "512",
"memory": "1024",
"executionRoleArn": "arn:aws:iam::<aws-account-id>:role/ecsExecutionRole"
}