Guide to data tools landscape for developers
OlegWock
110 points
31 comments
July 16, 2026
Related Discussions
Found 5 related stories in 775.0ms across 14,015 title embeddings via pgvector HNSW
- PyTorch Landscape salamo · 14 pts · May 19, 2026 · 53% similar
- Ask HN: What dev tools do you rely on that nobody talks about? crcsmnky · 30 pts · April 01, 2026 · 48% similar
- Show HN: Mljar Studio – local AI data analyst that saves analysis as notebooks pplonski86 · 64 pts · May 02, 2026 · 47% similar
- Databricks Launches LTAP: A Unified OLAP/OLTP Data Architecture thehaikuza · 30 pts · June 16, 2026 · 46% similar
- Atlassian enables default data collection to train AI kevcampb · 546 pts · April 20, 2026 · 46% similar
Discussion Highlights (19 comments)
Firfi
Now I'll be thinking of "L" in ETL as "Land" and not "Load". Although the article doesn't propose that but uses a lot of "Land" terminology. "Load" => "load where? or FROM where?" - ambiguous "Land" => "land where?" - clear
madsaylor
Data is the new oil
jpitz
Apache Avro has 2 encodings: binary AND json.
jbonatakis
> A data warehouse on the other hand is an OLAP database and is optimized to work on columns A bit of a pedantic nit here: a data warehouse is a usage pattern. It’s not necessarily tied to any specific technology, however it is commonly implemented with OLAP systems like Snowflake, BigQuery, etc. But there’s nothing stopping you from building out your data warehouse in Postgres or MySQL. If you’re stitching together disparate datasets to build a unified model for analytics, you’ve got yourself a data warehouse no matter what system it lives on.
MNeverOff
It's a good all-round primer, well written. Would love to hear more about larger-than-memory tasks and running local Dask clusters. I processed many-a-dataset that way that would normally make pandas choke.
michaepf
This was great, thanks for writing it up. Even as someone in the data space for a long time, I learned quite a bit.
chrisweekly
Great post! Also, I dig your site -- it's attractive and highly usable, and the "personal" toggle in the footer is a clever affordance I haven't seen before for separating professional content.
svfat
Good to finally know the difference between a lake and a warehouse
botswana99
Well, I find this post looks good, but a like lot of 'data for developers' posts it's just a list of tools. As if a collection of tools banded together actually makes your customer successful. What's missing? 1. There's nothing about deployment. How do I take this collection of tools and code and actually deploy it into production, or actually regression test it functionally? How do I make a small change in a database table and not have a massive regression? How do you do that automatically? How do you do it quickly? 2. It's cursory on testing. One of the biggest differences from a software developer to a data engineer is that your data providers give you crap data all the time. It could break. How do you test data? How do you get adequate test coverage? These things are essential for software developers and are actually doubly essential for data engineers and building analytics systems. 3. It's what success looks like. It's not just about a collection of tech; it's about making your customers successful. What does it mean to deliver good insight? How do you do it? How do you measure customer success, and measure your success? As a team, you wouldn't talk about software engineering without mentioning DevOps or DORA metrics. There's nothing here about that. sigh
kingjimmy
excluding Denodo from the list sows this is more of a non-enterprise guide to data management and tools. There is only one real semantic layer that can cover operational and historical data and thats Denodo. If you use snowflake horizon or unity, all the data needs to be loaded first and not real time.
flarco
Nice guide. One addition in the ingestion section: sling ( https://slingdata.io/ ). it's a single go binary, cli-first.
doobiedowner
What about PI?
aleda145
As a data engineering person I can say that this is a great write up! Some thoughts: A "bubbling" topic right now is conversational analytics (i.e. talk to your data). There has been an explosion of tools in the last 6 months. YC is backing one too: https://getnao.io/ I feel like pandas is also somewhat frowned upon, the industry has moved on from that. Most SQL tools can now do everything that we could only do with pandas. In my network everyone is talking about DuckDB. As long as you are under a 1TB it will have everything you need. I think most people should start with that vs locking themselves into something like Snowflake
datadrivenangel
"Popular metadata catalog solutions are Hive Metastore, AWS Glue Data Catalog, and Unity Catalog from Databricks. For query engine you can use, for example, Apache Spark, Trino, or Amazon Athena." DuckDB is eating the query engines and catalogs. Really could use more coverage on how DuckDB is changing the data tools landscape.
ozhero
This is an excellent well written article with just the information you need to get a basic understanding of the field.
jrhizor
Really a great layout of the space! I like how it doesn’t try to enumerate all options.
otter-in-a-suit
This is a fantastic primer. A few suggestions: - Add a "last updated" note, since this space changes often (see the prefect/dagster situation that just happened) - Add a note about MCPs and other LLM-driven tools and features are becoming more and more important (e.g. hex.ai or the various MCPs shipped with some of the tools you mention, such as OpenMetadata) - Maybe organize the various tools you mention briefly by their license/model (lots of them can be self hosted, some are SaaS only), since a fully self-hosted data platform is (at least for now...) very much feasible I also wish more people would talk more about the "engineering" part of "data engineering". I've seen way too many people who claim a title like "data engineer" but lack the fundamentals of building software and are really just copy-paste scripts together. What I'd love more DEs to think about are things like {unit,integration,e2e,performance} tests, deployments, infrastructure, networking, monitoring (you do touch on that), and all the other things a regular SWE is expected to have at least basic competency in at a certain level. For instance, tools like dbt natively support tests, but people need to write them. Or how you don't have to click-ops Airbyte, there's a terraform provider etc.
hermitcrab
Interesting summary. I'm surprised you didn't mention any desktop ETL tools (such as Alteryx, Knime, Easy Data Transform).
traceroute66
Interesting write up, but what it really needs is a nice task vs tools table at the end as a "conclusion". Someone reading the blog the first time might well be willing to read through the large amount of text. But returning to it at a later date ? A quick reference TL;DR table would not go amiss IMHO.