aws / aws/containers-roadmap

[ECS] Support for FSx for Lustre in ECS on EC2 and Fargate

Open
#650 27 comments 90 reactions 1 assignee Claimed by @BWashishtha View on GitHub
ECS Fargate
Dominant language
Shell
Stars
5.4k
Forks
334
PR merge metrics
No merged PRs in 30d

Description

Similarly to our upcoming support for EFS, we are considering support for FSx for Lustre filesystems within an ECS task definition. A sample task definition may look like the following (subject to change as we work on the design):

```json
{
"family": "my-task-with-fsx",
"volumes": [
{
"name": "myFSxVolume",
"FSxLustreVolumeConfiguration": {
"filesystem": "fs-1234"
}
}
],
"containerDefinitions": [
{
"name": "container-using-fsx",
"mountPoints": [
{
"sourceVolume": "myFSxVolume",
"containerPath": "/mount/fsx",
"readOnly": true
}
]
}
]
}

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.