Flowmium is a workflow orchestrator that uses kubernetes written in rust.
These designs are still in early stages, detailed documentation is yet to be done.
POST /api/v1/job
and PUT /api/v1/job
DAG container job definition
yaml
name: ""
schedule: ""
tasks:
- name: ""
image: ""
depends: ["", ""]
cmd: [],
env:
- name: ""
value: ""
- name: ""
fromInput: ""
- name: ""
fromSecret: ""
inputs:
- from: ""
path: ""
outputs:
- name: ""
path: ""
config:
active_deadline_seconds: 34
affinity: 34
tolerations: 34
image_pull_secrets: 34
priority: 3
limits: 23
requests: 23
Python framework job definition
yaml
python:
image: ""
registry: ""
GET /api/v1/job/
and GET /api/v1/job/{name}
DELETE /api/v1/job/{name}
POST /api/v1/registry
and PUT /api/v1/registry
GET /api/v1/registry/
DELETE /api/v1/registry
POST /api/v1/secret
and PUT /api/v1/secret
GET /api/v1/secret/
DELETE /api/v1/secret
```python from flowmium import flow
@flow.task() def foo1(context): return 1
@flow.task({'arg1': foo1}) def foo2(context, arg1) print(context.secrets) return arg_1 + 1
@flow.task({'arg1': foo1}, workers=8) def foo3(context, arg1) print(context.workerid) # used for manual sharding return arg1 + 2
@flow.task(depends={'arg1': foo2, 'arg2': foo3}, secrets=[""], config={}) def foo3(context, arg1, arg2) return arg1 * arg2
flow.run(name="", schedule="", secrets=[""], config={})
```