From b67c90ba5a343f300011704b87a78334fefb3cc2 Mon Sep 17 00:00:00 2001 From: Charles Shenton Date: Wed, 11 Oct 2017 11:31:51 +1100 Subject: [PATCH] Update Fine Job Queue Page (#5854) The current Fine Job Queue page refers to a one-pod-per-job setup in the intro content (as in the Coarse Job Queue Page) but then proceeds to talk about a multiple jobs per pod setup. I've edited the intro content to reflect that. --- docs/tasks/job/fine-parallel-processing-work-queue/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/job/fine-parallel-processing-work-queue/index.md b/docs/tasks/job/fine-parallel-processing-work-queue/index.md index 9d19895039..8384b7e337 100644 --- a/docs/tasks/job/fine-parallel-processing-work-queue/index.md +++ b/docs/tasks/job/fine-parallel-processing-work-queue/index.md @@ -5,14 +5,14 @@ title: Fine Parallel Processing Using a Work Queue * TOC {:toc} -# Example: Job with Work Queue with Pod Per Work Item +# Example: Job with Work Queue with Multiple Work Items Per Pod In this example, we will run a Kubernetes Job with multiple parallel worker processes. You may want to be familiar with the basic, non-parallel, use of [Job](/docs/concepts/jobs/run-to-completion-finite-workloads/) first. In this example, as each pod is created, it picks up one unit of work -from a task queue, completes it, deletes it from the queue, and exits. +from a task queue, processes it, and repeats until the end of the queue is reached. Here is an overview of the steps in this example: