惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
罗磊的独立博客
Last Week in AI
Last Week in AI
B
Blog
IT之家
IT之家
S
SegmentFault 最新的问题
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - 聂微东
U
Unit 42
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The On-Call Schedule Math Nobody Does
Samson Tanimawo · 2026-06-23 · via DEV Community
Cover image for The On-Call Schedule Math Nobody Does

Samson Tanimawo

Most on-call schedules are designed in a slack thread, in 20 minutes, by whoever drew the short straw. Then the team lives with it for years. The math is almost never done, and the result is the same in every company: a few engineers burn out and quit, and management is surprised.

Here's the math, in the order it matters.

Page volume per engineer per week

Add up every page your team got last quarter. Divide by 13 (weeks per quarter). Divide again by the number of engineers in the rotation.

If the answer is more than 3 pages per engineer per week, you have a burnout problem. The exact number doesn't matter; the trajectory does. If it's growing quarter over quarter, your team is going to lose people.

This is the only metric that matters. Everything else (alert ratio, MTTR, false positive rate) is a contributing factor to this number.

Off-hours fraction

What fraction of pages happen outside business hours (let's say 8 PM to 8 AM local)? If it's more than 30%, your on-call is significantly worse than the day shift, and your compensation should reflect that.

Most teams don't compensate for night pages at all. This is fine when night pages are rare. When they're 40% of all pages, you've quietly converted on-call into a second job with no extra pay.

Rotation length

The default 7-day rotation is wrong for most teams. Here's the trade-off:

  • Short rotations (1-3 days): hard to context-switch into on-call mode, but the load is bounded.
  • Long rotations (7+ days): easier to settle in, but if it's a bad week you suffer for 7 days straight.

For a team with high page volume, shorter rotations are kinder. For a team with low page volume, longer rotations have less context-switch overhead. The crossover point is roughly 1 page per day. If you're paging more than that, switch to shorter rotations.

Coverage gaps

Holidays, conferences, vacations. Most schedules silently break during these. Run through your next 90 days, marking every day where coverage is at risk. Fix the gaps before they become incidents.

Bonus check: when an engineer leaves the company, do you have at least three people who can cover their on-call role? If not, that's a single point of failure waiting to bite you.

The kindness moves

Most teams don't do these. Most should:

  • No on-call the week before vacation. The engineer is already half-checked-out.
  • No on-call the week after a major release if you led it. You've already done enough.
  • On-call buddies for juniors. A senior is "shadow on-call" available for escalation but not primary. The junior learns by doing.
  • Pager-free Friday afternoon. Either nobody's on-call after 3 PM Friday, or it's a dedicated junior shift. Weekends will arrive in time.

The math is the floor. The kindness is what makes the math sustainable.