lemmyng

joined 2 years ago
[–] [email protected] 1 points 2 years ago

your not eating for enjoyment, your eating to fuel your body.

This is the number one cause why diets get abandoned and people gain weight again. Adding a little enjoyment to the diet goes a long way towards long term compliance.

[–] [email protected] 0 points 2 years ago* (last edited 2 years ago)

Good article for discussion.

Health checks is one situation where kubernetes really shines. It makes a clear distinction between readiness probes (when the pod is ready to start serving traffic), liveness probes (when the pod should be considered dead), and startup probes (when the pod has finished bootstrapping). Coupled with autoscaling it then becomes acceptable to have a pod stop serving new traffic when it's too busy, because other pods can be created in a short time to take the extra load.

Including backend checks in your application depends on its nature. I think the mistake that the article's author made was not to include the checks, but to have too big of a blast radius when the check fails.

 

Monitoring and observability tools commit the cardinal sin of tricking people into thinking monitoring is an easy problem. It is very simple to monitor a small application or service. Almost none of those approaches scale.

 

The KBOM project provides an initial specification in JSON and has been constructed for extensibilty across various cloud service providers (CSPs) as well as DIY Kubernetes.