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

DM-46137: Deploy Times Square 0.13.0 #3665

Merged
merged 5 commits into from
Sep 12, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Change noteburst maxConcurrentJobs to 1
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
commit 3d2bd2520a881cfbde8bb9246f5ac98cf5c0e279
2 changes: 1 addition & 1 deletion applications/noteburst/README.md
Original file line number Diff line number Diff line change
@@ -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 |
2 changes: 1 addition & 1 deletion applications/noteburst/values.yaml
Original file line number Diff line number Diff line change
@@ -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"
Loading