Brains Up AnalyticsBRAINSUPAnalytics
Articles & Guides

Practical data engineering knowledge

In-depth guides on modeling, ETL, Azure, Databricks and data architecture — written from real-world projects.

Azure Data FactoryIncremental Load
·4 min read

Incremental loads in Azure Data Factory: the watermark pattern step by step

How to do incremental loads in Azure Data Factory using the watermark pattern: Lookup the last value, Copy Data only for the new window, and a Stored Procedure that updates the control table. A practical guide.

Read article
SSISData Flow
·4 min read

SSIS Data Flow up to 3× faster: tuning the buffer and Fast Load

How to use AutoAdjustBufferSize, DefaultBufferMaxRows and Fast Load to speed up large loads in the SSIS Data Flow. A practical guide with real numbers.

Read article
SSISCheckpoints
·4 min read

Checkpoints in SSIS: resume a package from the exact point of failure

How to use SSIS Checkpoints to resume a long package from the exact point of failure — the 3 configuration properties, the pitfalls with Data Flow and loops, and when (or when not) to use them in 2026.

Read article
PolarsPython
·4 min read

Polars streaming: process data larger than RAM — without Spark

How the Polars streaming engine processes datasets that don't fit in memory using scan_parquet + sink_parquet, keeping RAM usage constant and doing away with a cluster.

Read article
DatabricksUnity Catalog
·6 min read

Metric Views in Unity Catalog: define the KPI once, use it everywhere

How Databricks Unity Catalog Metric Views turn business KPIs into governed, reusable objects — with the YAML walkthrough, the MEASURE() function, the query pattern, and when (or when not) to use them in 2026.

Read article
SSISCDC
·6 min read

CDC in SSIS: incremental loads without scanning the whole table

How to use Change Data Capture with the CDC Control Task to turn full loads into incremental loads in SSIS — with code, the LSN state pattern, and when (or when not) to use it in 2026.

Read article
PythonData Engineering
·3 min read

uv: the Python manager every Data Engineer should know

How uv, from Astral, replaced pip, venv and pyenv in our Databricks and Azure projects — with a 10–100× speed boost.

Read article
ETLAzure
·1 min read

Incremental ingestion: stop reloading everything every night

Watermarking, change data capture and the patterns that cut cost and processing windows in ETL pipelines.

Read article
ModelingData Warehouse
·2 min read

Slowly Changing Dimensions Type 2, without the headache

The essential pattern for tracking history in dimensions — explained with a concrete example and the most common mistakes.

Read article
DatabricksLakehouse
·2 min read

Medallion Architecture: the pattern that organizes your Lakehouse

How the Bronze, Silver and Gold layers turn a chaotic data lake into a reliable, auditable platform.

Read article