-
Notifications
You must be signed in to change notification settings - Fork 1
Examples
a.metwalli edited this page Feb 6, 2026
·
1 revision
floe run -c example/config.yml --entities customerExpected outputs (default example config paths):
- Accepted:
example/out/accepted/customer_delta/(Delta table with_delta_logand part files) - Rejected:
example/out/rejected/customer/part-*.csv - Reports:
example/report/run_<run_id>/...
source:
format: "json"
path: "/data/in/customer.ndjson"
options:
json_mode: "ndjson"source:
format: "parquet"
path: "/data/in/customer"If you want Parquet output, set sink.accepted.format: parquet in your config:
sink:
accepted:
format: "parquet"
path: "./out/accepted/customer/"sink:
accepted:
format: "delta"
path: "s3://my-bucket/floe/accepted/customer"See docs/config.md for full reference.