Skip to main content

sqb load

Runs source loader functions and writes data into their target tables using the configured write strategy.

Usage

Flags

Examples

Execution order

Loaders are executed in DAG topological order based on depends_on declarations. Independent loaders run concurrently when --concurrency is greater than 1. Intermediate loaders (those referenced only via depends_on without a direct source binding) run first, followed by the source-bound loaders that depend on them.

Output

Auto-load during builds

sqb build automatically loads managed sources before building dependent models. This is controlled by the auto_load_sources setting (default: true) and the --load / --no-load / --reload flags:
See Loaders for full documentation on write strategies, the loader context API, and source deferral.