Skip to content

Commit

Permalink
Change noteburst maxConcurrentJobs to 1
Browse files Browse the repository at this point in the history
This seems better because the JupyterLab notebook execution endpoint is
synchronous, so we may need to also run the noteburst jobs
synchronously.
  • Loading branch information
jonathansick committed Sep 12, 2024
1 parent 56c6dc1 commit 4ede875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion applications/noteburst/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Noteburst is a notebook execution service for the Rubin Science Platform.
| config.worker.imageSelector | string | `"recommended"` | Nublado image stream to select: "recommended", "weekly" or "reference" |
| config.worker.jobTimeout | int | `300` | The default notebook execution timeout, in seconds. |
| config.worker.keepAlive | string | `"normal"` | Worker keep alive mode: "normal", "fast", "disabled" |
| config.worker.maxConcurrentJobs | int | `3` | Max number of concurrent notebook executions per worker |
| config.worker.maxConcurrentJobs | int | `1` | Max number of concurrent notebook executions per worker |
| config.worker.tokenLifetime | string | `"2419200"` | Worker token lifetime, in seconds. |
| config.worker.tokenScopes | string | `"exec:notebook,read:image,read:tap,read:alertdb"` | Nublado2 worker account's token scopes as a comma-separated list. |
| config.worker.workerCount | int | `1` | Number of workers to run |
Expand Down
2 changes: 1 addition & 1 deletion applications/noteburst/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ config:
jobTimeout: 300

# -- Max number of concurrent notebook executions per worker
maxConcurrentJobs: 3
maxConcurrentJobs: 1

# -- Worker token lifetime, in seconds.
tokenLifetime: "2419200"
Expand Down

0 comments on commit 4ede875

Please sign in to comment.