Big data is dead (2023)
motherduck.com
Big data is dead (2023)
1–10 of 475 posts
Re: Big data is dead (2023)
#2Re: Big data is dead (2023)
#3Re: Big data is dead (2023)
#41) Mongo is a bad point of reference.
The one lesson I've learned is that there is nothing Mongo does which postgresql doesn't do better. Big data solutions aren't nosql / mongo, but usually things like columnar databases, map/reduce, Cassandra, etc.
2) Plan for success
95% of businesses never become unicorns, but that's the goal for most (for the 5% which do). If you don't plan for it, you won't make it. The reason to architect for scalability when you have 5 customers is so if that exponential growth cycle hits, you can capitalize on it.
That's not just architecture. To have any chance of becoming a unicorn, every part of the business needs to be planned for now and for later: How do we make this practical / sustainable today? How do we make sure it can grow later when we have millions of customers? A lot of this can be left as scaffolding (we'll swap in [X], but for now, we'll do [Y]).
But the key lessons are correct:
- Most data isn't big. I can fit data about every person in the world on a $100 Chromebook. (8 billion people * 8 bits of data = 8GB)
- Most data is rarely queried, and most queries are tiny. The first step in most big data jobs I've done is taking terabytes of data and shrinking it down to the GB, MB, or oven KB-scale data I need. Caveat: I have no algorithm for predicting what I'll need in the future.
- Cost of data is increasing with regulatory.
Re: Big data is dead (2023)
#5Re: Big data is dead (2023)
#6Re: Big data is dead (2023)
#7I guess that hype cycle ended at the plateau of being dead. A not uncommon outcome in this incredibly fashion-driven industry.
AI also use all the data, just with a magick neural network to figure out what it all means.
Re: Big data is dead (2023)
#8Originally big data was defined by 3 dimensions:
- Volume (mostly what the author talks about) [solved]
- Velocity, how fast data is processed etc [solved, but expensive]
- Variety [not solved]
Big Data today is not: I don't have enough storage or compute.
It is: I don't have enough cognitive capacity to integrate and make sense of it.
Re: Big data is dead (2023)
#9Overall, I agree with much of this post, but there are several caveats: 1) Mongo is a bad point of reference. The one lesson I've learned is that there is nothing Mongo does which postgresql doesn't do better. Big data solutions aren't nosql / mongo, but usually things like columnar databases, map/reduce, Cassandra, etc. 2) Plan for success 95% of businesses never become unicorns, but that's the goal for most (for th…