akili ingestion
Manage data ingestion for products. These commands let you inspect ingestion state (cursor position, last ingestion time), trigger historical backfills, and list ingestion status across a tenant.
Commands
Section titled “Commands”akili ingestion state <product>
Section titled “akili ingestion state <product>”Show the current ingestion state for a product, including status, last ingested timestamp, cursor position, and strategy.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
product | string | yes | Product name or ID |
Examples:
# View ingestion stateakili ingestion state daily-orders
# As JSONakili ingestion state daily-orders --jsonIf no ingestion state exists for the product, a message is displayed instead.
akili ingestion backfill <product>
Section titled “akili ingestion backfill <product>”Trigger a historical backfill for a product. Optionally specify a date range and strategy override.
Arguments:
| Argument | Type | Required | Description |
|---|---|---|---|
product | string | yes | Product name or ID |
Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--from | Start date in YYYY-MM-DD format | ||
--to | End date in YYYY-MM-DD format | ||
--strategy | Strategy override for the backfill |
Examples:
# Trigger a full backfillakili ingestion backfill daily-orders
# Backfill a specific date rangeakili ingestion backfill daily-orders --from 2025-01-01 --to 2025-03-31
# Backfill with strategy overrideakili ingestion backfill daily-orders \ --from 2025-01-01 \ --to 2025-12-31 \ --strategy fullakili ingestion list
Section titled “akili ingestion list”List ingestion states for all products in a tenant.
Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--tenant-id | Tenant ID (required) |
Examples:
# List all ingestion states for a tenantakili ingestion list --tenant-id abc-123
# As JSONakili ingestion list --tenant-id abc-123 --json