add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,28 @@
# 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}}`