When adding a code location to Dagster Cloud with an Amazon ECS agent, you can use the container_context key on the location configuration to add additional ECS-specific configuration that will be applied to any ECS tasks associated with that code location.
Note: If you're using the Dagster Cloud Github action, the container_context key can also be set for each location in your dagster_cloud.yaml file.
The following example dagster_cloud.yaml file illustrates the available fields:
locations:-location_name: cloud-examples
image: dagster/dagster-cloud-examples:latest
code_source:package_name: dagster_cloud_examples
container_context:ecs:env_vars:- DATABASE_NAME=staging
- DATABASE_PASSWORD
secrets:-name:"MY_API_TOKEN"valueFrom:"arn:aws:secretsmanager:us-east-1:123456789012:secret:FOO-AbCdEf:token::"-name:"MY_PASSWORD"valueFrom:"arn:aws:secretsmanager:us-east-1:123456789012:secret:FOO-AbCdEf:password::"secrets_tags:-"my_tag_name"server_resources:# Resources for code servers launched by the agent for this locationcpu:256memory:512run_resources:# Resources for runs launched by the agent for this locationcpu:4096memory:16384execution_role_arn: arn:aws:iam::123456789012:role/MyECSExecutionRole
task_role_arn: arn:aws:iam::123456789012:role/MyECSTaskRole
mount_points:-sourceVolume: myEfsVolume
containerPath:"/mount/efs"readOnly:Truevolumes:-name: myEfsVolume
efsVolumeConfiguration:fileSystemId: fs-1234rootDirectory: /path/to/my/data
server_sidecar_containers:-name: DatadogAgent
image: public.ecr.aws/datadog/agent:latest
environment:-name: ECS_FARGATE
value:truerun_sidecar_containers:-name: DatadogAgent
image: public.ecr.aws/datadog/agent:latest
environment:-name: ECS_FARGATE
value:trueserver_ecs_tags:-key: MyEcsTagKey
value: MyEcsTagValue
run_ecs_tags:-key: MyEcsTagKeyWithoutValue
repository_credentials: MyRepositoryCredentialsSecretArn
Using the container_context.ecs.env_vars and container_context.ecs.secrets properties, you can configure environment variables and secrets for a specific code location.
A list of keys or key-value pairs to include in the task. If a value is not specified, the value will be pulled from the agent task. In the example above, FOO_ENV_VAR will be set to foo_value and BAR_ENV_VAR will be set to whatever value it has in the agent task.
A list of tag names. Each secret tagged with any of those tag names in AWS Secrets Manager will be included in the launched tasks as environment variables. The name of the environment variable will be the name of the secret, and the value of the environment variable will be the value of the secret.
Refer to the following guides for more info about environment variables:
This section describes the properties of the dagster.yaml configuration file used by Amazon ECS agents. Typically, this file is created by the CloudFormation template that deploys the agent and can be found within the agent task definition's command.
To change these properties, edit the CloudFormation template and redeploy the CloudFormation stack.
instance_class:module: dagster_cloud
class: DagsterCloudAgentInstance
dagster_cloud_api:agent_token: <Agent Token String>deployments:- <Deployment Name>- <Optional Additional Deployment Name>branch_deployments: <true|false>user_code_launcher:module: dagster_cloud.workspace.ecs
class: EcsUserCodeLauncher
config:cluster: <Cluster Name>subnets:- <Subnet Id 1>- <Subnet Id 2>security_group_ids:- <Security Group ID>service_discovery_namespace_id: <Service Discovery Namespace Id>execution_role_arn: <Task Execution Role Arn>task_role_arn: <Task Role Arn>log_group: <Log Group Name>launch_type: <"FARGATE"|"EC2">server_process_startup_timeout: <Timeout in seconds>server_resources:cpu: <CPU value>memory: <Memory value>server_sidecar_containers:-name: SidecarName
image: SidecarImage
<Additional container fields>run_resources:cpu: <CPU value>memory: <Memory value>run_sidecar_containers:-name: SidecarName
image: SidecarImage
<Additional container fields>mount_points:- <List of mountPoints to pass into register_task_definition>volumes:- <List of volumes to pass into register_task_definition>server_ecs_tags:-key: MyEcsTagKey
value: MyEcsTagValue
run_ecs_tags:-key: MyEcsTagKeyWithoutValue
repository_credentials: MyRepositoryCredentialsSecretArn
isolated_agents:enabled: <true|false>
An ECS launch type to use for your launched ECS tasks. The following are currently supported:
FARGATE
EC2 - Note: Using this launch type requires you to have an EC2 capacity provider installed and additional operational overhead to run the agent.
config.subnets
At least one subnet is required. Dagster Cloud tasks require a route to the internet so they can access our API server. How this requirement is satisfied depends on the type of subnet provided:
Public subnets - The ECS agent will assign each task a public IP address. Note that ECS tasks on EC2 launched within public subnets do not have access to the internet, so a public subnet will only work for Fargate tasks.
Private subnets - The ECS agent assumes you've configured a NAT gateway with an attached NAT gateway. Tasks will not be assigned a public IP address.
config.security_group_ids
A list of security groups to use for tasks launched by the agent.
The ECS agent launches each code location as its own ECS service. The agent communicates with these services via AWS CloudMap service discovery.
config.execution_role_arn
The ARN of the Amazon ECS task execution IAM role. This role allows ECS to interact with AWS resources on your behalf, such as getting an image from ECR or pushing logs to CloudWatch.
Note: This role must include a trust relationship that allows ECS to use it.
config.task_role_arn
The ARN of the Amazon ECS task IAM role. This role allows the containers running in the ECS task to interact with AWS.
Note: This role must include a trust relationship that allows ECS to use it.
The amount of time, in seconds, to wait for code to import when launching a new service for a code location. If your code takes an unusually long time to load after your ECS task starts up and results in timeouts in the Deployment tab, you can increase this setting above the default. Note This setting isn't applicable to the time it takes for a job to execute.
Default - 180 (seconds)
config.ecs_timeout
How long (in seconds) to wait for ECS to spin up a new service and task for a code server. If your ECS tasks take an unusually long time to start and result in timeouts, you can increase this setting above the default.
Default - 300 (seconds)
config.ecs_grace_period
How long (in seconds) to continue polling if an ECS API endpoint fails during creation of a new code server (because the ECS API is eventually consistent).
Additional sidecar containers to include along with the Dagster container. If set, must be a list of dictionaries with valid ECS container definitions.
Additional sidecar containers to include along with the Dagster container. If set, must be a list of dictionaries with valid ECS container definitions.
config.mount_points
Mount points to include in the Dagster container. If set, should be a list of dictionaries matching the mountPoints field when specifying a container definition to boto3.
config.volumes
Additional volumes to include in the task definition. If set, should be a list of dictionaries matching the volumes argument to register_task_definition in boto3.
config.server_ecs_tags
Additional ECS tags to include in the service for each code location. If set, must be a list of dictionaries, each with a key key and optional value key.
config.run_ecs_tags
Additional ECS tags to include in the task for each run. If set, must be a list of dictionaries, each with a key key and optional value key.
config.repository_credentials
Optional arn of the secret to authenticate into your private container registry. This does not apply if you are leveraging ECR for your images, see https://docs.aws.amazon.com/AmazonECS/latest/userguide/private-auth.html.