Skip to content

Sinks (deprecated)

Sink[T] is a deprecated alias of Load[T] in ETLantic 0.15. Prefer:

from etlantic import Load

warehouse = Load[Customer](
    input=normalized.result,
    asset="warehouse.customers",
)

Sink and binding= will be removed in 0.16. See Migration 0.14 → 0.15.

Canonical documentation: Loads.