Update coarse-parallel-processing-work-queue.md

Update detailed description to match overview.
pull/39584/head
Joe Bowbeer 2023-02-20 18:34:53 -08:00 committed by GitHub
parent cded548ac6
commit 981f21e008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ Here is an overview of the steps in this example:
1. **Create a queue, and fill it with messages.** Each message represents one task to be done. In
this example, a message is an integer that we will do a lengthy computation on.
1. **Start a Job that works on tasks from the queue**. The Job starts several pods. Each pod takes
one task from the message queue, processes it, and repeats until the end of the queue is reached.
one task from the message queue, processes it, and exits.
## {{% heading "prerequisites" %}}