Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add link to long polling activation #2415

Merged
merged 6 commits into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/components/concepts/job-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ This is expensive in terms of resource usage, because both the worker and the se

With **long polling**, a request will be kept open while no jobs are available. The request is completed when at least one job becomes available.

**Long Polling** is set during [job activation with the parameter `request-timeout`](../../apis-tools/grpc/#activatejobs-rpc).

### Job queueing

Zeebe decouples creation of jobs from performing the work on them. It is always possible to create jobs at the highest possible rate, regardless if there is a job worker available to work on them. This is possible because Zeebe queues jobs until workers request them.
Expand Down
2 changes: 2 additions & 0 deletions versioned_docs/version-8.0/components/concepts/job-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ This is expensive in terms of resource usage, because both the worker and the se

With **long polling**, a request will be kept open while no jobs are available. The request is completed when at least one job becomes available.

**Long Polling** is set during [job activation with the parameter `request-timeout`](../../apis-tools/grpc/#activatejobs-rpc).

### Job queueing

Zeebe decouples creation of jobs from performing the work on them. It is always possible to create jobs at the highest possible rate, regardless if there is a job worker available to work on them. This is possible because Zeebe queues jobs until workers request them.
Expand Down
2 changes: 2 additions & 0 deletions versioned_docs/version-8.1/components/concepts/job-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ This is expensive in terms of resource usage, because both the worker and the se

With **long polling**, a request will be kept open while no jobs are available. The request is completed when at least one job becomes available.

**Long Polling** is set during [job activation with the parameter `request-timeout`](../../apis-tools/grpc/#activatejobs-rpc).

### Job queueing

Zeebe decouples creation of jobs from performing the work on them. It is always possible to create jobs at the highest possible rate, regardless if there is a job worker available to work on them. This is possible because Zeebe queues jobs until workers request them.
Expand Down
2 changes: 2 additions & 0 deletions versioned_docs/version-8.2/components/concepts/job-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ This is expensive in terms of resource usage, because both the worker and the se

With **long polling**, a request will be kept open while no jobs are available. The request is completed when at least one job becomes available.

**Long Polling** is set during [job activation with the parameter `request-timeout`](../../apis-tools/grpc/#activatejobs-rpc).

### Job queueing

Zeebe decouples creation of jobs from performing the work on them. It is always possible to create jobs at the highest possible rate, regardless if there is a job worker available to work on them. This is possible because Zeebe queues jobs until workers request them.
Expand Down
Loading