Public entries tagged #sre

This "Senior SRE" role calls for 10+ years of SRE experience.

I don't know about the rest of you, but every SRE I know with that much experience is way beyond Senior.

Concurrency Control: The Safety Net for Distributed Systems 🌐

In DevOps and cloud architecture, overlooking how shared resources are accessed across multiple nodes is a fast track to race conditions and data corruption.

When designing or debugging systems, always remember the two fundamental approaches to locking:

🔒 Pessimistic Locking
Approach: Acquire lock -> Modify -> Release.
Goal: Prevent conflicts before they happen. (e.g., DB FOR UPDATE).

🔄 Optimistic Locking (CAS/Version Checking)
Approach: Read -> Modify -> Commit with Version Check.
Goal: Detect conflicts at the end; retry if needed. (e.g., Kubernetes resourceVersion, HashiCorp Vault CAS).

Getting this right isn't just theory; it’s critical for stable CI/CD pipelines, state management, and high-availability systems. Don't let concurrency errors be the reason your system fails.

Continue reading →

Conference over. My talk was a success.

But it pays nothing. Nobody is banging on my front door with jobs because I gave a talk at a big conference.

I desperately need a job, coming up on 9 months unemployed.

I am looking for Incidents, SRE, or Platform work. I have been judged as overqualified for Senior roles, so my focus is Staff+ and such.

My LI profile is as good as anything for understanding my work history, so here it is:

linkedin.com/in/mattcookedavis/

Continue reading →

Talked to two old friends at SCALE and both are doing their own thing now. Mad respect to both of them.

I so wish I could do my own thing, like really take Monteverdi to a higher place, or build free and open tooling for incidents maybe.

The grind of finding work is wearing me down. Two interviews this coming week at two different places for two completely different jobs (Senior on a big infra team, Staff Platform Engineer on a tiny one).

BTW, there were exactly zero SRE jobs on the SCALE job board.

Continue reading →

Subscribe to #sre entries via RSS feed