TIL · · 1 min read
How to Inject Dates Into Fabric Pipelines (and Backfill Them)
How to pass a shared run_date across Fabric pipeline stages and support historical backfilling with a two-pipeline pattern.
TIL
Short notes on things I discover — tools, tricks, ideas worth remembering. Think of it as a public notebook.
How to pass a shared run_date across Fabric pipeline stages and support historical backfilling with a two-pipeline pattern.
Never call `spark.stop()` in Databricks workflows. Explicitly call `sys.exit()`.
How treating your LLM Tools like humans can help you build personal AI copilots.
Mypy only narrows Union[T, None] when it sees an explicit check for None or an assertion. This behaviour leads to type errors that may seem unintuitive to solve.