1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 01:02:09 +02:00
tldr/pages.ko/common/aws-batch.md
ECMs 19130c0c55
aws: update Korean translation; aws-{batch, cloud9},subcommand-mention: add Korean translation (#10756)
* aws: update Korean translation

* aws-batch: add Korean translation

* aws-cloud9: add Korean translation

* subcommand-mention: add Korean translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-10-01 14:18:50 +05:30

28 lines
874 B
Markdown

# aws batch
> AWS Batch를 통해 배치 컴퓨팅 워크로드를 실행합니다.
> 더 많은 정보: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/batch/index.html>.
- 실행 중인 배치 작업 목록:
`aws batch list-jobs --job-queue {{queue_name}}`
- 컴퓨팅 환경 생성:
`aws batch create-compute-environment --compute-environment-name {{compute_environment_name}} --type {{type}}`
- 배치 작업 큐 생성:
`aws batch create-job-queue --job-queue-name {{queue_name}} --priority {{priority}} --compute-environment-order {{compute_environment}}`
- 작업 제출:
`aws batch submit-job --job-name {{job_name}} --job-queue {{job_queue}} --job-definition {{job_definition}}`
- 배치 작업 목록 설명:
`aws batch describe-jobs --jobs {{jobs}}`
- 작업 취소:
`aws batch cancel-job --job-id {{job_id}} --reason {{reason}}`