Skip to main content

A lightweight python script scheduler

Project description

gluetube

todo

roadmap

0.1.0 roadmap

  • run pipeline in isolated env
  • autodiscover pipelines
  • tracking status and stages of pipeline
  • shared variables across pipelines
  • pipeline scheduler
  • cron scheduling
  • at scheduling (run once at date time)
  • gluetube daemon
  • sqlite database schema
  • dockerfile
  • hello world tutorial
  • encrypted key value database
  • 50%+ test coverage
  • cli v1 (daemon control, modify scheduling, view pipelines and runs)
  • pip install (directory mgmt, upgrades, etc)
  • github actions

0.2.0 roadmap

  • remote shell connector (for executing cli apps on systems. e.g. ansible, rancid, etc)
  • re-run pipeline if crashed. specify max retries
  • git pull repo of pipelines into pipeline_dir
  • option to define (name, schedule) in pipeline (incl. run pipeline on change to get new potential name, schedule etc.)
  • a 'gluetube pipeline --clean' and 'gluetube pipeline --cleanall' to remove .venv's that are made

0.3.0 roadmap

  • frontend web ui
  • REST api endpoint to trigger running pipeline
  • development pipeline mode (verbose output for testing pipeline runs)

0.4.0 roadmap

  • dynamic webhook url that pipeline can access (for event listener type pipelines)
  • gracefully handle SIG[TERM|KILL] and ensure it waits for any running pipelines to stop or manually stop them
  • .rpm
  • .deb

0.5.0 roadmap

  • cli v2
  • pipeline developement mode (ability to see the stdout of the pipeline to track it's run)

installation

adduser gluetube

pip install --user gluetube

gluetube --configure

gluetube --initdb

gluetube daemon --background

gluetube daemon --stop

OR

docker volume create gluetube

docker run -d --init -v gluetube:/home/gluetube/.gluetube ctomkow/gluetube

todo: systemd unit file (when rpm/deb is built, it will include a unit file since the packages are run as root)

usage

gluetube --help

gluetube summary

gluetube schedule 1 --now

dev env

docker build -t gluetube-dev:0.1.0 -f dockerfile.dev .

docker volume create gluetube-db

docker run -itd --name gluetube-dev --net=host -v ~/code/gluetube/gluetube:/home/gluetube/.local/lib/python3.10/site-packages/gluetube -v ~/code/pipelines:/home/gluetube/.gluetube/pipelines -v gluetube-db:/home/gluetube/.gluetube/db gluetube-dev:0.1.0

docker exec -it gluetube bash

cd ~/.local/lib/python3.10/site-packages/gluetube

./gluetube.py --initdb

design

Interfaces (cli, gui) interact with the gluetubed socket. The daemon is responsible for making changes to both the scheduler and the database. Treat the database only as a user facing state view.

If a pipeline is in the database, then it should be scheduled. It can be paused and not running, but still registered in the scheduler. Then, if a pipeline is removed, it is deleted from the database and deleted from the scheduler.

Remember, don't touch the db directly. All write should be through an RPC call, otherwise there will be db/scheduler mis-matches which whould require a daemon reload to resolve.

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

gluetube-0.1.0.dev4.tar.gz (27.5 kB view hashes)

Uploaded Source

Built Distribution

gluetube-0.1.0.dev4-py3-none-any.whl (31.7 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