Skip to content

Commit cd5919f

Browse files
authored
Merge pull request #39604 from kinzhi/kinzhi254
[zh-cn]SYNC coarse-parallel-processing-work-queue.md
2 parents 11c3289 + 35eda2c commit cd5919f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

content/zh-cn/docs/tasks/job/coarse-parallel-processing-work-queue.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Here is an overview of the steps in this example:
2828
1. **Create a queue, and fill it with messages.** Each message represents one task to be done. In
2929
this example, a message is an integer that we will do a lengthy computation on.
3030
1. **Start a Job that works on tasks from the queue**. The Job starts several pods. Each pod takes
31-
one task from the message queue, processes it, and repeats until the end of the queue is reached.
31+
one task from the message queue, processes it, and exits.
3232
-->
3333
本例中,我们会运行包含多个并行工作进程的 Kubernetes Job。
3434

@@ -45,8 +45,7 @@ Here is an overview of the steps in this example:
4545
我们将基于这个整数值执行很长的计算操作。
4646

4747
1. **启动一个在队列中执行这些任务的 Job**
48-
该 Job 启动多个 Pod。每个 Pod 从消息队列中取走一个任务,处理它,
49-
然后重复执行,直到队列的队尾。
48+
该 Job 启动多个 Pod。每个 Pod 从消息队列中取走一个任务,处理任务,然后退出。
5049

5150
## {{% heading "prerequisites" %}}
5251

0 commit comments

Comments
 (0)