Background jobs on Kubernetes
Project description
Kubicle
Python background jobs on Kubernetes
-> No runtime dependencies, simply run Python functions on Kubernetes and get the results back.
Installation
pip install kubicle
Usage
Define a python function with inputs and an output that use pydantic BaseModel
from pydantic import BaseModel
class Foo(BaseModel):
a: int
b: str
class Bar(BaseModel):
c: float
d: bool
def call_me_remote(foo: Foo) -> Bar:
...
Run as a Kubernetes job
from kubicle import Runner
os.environ["JOB_IMG"] = "foo/bar:latest"
runner = Runner()
job = runner.run(call_me_remote, Foo(a=1, b="hello"))
Wait for the job to finish
from kubicle import JobStatus
while True:
job.refresh()
if job.status == JobStatus.FINISHED:
break
Get the result
bar = Bar.model_validate_json(job.result)
Local
When in development it can be handy to run the job locally.
Do this by setting env var JOB_LOCAL=true
or passing the parameter on object creation Runner(local=true)
and the job will execute using multiprocessing.
Backends
Job storage can be backed by:
- Sqlite
- Postgresql
Sqlite will be used by default. To use postgres simply configure the env vars:
DB_TYPE=postgres
DB_NAME=jobs
DB_HOST=localhost
DB_USER=postgres
DB_PASS=abc123
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file kubicle-0.1.14.tar.gz
.
File metadata
- Download URL: kubicle-0.1.14.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ced3ec8ea3f3bb626b718f3b86861e0ccf60068c701570842b004377f96e6a3 |
|
MD5 | dde4871f13ce565b476085166b9a28a0 |
|
BLAKE2b-256 | 0595f7c9495b4ba5dff3590eaacfd33cf8f089d496967a9e81b2144d755b728e |
File details
Details for the file kubicle-0.1.14-py3-none-any.whl
.
File metadata
- Download URL: kubicle-0.1.14-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50c094ecc0c54f837d79e28d086b5de32bf527411dc8213bc621193afdad3b1d |
|
MD5 | d42abaa8d36941a6a58e75ce6a13b651 |
|
BLAKE2b-256 | 4127b814ee6ab144bb21ea242c399fc97ed8e60658fbfe476aa4eb3154b2f70c |