HBase Deprecation at Pinterest
medium.com
HBase Deprecation at Pinterest
1–10 of 59 posts
Re: HBase Deprecation at Pinterest
#2Re: HBase Deprecation at Pinterest
#3Example: TiDB at a certain time didn't write rows clustered by the primary key on disk (they had a separate index). This is very costly in distributed setups (less costly on single-node setups like PostgreSQL).
There are many such cases in many dbs. Another point lacking in most dbs is the "lsm compaction overhead" you need to do for all replicas when you're not using shared distributed storage.
This optimization can be seen on QuickWit (building/compacting inverted index is even more expensive than LSM compaction).
Re: HBase Deprecation at Pinterest
#4Wow, never realized Pinterest had 6 petabytes of data. I wonder if they're including images in that. Even billions of rows is usually around 1-2tb, so makes you wonder what they're storing many billions of.
Re: HBase Deprecation at Pinterest
#5Re: HBase Deprecation at Pinterest
#6Wow, never realized Pinterest had 6 petabytes of data. I wonder if they're including images in that. Even billions of rows is usually around 1-2tb, so makes you wonder what they're storing many billions of.
Re: HBase Deprecation at Pinterest
#7Re: HBase Deprecation at Pinterest
#8Re: HBase Deprecation at Pinterest
#9Shocking to see a company like Pinterest has built multiple in house data stores. Talking about a maintenance burden...
It is a very different landscape these days!
Re: HBase Deprecation at Pinterest
#10> Introduced in 2013, HBase was Pinterest’s first NoSQL datastore. Along with the rising popularity of NoSQL, HBase quickly became one of the most widely used storage backends at Pinterest.
Followed by,
> For the past few years, we have seen a seemingly steady decline in HBase usage and community activity in the industry, as many peer companies were looking for better alternatives to replace HBase in their production environments. This in turn has led to a shrinking talent pool, higher barrier to entry, and lower incentive for new engineers to become a subject matter expert of HBase.
Lets see how TiDB holds on in the same timeframe, although being boring SQL might keep it around.