Flowmium

Flowmium is a workflow orchestrator that uses kubernetes written in rust.

Draft design notes

These designs are still in early stages, detailed documentation is yet to be done.

Endpoints and job models

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: ""

Python framework design and usage example

```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={})

prints yaml DAG container job definition to run each function (task) as a pod

which function to run in will be specified by CLI arguments

the flow object will take care of parsing the arguments

```