-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HPCC-31248 k8s multi-thor queue target
Add ability for k8s Thor definitions to specify additional queues, such that multiple disparate Thor's can [also] listen to the same named queue. This allows, for example, separate Thor's that are bound to different availability zone node pools, to be configured to listen to a single queue. Signed-off-by: Jake Smith <[email protected]>
- Loading branch information
Showing
6 changed files
with
102 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
thor: | ||
- name: thor1 | ||
auxQueues: [ thor ] | ||
numWorkers: 1 | ||
maxJobs: 1 | ||
maxGraphs: 1 | ||
- name: thor2 | ||
auxQueues: [ thor ] | ||
numWorkers: 2 | ||
maxJobs: 1 | ||
maxGraphs: 1 | ||
- name: thor3 | ||
auxQueues: [ thor ] | ||
numWorkers: 3 | ||
maxJobs: 1 | ||
maxGraphs: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
thor: | ||
- name: thor1 | ||
auxQueues: [ thor ] | ||
numWorkers: 2 | ||
maxJobs: 1 | ||
maxGraphs: 1 | ||
- name: thor2 | ||
auxQueues: [ thor ] | ||
numWorkers: 2 | ||
maxJobs: 1 | ||
maxGraphs: 1 | ||
- name: thor3 | ||
auxQueues: [ thor ] | ||
numWorkers: 2 | ||
maxJobs: 1 | ||
maxGraphs: 1 |