Skip to main content

Argo-Workflow backend extension for Jupyter-Scheduler.

Project description

argo-jupyter-scheduler

PyPI - Version PyPI - Python Version


Table of Contents

Argo-Jupyter-Scheduler

Submit longing running notebooks to run without the need to keep your JupyterLab server running. And submit a notebook to run on a specified schedule.

Installation

pip install argo-jupyter-scheduler

What is it?

Argo-Jupyter-Scheduler is a plugin to the Jupyter-Scheduler JupyterLab extension.

What does that mean?

This means this is an application that gets installed in the JupyterLab base image and runs as an extension in JupyterLab. Specifically, you will see this icon at the bottom of the JupyterLab Launcher tab:

Screenshot 2023-07-12 at 20 48 23

And this icon on the toolbar of your Jupyter Notebook:

jupyter-scheduler-icon

This also means, as a lab extension, this application is running within each user's separate JupyterLab server. The record of the notebooks you've submitted is specific to you and you only. There is no central Jupyter-Scheduler.

However, instead of using the base Jupyter-Scheduler, we are using Argo-Jupyter-Scheduler.

Why?

If you want to run your Jupyter Notebook on a schedule, you need to be assured that the notebook will be executed at the times you specified. The fundamental limitation with Jupyter-Scheduler is that when your JupyterLab server is not running, Jupyter-Scheduler is not running. Then the notebooks you had scheduled won't run. What about notebooks that you want to run right now? If the JupyterLab server is down, then how will the status of the notebook run be recorded?

The solution is Argo-Jupyter-Scheduler: Jupyter-Scheduler front-end with an Argo-Workflows back-end.

A deeper dive

In the Jupyter-Scheduler lab extension, you can create two things, a Job and a Job Definition.

Job

A Job, or notebook job, is when you submit your notebook to run.

In Argo-Jupyter-Scheduler, this Job translates into a Workflow in Argo-Workflows. So when you create a Job, your notebook job will create a Workflow that will run regardless of whether or not your JupyterLab server is.

At the moment, permission to submit Jobs is required, managed by the Keycloak roles for the argo-server-sso client. If your user has either the argo-admin or the argo-developer roles, they will be permitted to create and submit Jobs (and Job Definitions).

We are also relying on the Nebari Workflow Controller to ensure the user's home directory and conda-store environments are mounted to the Workflow. This allows us to ensure:

  • the files in the user's home directory can be used by the notebook job
  • the output of the notebook can be saved locally
  • when the conda environment that is used gets updated, it is also updated for the notebook job (helpful for scheduled jobs)
  • the node-selector and image you submit your notebook job from are the same ones used by the workflow

Job Definition

A Job-Definition is simply a way to create to Jobs that run on a specified schedule.

In Argo-Jupyter-Scheduler, Job Definition translate into a Cron-Workflow in Argo-Worflows. So when you create a Job Definition, you create a Cron-Workflow which in turn creates a Workflow to run when scheduled.

A Job is to Workflow as Job Definition is to Cron-Workflow.

Internals

Jupyter-Scheduler creates and uses a scheduler.sqlite database to manage and keep track of the Jobs and Job Definitions. If you can ensure this database is accessible and can be updated when the status of a job or a job definition change, then you can ensure the view the user sees from JupyterLab match is accurate.

By default this database is located at ~/.local/share/jupyter/scheduler.sqlite but this is a trailet that can be modified. And since we have access to this database, we can update the database directly from the workflow itself.

To acommplish this, the workflow runs in two steps. First the workflow runs the notebook, using papermill and the conda environment specified. And second, depending on the success of this notebook run, updates the database with this status.

And when a job definition is created, a corresponding cron-workflow is created. To ensure the database is properly updated, the workflow that the cron-workflow creates has three steps. First, create a job record in the database with a status of IN PROGRESS. Second, run the notebook, again using papermill and the conda environment specified. And third, update the newly created job record with the status of the notebook run.

License

argo-jupyter-scheduler is distributed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

argo_jupyter_scheduler-0.0.1.tar.gz (15.1 kB view hashes)

Uploaded Source

Built Distribution

argo_jupyter_scheduler-0.0.1-py3-none-any.whl (13.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page