akili run
Manage data product executions. Each time a data product runs (on schedule or on demand), it creates an execution record with status, timing, steps, and quality results.
Commands
Section titled “Commands”akili run trigger <product>
Section titled “akili run trigger <product>”Trigger a new execution for a data product.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
product | string | yes | Product name or ID |
Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--partition-key | Partition key override for the execution | ||
--force | false | Force re-execution even if the product is up to date |
Examples:
# Trigger an executionakili run trigger daily-orders
# Force re-executionakili run trigger daily-orders --force
# Trigger with partition keyakili run trigger daily-orders --partition-key "2025-03-14"akili run list <product>
Section titled “akili run list <product>”List executions for a specific data product.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
product | string | yes | Product name or ID |
Examples:
# List executionsakili run list daily-orders
# List as JSONakili run list daily-orders --jsonakili run get <id>
Section titled “akili run get <id>”Show detailed information about a specific execution.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Execution ID |
Examples:
# Get execution detailsakili run get exec-abc-123
# As JSON for scriptingakili run get exec-abc-123 --jsonakili run steps <id>
Section titled “akili run steps <id>”Show the execution steps for a specific run, including per-step status and duration.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Execution ID |
Examples:
# View execution stepsakili run steps exec-abc-123
# As JSONakili run steps exec-abc-123 --jsonakili run cancel <id>
Section titled “akili run cancel <id>”Cancel a running execution.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
id | string | yes | Execution ID |
Examples:
# Cancel an executionakili run cancel exec-abc-123