Basically Kubeblocks aims to be a universal operator for databases on k8s and they claim they already support ca. 30 db-like projects with a unified API.
I wonder if anybody here is using it in production and can comment on it?
Redis is often a cache, so if your persistent data is lost who cares.
Not exactly the example I would hope for, in fact it seems duplicitous as a choice.
Databases are generally not what k8s is intended for: rapidly scalable stateless servers. There's real concerns with operators I've seen as to all the different conditions (expansions, failover, backups, detailed health checks, persistent disk management, version upgrades, boundary conditions like full disks, and if course encryption headaches).
I am not a k8s expert, I was involved with an attempt to migrate Cassandra to k8s and did not like the operator I saw at the time.
Every db system has very specific nuances in data storage, io optimization, bandwidth for requests and backups, etc. a one size fits all operator project seems like it will invite trouble.
> Every db system has very specific nuances in data storage, io optimization, bandwidth for requests and backups, etc. a one size fits all operator project seems like it will invite trouble.
And these are all fairly well covered with standard kubernetesisms
Not a redis guy, but I worked on MySQL for quite a long time. the interesting part in KubeBlocks, in my point of view, is they wrap engine-specific differences in 'Addon' . And I checked their impl for MySQL Addon.
I like their idea on hwo to modeling datebase topologies and behaviors. for instence, parameter configurations. seems they have tuned parameters for MySQL replication clusters (e.g. they render parameters w.r.t resources)
This blog might answer your question. It introduces how Kuaishou, a vibrant short-videos platform, migrated its large-scale Redis cluster to K8s using KubeBlocks.
https://kubeblocks.io/docs/preview/user_docs/overview/introd...
Basically Kubeblocks aims to be a universal operator for databases on k8s and they claim they already support ca. 30 db-like projects with a unified API.
I wonder if anybody here is using it in production and can comment on it?