Quick start#
This section gives you a quick introduction to writing and running Union workflows.
Sign up for Union Serverless#
First, sign up for Union Serverless:
Once you’ve received confirmation that your sign up succeeded, navigate to the UI at serverless.union.ai.
To get started, try selecting the default project, called flytesnacks
, from the list of projects.
This will take you to flytesnacks
project dashboard:
Set up your Python environment#
Set up a Python virtual environment with conda
, venv
or a similar tool.
Python 3.8 or higher is required. Python 3.11 is the current recommended version.
Install conda
using Miniconda, then run the following to create
a new Python environment:
$ conda create -n union-env python=3.11
$ conda activate union-env
Install Python using your package manager or from Python.org, then run the following to create a virtual environment:
$ python -m venv .venv
$ source .venv/bin/activate
Install the union
package#
After setting up your virtual environment and activating it, install the union
Python package:
$ pip install -U union
This will install:
The
union
SDKThe
flytekit
SDK
Configure the union
CLI#
To register and run workflows on your Union instance using the union
CLI, you will need to create a configuration file that contains your Union connection information.
To do this, run the following command:
$ union create login --serverless
This will create the ~/.union/config.yaml
with the configuration information to connect to Union Serverless.
Note
These directions apply to Union Serverless. To configure a connection to your Union instance in Union BYOC, see the BYOC version of this page.
By default, the union
CLI will look for a configuration file at ~/.union/config.yaml
. (See union CLI for more details.)
You can override this behavior to specify a different configuration file by setting the UNION_CONFIG
environment variable:
export UNION_CONFIG=~/.my-config-location/my-config.yaml
Alternatively, you can always specify the configuration file on the command line when invoking union
by using the --config
flag:
$ union --config ~/.my-config-location/my-config.yaml run my_script.py my_workflow
Warning
If you have previously used Union, you may have configuration files left over that will interfere with access to Union Serverless through the union
CLI tool.
Make sure to remove any files in ~/.unionai/
or ~/.union/
and unset the environment variables UNIONAI_CONFIG
and UNION_CONFIG
to avoid conflicts.
Create a “Hello, world!” workflow#
To create an example workflow file, copy the following into a file called hello.py
:
from flytekit import task, workflow
@task
def say_hello(name: str) -> str:
return f"Hello, {name}!"
@workflow
def hello_world_wf(name: str = 'world') -> str:
res = say_hello(name=name)
return res
Tasks and workflows#
The “Hello, world!” code contains a task and a workflow, which are Python functions decorated with the @task
and @workflow
decorators, respectively.
For more information, see the task and workflow documentation.
Run the workflow locally in Python#
You can run the workflow in your local Python environment with the union run
command:
$ union run hello.py hello_world_wf
You should see the following output:
Running Execution on local.
Hello, world!
Since the @workflow
function takes an argument called name
, you can also pass that in
as a command-line argument like this:
$ union run hello.py hello_world_wf --name Ada
You should see the following output:
Running Execution on local.
Hello, Ada!
Run the workflow remotely on Union#
To run the workflow remotely on Union, add the --remote
flag:
$ union run --remote hello.py hello_world_wf --name "Ada"
The output displays a URL that links to the workflow execution in the UI:
[✔] Go to https://serverless.union.ai/org/... to see execution in the UI.
Click the link to see the execution in the UI.