Ops Pilot Guide¶
Status: Available in ETLantic 0.15.0. Alpha operational checklist—not a multi-tenant deployment product.
Use this page for a bounded pilot: one team, pinned packages, process isolation, and fail-closed production profiles. It does not claim SLA, HA, or compliance certification.
Pin matrix¶
pip install 'etlantic==0.15.0'
# Only the engines you need:
pip install 'etlantic-polars==0.15.0' # or pandas / sql / pyspark / airflow
Record the exact versions in your lockfile. Production profiles should pin
plugins via Profile.plugin_allowlist (bare versions are accepted as
==version).
Required controls¶
- Non-empty
plugin_allowliston production /security_domain=production - No secrets in plans, reports, CI logs, or schema history
- Process isolation — do not multi-tenant in one process
- SARIF validate in CI before compile/generate
Use an explicit allowlisted profile file (the built-in name
production is empty and fail-closed). See
Production profiles.
etlantic validate path/to/pipeline.py:MyPipeline \
--profile ./profiles/prod.json --format sarif
etlantic plan path/to/pipeline.py:MyPipeline \
--profile ./profiles/prod.json --format json
Runtime configuration¶
- Profiles: Profiles
- Env / Profile knobs: Runtime configuration
- Secrets: env or mounted file providers; optional
etlantic-keyring
Reports and observability¶
- Run reports are process-local operational evidence, not an audit system
of record. Export with
etlantic reportor a file report store when you need persistence. - Optional OpenTelemetry adapter:
pip install 'etlantic[otel]'— see Capabilities.
Airflow handoff¶
- Plan with a production profile and allowlist that includes your orchestrator
etlantic compile TARGET --target airflow -o dags/ --profile ./profiles/prod.json- Deploy the generated DAG with your normal Airflow process
Ownership: ETLantic owns modeling, validation, and the secret-free plan; Airflow owns scheduling and worker execution; engines own dataframe/SQL/Spark compute.
Failure ownership¶
| Symptom | Likely owner |
|---|---|
Validation / PMPLUG* / wiring diagnostics |
ETLantic model / profile |
| Engine OOM, SQL errors, Spark job failure | Engine / plugin / infrastructure |
| DAG not scheduled | Airflow / ops |
| Secret resolution failure | Secret provider / mount / env |