Anatomy of a trigger
Every trigger combines an action (what to run) with a schedule (when to run it):Schedule types
- Cron
- Interval
- Event / Conditional
Run on a cron expression in a given timezone — best for fixed times (“every night at 2am”).The expression is standard 5-field cron (
minute hour day-of-month month day-of-week).Actions
Cluster
Re-run a clustering definition on a schedule so groupings stay current as data grows.Taxonomy enrichment
Re-classify a collection against a taxonomy. Useincremental: true to enrich only new documents — far cheaper than re-running the whole collection.
Batch rerun & collection trigger
batch_rerun re-runs processing for a collection’s documents; collection_trigger fires a collection’s configured processing. Both take a collection_id in action_config.
Manage triggers
Run a trigger on demand (outside its schedule) to test it:
Related
- Clusters — define the clustering a
clustertrigger reruns - Taxonomies — define the taxonomy a
taxonomy_enrichmenttrigger applies - Alerts — get notified when content matches a condition
- Storage syncs — continuously ingest new files from object storage

