jupyter-scheduler
jupyter-scheduler copied to clipboard
Run Jupyter notebooks as jobs
From @ellisonbg: > I think the way to handle this is to allow a configurable option in our backend that allows users to specify the maximum "staleness" for a job....
### Problem Currently, the idempotency token and tags are shown in the "additional options" sections of the create job form using the "advanced options" extension point. This requires extension point...
### Problem From @ellisonbg 's [comment](https://github.com/jupyter-server/jupyter-scheduler/pull/186#pullrequestreview-1152327399) on #186: "What happens if the user closes the panel while the job is being created and job creation fails? I guess there won't...
## Summary Implement these features for `create_job` API - **timeout_seconds** timeout in seconds for the job to complete - **retry_on_timeout** whether to retry if a timeout has occurred - **max_retries**...
### Problem Our current `errors` object used for the create-job form uses a mapping from input name to error (as a string). For parameters, this is cumbersome, because parameters are...
I would like to suggest to extend the support of jupyter-scheduler to JupyterHub. I feel this could be beneficial for several use cases. For example in our case we use...
Adds auto-download functionality. For packaging input folder, this PR was superseded by https://github.com/jupyter-server/jupyter-scheduler/pull/510.
### Problem Currently, the jupyter-scheduler creates a scheduler.sqlite file during bootstrap. ### Proposed solution It would be beneficial to delay the creation of the database at the time of first...
### Problem Python 3.12 is not explicitly supported / is not listed in `pyproject.toml` https://github.com/jupyter-server/jupyter-scheduler/blob/main/pyproject.toml#L16. ### Proposed solution Test, add explicit support for Python 3.12 in `pyproject.toml` https://github.com/jupyter-server/jupyter-scheduler/blob/main/pyproject.toml#L16. ### Additional...