Prerequisites
None. DuckDB creates a local file. Ensure the ETL server has write access to the specified path.Connection Setup
1. Database File Path
Enter the path where the DuckDB file will be created (e.g./data/mantrixflow.duckdb). The file is created on first write. Use an absolute path.Write Modes
Append
Appends rows to the existing table. The table is created if it does not exist.Replace
Drops and recreates the table on every sync.Upsert
Uses DuckDB’s upsert capabilities. Specify the primary key column for the upsert key.Use Cases
- Previewing pipeline results locally
- Testing transformations before writing to production
- Embedded analytics in applications