Urgent.News

What's breaking now, across thousands of outlets.

Tech

Retries didn't make GitHub resilient. They DDoS'd it.

A capacity blip at GitHub resulted in an outage that lasted 7 hours and 47 minutes. The infrastructure recovered faster than the clients let it. ๐Ÿ˜ฌ What actually happened GitHub experienced issues on August 17, 2026, from 13:28 to 21:15 UTC. Users were facing problems with Git operations, Actions, Issues, PRs, and Copilot. The error rate for Web and API traffic was around 20%, while for archiveโ€ฆ

On August 17, 2026, GitHub experienced a seven-hour and forty-seven minute outage spanning from 1:28 PM to 9:15 PM UTC. During this period, users encountered issues with Git operations, Actions, Issues, Pull Requests, and Copilot. The Web and API traffic error rate reached approximately 20%, while archive and raw-content downloads had a roughly 50% error rate.

The root cause of the outage was an Istio sidecar proxy reaching its concurrency limit. However, the system's autoscaling mechanism monitored the host application's metrics instead of the sidecar's proxy saturation, leading to no new instances being deployed and four HAProxy nodes exceeding their capacity limits. This resulted in traffic overflow and further degradation of the gateway.

The situation worsened due to a hidden bug in the VS Code Copilot extension, which caused clients to excessively re-request authentication tokens from the Copilot Token Service. This led to backend errors and a retry loop triggered by the clients, rapidly increasing traffic during the recovery process. GitHub's CTO, Vlad Fedorov, explained that the retries were causing the problem to worsen, likening them to a self-denial of service attack.

The article emphasizes that retries, when not properly managed, can significantly exacerbate the issue. It highlights the importance of implementing budgeting and jitter in retry logic to prevent a surge in traffic and allow the system to recover. The article concludes by cautioning that relying solely on retries without proper limits and delays can lead to more harm than good, transforming the client into a well-intentioned adversary rather than a resilient one.

Written by urgent.news from Dev.to's reporting โ€” not their text. Machine-written โ€” may contain errors; check the original before relying on it.

Read the original at dev.to โ†’

More in Tech

Native CORS support on GKE Gateway: Offloading cross-origin policy management to infrastructure

Web browsers enforce the Same-Origin Policy by default to protect users from malicious scripts trying to read data across distinct origins.

  • Google introduces native CORS support in GKE Gateway and Inference Gateway load balancers
  • CORS management offloaded to load balancer, terminating OPTIONS preflight requests
  • CORS filter in HTTPRoute configures policies declaratively with allowOrigins and allowCredentials

Tell Me About You

After sixty-seven published posts here, the comments have become one of the best parts of the work. Some of you have run my code, found things I missed, challenged a claim, or brought me a project ofโ€ฆ

  • Author has made over sixty-seven posts on the platform.
  • Engages with readers through comments, distinguishing bots from real people.
  • Invites readers to share projects, interests, and reasons for engaging with the forum.

Week 11 of #100DaysOfCode: Learning and Building Microservices with Spring Boot

Introduction This week has been another challenging but rewarding part of my #100DaysOfCode journey. I moved from learning Microservices Architecture and related architectural styles into the moreโ€ฆ

  • Learner completed first Spring Boot microservice on day 68
  • Explored Reactive Microservices, messaging servers, and security
  • Applied concepts like CORS, Actuator, and OAuth2 in microservices

More from Sunday 30 August โ†’