Skip to main content

Introduction

Tilebox Workflows can execute jobs in two ways: a one-time execution triggered by a user, typically a batch processing, and near-real-time execution based on specific external events. By defining trigger conditions, you can automatically submit jobs based on external events. Tilebox Workflows currently supports the following trigger conditions:

Cron Triggers

Trigger jobs based on a Cron schedule.

Storage Event Triggers

Trigger jobs after objects are created or modified in a storage location such as a cloud bucket.
Dataset Event Triggers, which will trigger jobs when new data points are ingested into a Tilebox dataset, are on the roadmap. Stay tuned for updates.

Automations

To create a trigger, define a special task that serves as a prototype. In response to a trigger condition met, this task will be submitted as a new job. Such tasks are referred to as automations. Each automation has a task identifier, a version, and input parameters, just like regular tasks. Automations also automatically provide a special trigger attribute that contains information about the event that initiated the task’s execution.

Automation Client

The Tilebox Workflows clients include sub-clients for inspecting automations and storage locations. Python also includes helpers for registering automation prototypes from task classes.

Listing Registered Automations

To list all registered automations, use the automation client.
Output

Registering Automations

To register an automation from code, use the Python automation client’s create_*_automation methods for each trigger type. You can also create and manage automations in the Tilebox Console. Refer to the documentation for each trigger type for more details.

Cron Triggers

Storage Event Triggers

Overview in the Tilebox Console

You can also use the Tilebox Console to manage automations. Visit the automations section to check it out.
Tilebox Workflows automations in the Tilebox Console
You can also register new automations or edit and delete existing ones directly from the console.
Tilebox Workflows automations in the Tilebox Console