Flowmium

Flowmium is a workflow orchestrator that uses Kubernetes. You can define and run a YAML workflow of containers or you can run a python workflow where each function runs as a kubernetes pod.

A python workflow would look like this

```python from flowmium import Flow, FlowContext from flowmium.serializers import plaintext, jsontext, pkl

flow = Flow("testing")

@flow.task(serializer=json_text) def foo() -> str: return "Hallo world"

@flow.task({"inputstr": foo}, serializer=plaintext) def replacelettera(inputstr: str, flowctx: FlowContext) -> str: return inputstr.replace("a", "e") + str(flowctx.task_id)

@flow.task({"inputstr": foo}, serializer=pkl) def replacelettert(inputstr: str) -> str: return input_str.replace("t", "d")

@flow.task( {"first": replacelettert, "second": replacelettera}, serializer=plain_text ) def concat(first: str, second: str) -> str: return f"{first} {second}"

if name == "main": flow.run()

```

Getting started

flowctl CLI

The flowctl CLI is used to monitor current status of workflows, submit new workflows and download artifacts.

| Action | Command | | ------------------- | ----------------------------------------------------------- | | List workflows | flowctl list | | Use explicit URL | flowctl --url http://localhost:8080 list | | Submit a YAML flow | flowctl submit flow.yaml | | Download artefact | flowctl download <flow-id> <output-name> <local-dir-path> | | Subscribe to events | flowctl subscribe | | Describe a flow | flowctl describe <id> | | Create secrets | flowctl secret create <key> <value> | | Update secret | flowctl secret update <key> <value> | | Delete secret | flowctl secret delete <key> |

NOTE: Secrets are stored in the server and can be referred to set environment variable values in YAML definition or the Python workflows. This is so you don't have to commit secrets to your repository. They don't however use Kubernetes secrets, they are set as normal environment variables when workflow tasks are deployed as a Job.

Running from source

Running python flow example from source

These instructions will allow you to run an example python flow (framework/tests/example_flow.py) all from local source without pulling from upstream (including the executor). Use this to validate your changes. Instructions assume you are at the root of the repo.

Running e2e tests

Running unit tests for python framework

Run make test from framework/ path.