Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added ECS ulimit support #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

minzhang28
Copy link

  • fixed the test data file path issue
  • added Docker Compose to ECS ulimit support

docker-compose input

    ulimits:
      nproc: 65535
      nofile:
        soft: 20000
        hard: 40000

ECS task definition output

            "ulimits": [
                {
                  "hardLimit": 65535,
                  "name": "nproc",
                  "softLimit": 65535

                },
                {
                  "hardLimit": 40000,
                  "name": "nofile",
                  "softLimit": 20000

                }
            ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant