-
Notifications
You must be signed in to change notification settings - Fork 1
CLI Usage
a.metwalli edited this page Feb 6, 2026
·
1 revision
-
floe validate -c <config> [--entities <name[,name...]>] [--output text|json]- Validates YAML config.
-
--output jsonprints a single JSON object to stdout.
-
floe run -c <config> [--run-id <id>] [--entities <name[,name...]>]- Executes ingestion.
- Reports are written under
<report.path>/run_<run_id>/.... -
-caccepts local paths or cloud URIs (s3://,gs://,abfs://).
Validate a config:
floe validate -c example/config.yml
floe validate -c example/config.yml --entities customer
floe validate -c example/config.yml --output jsonRun a single entity:
floe run -c example/config.yml --entities customerRun with a custom run id:
floe run -c example/config.yml --entities customer --run-id dev-001- Reports:
report/run_<run_id>/run.summary.json - Per-entity report:
report/run_<run_id>/<entity.name>/run.json
See docs/report.md for details.