5 ms·
You should be using dbt instead of string manipulation for serious query building.
by vovavili 14d ago
You should be using dbt instead of string manipulation for serious query building.
- sanderjd 14d agoIt's never quite been clear to me what the advantage of dbt over a python program using sqlalchemy / duckdb / polars to transform data is. Can you enlighten me?
- vovavili 14d agoAt the minimum, it's just Jinja2 templates in your SQL queries - meaning, you can do pure SQL transformations with conditional logic in your templates. In addition to being able to run tests, specify custom macros, having version control and having some constrained way to organize your tables, you're turning SQL into a proper programming language with just one library.
- throwaway7783 13d agoMy issue with DBT is it is a mix of SQL, yaml, jinja2 flow controls (and metrics is whole another thing). SQL with jinja2 if/else can get really unmaintainable quickly. It's perhaps better than homegrown sql based transformers. polars is code and can be version controlled too. Dataframes in my opinion are more elegant, and with the right backends and some lineage enhancements, could serve a much wider set of use cases than what DBT does
- vovavili 13d agoDifferent tools for different tasks.
- sanderjd 13d agoBut is that ... good?
- vovavili 13d agoIt's definitely better than raw 500+ lines of SQL composed with 300+ lines of Python for some bespoke business transformation without clean versioning, which is what SQL transformations tend to converge towards without something like dbt.
- geysersam 13d agoVersioning seems like a separate problem, no? I mean, you can version control your python program generating SQL queries
- sanderjd 13d agoYeah that's fair. In practice, the projects I've worked on have always seemed to end up with a mix of all of dbt, SQL strings in python, and dataframe manipulation. I've always felt like we should be able to minimize one of these in favor of the others, but in practice it seems like people find each of these things useful for different things.
- geysersam 14d agoI've been looking at dbt for exactly this reason but don't quite get the advantages if you're not interacting with a data warehouse of some sort.
- vovavili 13d agoEmbedded databases like DuckDB are just as suited for dbt work.
- OoooooooO 12d agoSpark/PySpark/polars/dbt/sqlmesh are all data engineering frameworks for data transformation (and some data scientists). If you don't have a data warehouse / OLAP system you are generally not in the niche for those tools.