mastodontech.de ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Offen für alle (über 16) und bereitgestellt von Markus'Blog

Serverstatistik:

1,4 Tsd.
aktive Profile

#platformengineering

4 Beiträge4 Beteiligte1 Beitrag heute
Antwortete im Thread

🚀 Thank you @leanpub for featuring The Cybernetic Enterprise!
I’m thrilled to see this vision of adaptive, feedback-driven organizations gaining traction.

If you’re leading transformation in tech, AI, or strategy, this book is for you.
Let’s build systems that learn, adapt, and thrive.

👉 leanpub.com/CyberneticEnterpri

LeanpubThe Cybernetic EnterpriseBuild an AI-augmented, feedback-driven enterprise. Learn how to align strategy, teams, and technology for continuous adaptation and growth.

Kubernetes curly: deployment with autoscaling, each pod depends on and occasionally writes-to an external database.
To minimise database reads, an in-memory cache is implemented in the application.

However, when a pod writes to the database it should invalidate that key in the cache for all pods.
This works fine for the local cache, but how to distribute that invalidation?

I suppose we could use a statefulset and then hit the service for each other running pod but that seems... messy.