howtheysre
A curated collection of publicly available resources on how technology and tech-savvy organizations around the world practice Site Reliability Engineering (SRE)
Top Related Projects
A curated list of Site Reliability and Production Engineering resources.
Site Reliability Engineer Interview Preparation Guide
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
A curated list of amazingly awesome open source sysadmin resources inspired by Awesome PHP.
A collection of Linux Sysadmin Test Questions and Answers. Test your knowledge and skills in different fields with these Q/A.
Quick Overview
"How They SRE" is a curated collection of publicly available resources on how technology and tech-driven companies around the world practice Site Reliability Engineering (SRE). It serves as a comprehensive knowledge base for SRE practices, tools, and methodologies used by various organizations.
Pros
- Extensive collection of SRE resources from numerous companies
- Well-organized and categorized information for easy navigation
- Regularly updated with new content and resources
- Open-source project allowing community contributions
Cons
- May contain outdated information if not frequently maintained
- Lacks in-depth analysis or comparison of different SRE practices
- Primarily focuses on large tech companies, potentially overlooking smaller organizations' approaches
- Relies on publicly available information, which may not always reflect the most current practices
Competitor Comparisons
A curated list of Site Reliability and Production Engineering resources.
Pros of awesome-sre
- More comprehensive and diverse collection of SRE resources
- Better organized with clear categories and subcategories
- Regularly updated with new content and contributions
Cons of awesome-sre
- Less focused on specific company practices and implementations
- May be overwhelming for beginners due to the sheer volume of information
- Lacks detailed explanations or summaries for each resource
Code comparison
Not applicable for these repositories, as they are primarily curated lists of resources rather than code repositories.
Summary
awesome-sre is a more extensive and well-organized collection of SRE resources, covering a wide range of topics and categories. It's regularly updated and maintained, making it a valuable reference for SRE professionals at all levels.
howtheysre, on the other hand, focuses specifically on how different companies implement SRE practices. It provides a more targeted approach, offering insights into real-world applications of SRE principles.
While awesome-sre offers a broader scope and more resources, howtheysre provides a deeper dive into specific company implementations. The choice between the two depends on whether you're looking for a comprehensive resource list or practical examples from industry leaders.
Site Reliability Engineer Interview Preparation Guide
Pros of sre-interview-prep-guide
- More focused on interview preparation with specific questions and answers
- Includes a wider range of topics, including networking and databases
- Provides links to additional resources for further learning
Cons of sre-interview-prep-guide
- Less comprehensive in terms of real-world SRE practices
- Not regularly updated, potentially containing outdated information
- Lacks detailed explanations of concepts, focusing more on quick answers
Code Comparison
While both repositories primarily contain documentation and resources rather than code, sre-interview-prep-guide includes some sample code snippets for interview questions. For example:
# sre-interview-prep-guide
def is_palindrome(s):
return s == s[::-1]
howtheysre doesn't contain code snippets, focusing instead on curating information about SRE practices across different companies.
Both repositories serve different purposes:
- howtheysre is a comprehensive collection of SRE practices from various companies, providing insights into real-world implementations.
- sre-interview-prep-guide is tailored for interview preparation, offering a quick reference for common SRE interview questions and topics.
Ultimately, the choice between these repositories depends on whether you're looking for industry practices (howtheysre) or interview preparation (sre-interview-prep-guide).
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions
Pros of devops-exercises
- Broader scope covering various DevOps topics, not limited to SRE
- More interactive with exercises and questions for hands-on learning
- Regularly updated with new content and contributions
Cons of devops-exercises
- Less focused on specific company practices and real-world implementations
- May be overwhelming for beginners due to the wide range of topics covered
- Lacks detailed explanations of SRE-specific concepts and methodologies
Code Comparison
devops-exercises:
def is_palindrome(s):
return s == s[::-1]
print(is_palindrome("radar")) # True
print(is_palindrome("hello")) # False
howtheysre:
- company: Google
resources:
- title: "Google SRE Book"
url: "https://sre.google/sre-book/table-of-contents/"
- title: "Google SRE Workbook"
url: "https://sre.google/workbook/table-of-contents/"
The code comparison highlights the different focus areas of the repositories. devops-exercises provides practical coding examples and exercises, while howtheysre primarily contains structured information about SRE practices in various companies.
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
Pros of awesome-scalability
- Broader focus on scalability concepts and techniques beyond just SRE practices
- More comprehensive coverage of distributed systems, databases, and cloud technologies
- Includes practical system design examples and case studies
Cons of awesome-scalability
- Less specific to SRE roles and responsibilities
- May not provide as much depth on incident management and reliability practices
- Content organization is less structured compared to howtheysre
Code comparison
While both repositories primarily consist of curated lists and don't contain significant code samples, here's a comparison of their README structures:
awesome-scalability:
## Scalability
- Principles
- Scalability Articles
- ...
## Distributed Systems
- Distributed Systems Theory
- ...
howtheysre:
## Companies
### Company Name
- Blog
- Videos
- Podcasts
- ...
The awesome-scalability repository focuses on categorizing topics, while howtheysre organizes content by company, making it easier to explore specific organizations' SRE practices.
A curated list of amazingly awesome open source sysadmin resources inspired by Awesome PHP.
Pros of awesome-sysadmin
- Broader scope covering various aspects of system administration
- More comprehensive list of tools and resources
- Regularly updated with community contributions
Cons of awesome-sysadmin
- Less focused on specific SRE practices and methodologies
- May be overwhelming for beginners due to the extensive list of resources
- Lacks detailed explanations or case studies
Code comparison
Not applicable, as both repositories are curated lists without significant code content.
Summary
awesome-sysadmin is a comprehensive resource for system administrators, covering a wide range of topics and tools. It offers a vast collection of resources but may lack the specific focus on SRE practices found in howtheysre.
howtheysre, on the other hand, provides a more targeted approach to SRE practices, offering insights into how different companies implement SRE. It may be more beneficial for those specifically interested in SRE methodologies and real-world applications.
Both repositories serve different purposes and can be valuable depending on the user's needs. awesome-sysadmin is better suited for general system administration knowledge, while howtheysre is more appropriate for those looking to understand and implement SRE practices in their organizations.
A collection of Linux Sysadmin Test Questions and Answers. Test your knowledge and skills in different fields with these Q/A.
Pros of test-your-sysadmin-skills
- Provides a comprehensive set of questions and exercises for sysadmins to test their skills
- Covers a wide range of topics including Linux, networking, security, and DevOps
- Includes practical scenarios and real-world examples
Cons of test-your-sysadmin-skills
- Focuses primarily on technical skills rather than broader SRE practices and methodologies
- May not be as up-to-date with the latest industry trends and technologies
- Lacks information on specific company practices and experiences
Code comparison
test-your-sysadmin-skills:
#!/usr/bin/env bash
# Function to check if a command exists
command_exists() {
command -v "$1" >/dev/null 2>&1
}
howtheysre:
# How They SRE
A curated collection of publicly available resources on how technology and tech-savvy organizations around the world practice Site Reliability Engineering (SRE).
## Table of Contents
- [Adopting SRE](#adopting-sre)
The code comparison shows that test-your-sysadmin-skills includes practical bash scripts, while howtheysre is primarily a curated collection of resources in Markdown format. This reflects the different focus of each repository, with test-your-sysadmin-skills emphasizing hands-on skills and howtheysre providing a comprehensive overview of SRE practices across various organizations.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
How they SRE
Introduction
How They SRE How They SRE is a curated knowledge repository of Site Reliability Engineering (SRE) best practices, tools, techniques, and culture adopted by leading technology or tech-savvy organizations.
Numerous organizations frequently share their insights and expertise, encompassing best practices, tools, and techniques that shape their engineering culture. They do this through various public platforms such as engineering blogs, conferences, and meetups. This repository compiles and presents content gathered from these sources.
Topics
- Site Reliability Engineering
- Hiring and Building SRE teams
- SRE Culture
- DevOps
- Monitoring & Observability
- Alerting
- Incident Response & Post-Mortem
- On-Call
- Testing in Production
- Chaos Engineering
- Automation
- Performance
- Platform Engineering
Organizations
Achievers
Blog Posts
- Enter the Abattoir - Building 'Ã la carte' gitops tooling
- Scaling Production Globally â The service mesh facelift (Part-1)
- Scaling Production Globally - Solving observability problems for developers (Part-2)
- Load Testing Kubernetes: Building a Framework (Part-1)
- Load Testing Kubernetes: Resolving bottlenecks and improving performance (Part-2)
Airbnb
Blog Posts
- Automated Incident Management Through Slack
- Detecting Vulnerabilities With Vulnture
- Alerting Framework at Airbnb
- When The Cloud Gets Dark â How Amazonâs Outage Affected Airbnb
- Intelligent Automation Platform: Empowering Conversational AI and Beyond at Airbnb
- Production Secret Management at Airbnb
- Automating Data Protection at Scale, Part 1
- Automating Data Protection at Scale, Part 2
- Automating Data Protection at Scale, Part 3
- Dynamic Kubernetes Cluster Scaling at Airbnb
Algolia
Blog Posts
Alibaba Cloud
Blog Posts
Asana
Blog Posts
- How Asana uses Asana: Security incident response
- How Asana ships stable web application releases
- Analysis of recent downtime & what weâre doing to prevent future incidents
- Developer environment: Achieving reliability by making it fast to reset
- Three security tactics for every IT leader to consider this fall
ASOS
Blog Posts
- Playing the blame-less game
- A day in the life of⦠Cat S (Head of Reliability Engineering)
- An AKS Performance Journey: Part 1 â Sizing Everything Up
- An AKS Performance Journey: Part 2 â Networking It Out
- Cyber Security @ ASOS.com
- Security Operations 24x7
- The skills we look for in Cyber Security Incident Response
Atlassian
Blog Posts
Baidu
Videos
Basecamp
Blog Posts
- Inside a CODE RED: Network Edition
- Three Basecamp outages. One week. What happened?
- Basecamp 2 and Basecamp 3 search outage report
- Reducing Incident Escalations at Basecamp
Books
Bloomberg
Videos
- Capacity Planning and Performance Enhancement with Page Reference Sampling
- Why SREs can't afford to NOT do Chaos Engineering
- Tracing Real-Time Distributed Systems
- The Bloomberg Story: Building SRE Teams in an "Immeasurable" Organisation
- Visibility into Loggers (and Other Low Level Services)âSeeing the Trees from the Forest
Booking.com
Blog Posts
- How Reliability and Product Teams Collaborate at Booking.com
- Incidents, fixes, and the day after
- Troubleshooting: A journey into the unknown
Videos
Capital One
Blog Posts
- Automate Application Monitoring with Slack
- Automate AWS Infrastructure with Boto 3: AWS Health Check
- Active-Active Shared-Nothing Database Architecture
- The 3 Râs of SREs: Resiliency, Recovery & Reliability
- 5 Steps to Getting Your App Chaos Ready
- 4 Real-World Scenarios That Read Like Chaos Engineering Experiments
- Embrace the Chaos ⦠Engineering
- 3 Lessons Learned From Implementing Chaos Engineering at Enterprise
- A Deep Dive Into Seamless Blue/Green Deployment Using AWS CodeDeploy
- Secure Docker Containers Require Secure Applications
- 4 Steps for Pairing the Cloud and DevOps to Improve Resiliency
- Container Ready Applications with Twelve-Factor App and Microservices Architecture
- Deploying with Confidence â Minimize Risk, Maximize Resiliency With Canary Deployments on AWS
- Architecting for Resiliency
- Continuous Chaos â Introducing Chaos Engineering into DevOps Practices
- The Mon-ifesto Part 1: Metrics
Major incidents & analysis reports
Videos
DBS
Blog Posts
- Presenting at iThomeâs SRE Conference: Our DBS SRE Transformation Journey Thus Far
- Debunking the seven most popular Site Reliability Engineering myths
- How To Use SRE To Cultivate A Blameless Culture In The Workplace
- Site Reliability Engineering at DBS Bank
- Automating Configuration Management at Scale
- How DBS dispelled the myths of Chaos Engineering
- Double, Double Toil and Trouble
Videos
DeepSource
Blog Posts
Dream11
Blog Posts
- Deployment At Scale: Story Behind Dream11âs In-House Blue-Green Deployment Platform âOneClickâ.
- Enhancing security and trust with AWS WAFv2
- Lessons learned from running GraphQL at scale
- Break circuits, save Kong ð¦
- Finding Order in Chaos: How We Automated Performance Testing with Torque
- Maintaining hyper-sonic releases at Dream11
- To Scale In Or Scale Out? Hereâs How We Scale at Dream11
- Building Scalable Real Time Analytics, Alerting and Anomaly Detection Architecture at Dream11
Dropbox
Blog Posts
- Dropbox Engineering Career Framework - Reliability Engineer (SRE)
- Atlas: Our journey from a Python monolith to a managed platform
- Monitoring server applications with Vortex
- Athena: Our automated build health management system
- Interested in becoming a Site Reliability Engineer?
Videos
eBay
Blog Posts
- Resiliency and Disaster Recovery with Kafka
- SRE Case Study: Triaging a Non-Heap JVM Out of Memory Issue
- SRE Case Study: Mysterious Traffic Imbalance
- Zero Downtime, Instant Deployment and Rollback
- How eBayâs Notification Platform Used Fault Injection in New Ways
Video
Etsy
Blog Posts
- Improving the Deployment Experience of a Ten-Year Old Application
- How Etsy Prepared for Historic Volumes of Holiday Traffic in 2020
- Your brain on progress
- Etsyâs Debriefing Facilitation Guide for Blameless Postmortems
- Opsweekly: Measuring on-call experience with alert classification
- Demystifying Site Outages
- Blameless PostMortems and a Just Culture
- Measure Anything, Measure Everything
Videos
Expedia
Blog Posts
- Automating Performance Standards
- Error Budget Policy - Part 1 - Adoption at Expedia Group
- Error Budget Policy - Part 2 - Practices at Expedia Group
- Using Fault-Injection to Improve our new Runtime Platformâs Reliability
- Learning from Incidents at Expedia Group
- Improving Vrbo Homepage Loading Experience
- Troubleshooting 502 errors: ECS Checklist
- Getting Started with Elasticsearch
- All about ISTIO-PROXY 5xx Issues
- Autoscaling in Kubernetes: Why doesnât the Horizontal Pod Autoscaler work for me?
- How to Keep Your Kubernetes Deployments Balanced Across Multiple zones
- Are Your Dropwizard Latency Metrics Misleading You?
- The Cost of 100% Reliability
- Creating Monitoring Dashboards
- Using Bash for DevOps
Fastly
Videos
G-Research
Blog Posts
Getaround
Blog Posts
GitHub
Blog Posts
- How we improved availability through iterative simplification
- How we improved push processing on GitHub
- How GitHub uses merge queue to ship hundreds of changes every day
- Fixing security vulnerabilities with AI
- GitHubâs Engineering Fundamentals program: How we deliver on availability, security, and accessibility
- How GitHub uses GitHub Actions and Actions larger runners to build and test GitHub.com
- The GitHub Security Labâs journey to disclosing 500 CVEs in open source projects
- CodeQL team uses AI to power vulnerability detection in code
- Addressing GitHubâs recent availability issues
- Building organization-wide governance and re-use for CI/CD and automation with GitHub Actions
- Enabling branch deployments through IssueOps with GitHub Actions
- Using ChatOps to help Actions on-call engineers
- Partitioning GitHubâs relational databases to handle scale
- Increasing developer happiness with GitHub code scanning
- Why (and how) GitHub is adopting OpenTelemetry
- Improving large monorepo performance on GitHub
- Deployment reliability at GitHub
- Improving how we deploy GitHub
- Building On-Call Culture at GitHub
- Reducing flaky builds by 18x
- The evolving role of operations in DevOps
- Getting started with DevOps automation
- MySQL High Availability at GitHub
Major incidents & analysis reports
- GitHub Availability Report: August 2024
- GitHub Availability Report: July 2024
- GitHub Availability Report: June 2024
- GitHub Availability Report: May 2024
- GitHub Availability Report: April 2024
- GitHub Availability Report: March 2024
- GitHub Availability Report: February 2024
- GitHub Availability Report: January 2024
- GitHub Availability Report: December 2023
- GitHub Availability Report: November 2023
- GitHub Availability Report: October 2023
- GitHub Availability Report: September 2023
- GitHub Availability Report: August 2023
- GitHub Availability Report: July 2023
- GitHub Availability Report: June 2023
- GitHub Availability Report: May 2023
- GitHub Availability Report: April 2023
- GitHub Availability Report: March 2023
- GitHub Availability Report: February 2023
- GitHub Availability Report: January 2023
- GitHub Availability Report: December 2022
- GitHub Availability Report: November 2022
- GitHub Availability Report: October 2022
- GitHub Availability Report: September 2022
- GitHub Availability Report: August 2022
- GitHub Availability Report: July 2022
- GitHub Availability Report: June 2022
- GitHub Availability Report: May 2022
- GitHub Availability Report: April 2022
- GitHub Availability Report: March 2022
- GitHub Availability Report: February 2022
- GitHub Availability Report: January 2022
- GitHub Availability Report: December 2021
- GitHub Availability Report: November 2021
- GitHub Availability Report: October 2021
- GitHub Availability Report: September 2021
- GitHub Availability Report: August 2021
- GitHub Availability Report: July 2021
- GitHub Availability Report: June 2021
- GitHub Availability Report: May 2021
- GitHub Availability Report: April 2021
- GitHub Availability Report: March 2021
- GitHub Availability Report: February 2021
- GitHub Availability Report: January 2021
- GitHub Availability Report: December 2020
- GitHub Availability Report: November 2020
- GitHub Availability Report: August 2020
- GitHub Availability Report: July 2020
- Introducing the GitHub Availability Report
- February service disruptions post-incident analysis
- October 21 post-incident analysis
- February 28th DDoS Incident Report
- Incident Report: Inadvertent Private Repository Disclosure
Videos
GitLab
Blog Posts
- This SRE attempted to roll out an HAProxy config change. You won't believe what happened next...
- My week shadowing a GitLab Site Reliability Engineer
- Update: Elasticsearch lessons learnt for Advanced Global Search
- Lessons in iteration from a new team in infrastructure
- How we optimized infrastructure spend at GitLab
- How we scaled async workload processing at GitLab.com using Sidekiq
- Inside GitLab: How we release software patches
- What tracking down missing TCP Keepalives taught me about Docker, Golang, and GitLab
- How we used delayed replication for disaster recovery with PostgreSQL
GoCardless
Blog Posts
- Deploying Software at GoCardless: Open-Sourcing our âGetting Startedâ Tutorial
- How we compress Pub/Sub messages and more, saving a load of money
- Fear-free PostgreSQL migrations for Rails
- Observability at GoCardless: a tale of API performance improvement
- Debugging the PostgreSQL query planner
- Zero-downtime Postgres migrations - the hard parts
- In search of performance - how we shaved 200ms off every POST request
Major incidents & analysis reports
GoDaddy
Blog Posts
Gojek
Blog Posts
Goldman Sachs
Blog Posts
- SecDb Observability Journey
- Chaos Testing an Application on AWS
- Forecasting Capacity Outages Using Machine Learning to Bolster Application Resiliency
- Providing 99.9% Availability and Sub-Second Response Times with Sybase IQ Multiplexes by Using HAProxy
- Building Multi-Region Resiliency with Amazon RDS and Amazon Aurora
- Enabling Highly Available Trino Clusters at Goldman Sachs
- Observability at Scale
- Infrastructure and the Command Chain Pattern
- Mobile CICD with EC2 macOS
- Announcing CatchIT - Source Code Secret Scanner
- Building Platforms for Data Engineering
Blog Posts
- Accelerating incident response using generative AI
- Pitfalls and Patterns in Microservice Dependency Management
- SRE Practices & Processes
- Google site reliability using Go
- Three months, 30x demand: How we scaled Google Meet during COVID-19
- SRE Classroom: Distributed PubSub
- How SRE teams are organized, and how to get started
Videos
- What's the Difference Between DevOps and SRE? with Seth Vargo and Liz Fong-Jones of Google
- Risk and Error Budgetsâ with Seth Vargo and Liz Fong-Jones of Google
- Pragmatic Automationâ with Max Luebbe of GCP
- Must Watch! - Google SRE YouTube Playlist
- Squish Level Objectives: How SRE can Help Align Technical Work to User Benefit
- Implementing Distributed Consensus
- The SRE I Aspire to Be
- SRE Classroom, Or, How to Design a Reliable Distributed System in 3 Hours
- Zero Touch Prod: Towards Safer and More Secure Production Environments
- All of Our ML Ideas Are Bad (and We Should Feel Bad)
- The Map Is Not the Territory: How SLOs Lead Us Astray, and What We Can Do about It
- Deploying SRE Training Best Practices to Production: How We SRE'ed Our SRE Education Program
- Bigtable: A Journey from Binary to Service and the Lessons Learned along the Way
- Practical Instrumentation for Observability
- What Is ML Ops: Solutions and Best Practices for DevOps of Production ML Services
- Unified Reporting of Service Reliability
- How to Trade off Server Utilization and Tail Latency
- Keeping the Balance: Internet-Scale Loadbalancing Demystified
- From Black Box to a Known Quantity: How to Build Predictable, Reliable ML-based Services
- Mindfulness in SRE: Monitoring and Alerting for One's Self
- Pragmatic Automation
- Sublinear Scaling in Practice: The 1k SRE Project
- Strategies to Edit Production Data
- The Curse of SRE Autonomy and How to Manage It
- Scaling SRE Organizations: The Journey from 1 to Many Teams
- SRE Classroom - How to Design a Distributed System in 3 Hours
- Using PRDs and User Journeys to Design User-Friendly Tools
- How Google SRE and Developers Work Together
- SREcon21 - Experiments for SRE
Grab
Blog Posts
- Our Journey to Continuous Delivery at Grab (Part 1)
- Our Journey to Continuous Delivery at Grab (Part 2)
- Designing Resilient Systems: Circuit Breakers or Retries? (Part 1)
- Designing Resilient Systems: Circuit Breakers or Retries? (Part 2)
- Designing Resilient Systems Beyond Retries (Part 3): Architecture Patterns and Chaos Engineering
- Orchestrating Chaos using Grab's Experimentation Platform
- How We Designed the Quotas Microservice to Prevent Resource Abuse
- How We Scaled Our Cache and Got a Good Night's Sleep
Grammarly
Blog Posts
Heroku
Blog Posts
Indeed
Blog Posts
- Indeed SRE: An Inside Look
- Being Just Reliable Enough
- Automating Indeedâs Release Process
- Sloth, a Tool for Inducing Network Failuresâ with Preetha Appan of Indeed.com
Videos
Khan Academy
Blog Posts
Blog Posts
- Rethinking site capacity projections with Capacity Analyzer
- Insights into a Product SRE team at LinkedIn
- Hiring SREs at LinkedIn
- Open source update: School of SRE
- Fixing Linux filesystem performance regressions
- Production testing with dark canaries
- Smart alerts in ThirdEye, LinkedInâs real-time monitoring platform
- Iris mobile: An open source, mobile interface for incident management
- LinkedOut: A Request-Level Failure Injection Framework
- Eliminating toil with fully automated load testing
- The Makeup of Successful Geographically-Distributed SRE Teams: Part 1
- The Makeup of Successful Geographically-Distributed SRE Teams: Part 2
- Project STAR*: Streamlining Our On-Call Process
- Automating Your Oncall: Open Sourcing Fossor and Ascii Etch
- Resilience Engineering at LinkedIn with Project Waterbear
- Hiring SREs at LinkedIn, 2017
- Open Sourcing Iris and Oncall
- Building the SRE Culture at LinkedIn
- Failure is Not an Option
- MTTD and MTTR Are Key
- What Gets Measured Gets Fixed
Videos
- Growing the Site Reliability Team at LinkedIn: Hiring is Hard -- Greg Leffler
- 9 Years of Failure: How Racing Crappy Cars Made Me a Better SRE
- Weathering the Storm: How Early Warnings Save the Farm
- Unconference: Unsolved Problems in SRE
- Leading without Managing: Becoming an SRE Technical Leader
- Why Does (My) Monitoring Suck?
- Traffic Forecasting and Stress Testing Infrastructure
- Collective Mindfulness for Better Decisions in SRE
- TCPâArchitecture, Enhancements, and Tuning
- Over 600 Million Members and Hundreds of Micro Services: How We Scaled Our Monitoring System to Keep up
- Understanding Business Metrics Can Make You a Better SRE
- Code-Yellow: Helping Operations Top-Heavy Teams the Smart Way
- Differences in SRE Implementations across Companies
Tools
Loveholidays
Blog Posts
- Dynamic alert routing with Prometheus and Alertmanager
- Making loveholidays 18% faster with HTTP/3
- Enforcing best practice on self-serve infrastructure with Terraform, Atlantis and Policy As Code
- The 5 principles that helped scale loveholidays
- Realtime Fastly logs with Grafana Loki for under $1 a day
Macquarie
Blog Posts
Mattermost
Blog Posts
Meituan (ç¾å¢)
Blog Posts
Mercari
Blog Posts
- Who Watches the Watchmen? Keeping an Eye on Our Monitoring Systems
- What the Microservices SRE Team are doing as SRE Evangelists
- What itâs like to work as an embedded microservices SRE
- The Merpay SRE Team: Past and future
- Embedded SRE at Mercari
- What the SRE team wants to achieve with the development team
- DevSecOps: What Is It and Why Is It Gaining Momentum in the Industry?
- How do we share troubleshooting skills
- Datadog Dashboard at Scale w / Terraform
Meta
Blog Posts
- Leveraging AI for efficient incident response
- Improving Metaâs SLO workflows with data annotations
- SLICK: Adopting SLOs for improved reliability
- More details about the October 4 outage
- Update about the October 4th outage
Videos
Microsoft
Videos
- SLI & Reliability Deep-Diveâ with David N. Blank-Edelman of Microsoft
- Ironies of Automation: A Comedy in Three Partsâ with Tanner Lund of Microsoft
- Sustainable Software Engineering & SREs
- Study on Human Factors and Team Culture to Improve Pager Fatigue
- Prioritizing Trust While Creating Applications
- Building Resilience: How to Learn More from Incidents
- A Tale of Two Postmortems: A Human Factors View
- AvailabilityâThinking beyond 9s
- Ironies of Automation: A Comedy in Three Parts
- The Ops in Serverless
MIRO
Blog Posts
Monzo
Blog Posts
- Autoscaling Monzo: How we optimise our platform to be just the right size
- How weâve evolved on-call at Monzo
- How we respond to incidents
- How we monitor Monzo
Videos
Tools
Netflix
Blog Posts
- Achieving observability in async workflows
- Building Netflixâs Distributed Tracing Infrastructure
- Lessons from Building Observability Tools at Netflix
- Edgar: Solving Mysteries Faster with Observability
- Telltale: Netflix Application Monitoring Simplified
- Keeping Customers Streaming â The Centralized Site Reliability Practice at Netflix
- Introducing Dispatch
- Applying Netflix DevOps Patterns to Windows
- ChAP: Chaos Automation Platform
- Starting the Avalanche
- Netflix Chaos Monkey Upgraded
- Chaos Engineering Upgraded
- Automated Failure Testing
- From Chaos to Control â Testing the resiliency of Netflixâs Content Discovery Platform
- Introducing Atlas: Netflixâs Primary Telemetry Platform
- FIT: Failure Injection Testing
- Announcing Security Monkey â AWS Security Configuration Monitoring and Analysis
- Lessons Netflix Learned from the AWS Outage
- Scryer: Netflixâs Predictive Auto Scaling Engine
Major incidents & analysis reports
Videos
- AWS re:Invent 2019: A day in the life of a Netflix engineer (NFX202)
- When /bin/sh Attacks: Revisiting "Automate All the Things"
- How Did Things Go Right? Learning More from Incidents
- Monitoring and Tracing @Netflix Streaming Data Infrastructure
- Real user performance monitoring at Netflix scale â Martin Spier
- AWS re:Invent 2017 - Nora Jones Describes Why We Need More Chaos - Chaos Engineering, That Is
- AWS re:Invent 2017: Performing Chaos at Netflix Scale (DEV334)
- Netflix: Multi-Regional Resiliency and Amazon Route 53
- Designing Services for Resilience: Netflix Lessons
- South Bay SRE Meetup - Netflix Cloud Performance Team
- AWS re:Invent 2017: A Day in the Life of a Netflix Engineer III (ARC209)
- How Netflix Uses Kinesis Streams to Monitor Applications and Analyze Billions of Traffic Flows
- Mastering Chaos - A Netflix Guide to Microservices
- AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhereâ Global Architecture (ARC204)
- SREcon 2016 - Netflix: 190 Countries and 5 CORE SREs
- From Sys Admin to Netflix SRE
- Application Resilience Engineering and Operations at Netflix with Hystrix
- Injecting Failure at Netflix
- LISA13 - How Netflix Embraces Failure to Improve Resilience and Maximize Availability
- Incident Management at Netflix Velocity
Podcasts
Tools
New Relic
Blog Posts
- Defining Modern Software Roles: SREs at New Relic
- 10 Things Everybody Needs to Know About Site Reliability Engineering (SRE)
- What Tools Do Site Reliability Engineers Use?
- A Day in the Life of a New Relic SRE
- 7 Habits of Highly Successful Site Reliability Engineers
- Adopting the practice of SRE
- Using modern observability to establish a data-driven culture
Nubank
Blog Posts
- Engineering operational excellence, a case of continuous improvement
- How we deal with technical incidents
- How we do On-Call Rotations at Nubank
- How we scale our data platform efficiently and reliably
- Why We Killed Our End-to-End Test Suite
- Automatic retraining for machine learning models: tips and lessons learned
OpenAI
Blog Posts
PayPal
Blog Posts
- Triggered: Incident #1234 (incident process needs fixing)
- Implementing Observability in a Service Mesh
- PostgreSQL at Scale: Database Schema Changes Without Downtime
- Scaling GraphQL at PayPal
Videos
- SREcon Conversations Asia/Pacific with Karthikeyan Selvaraj and Rajesh Ramachandran, PayPal
- SRE Then vs SRE Now: A Balancing Act between Reflexes and Intuitive Instincts at PayPal
- Detecting Service Degradation and Failures at Scale through Distributed Log Processing
- Operating Elasticsearch with Ease at Scale
- Ensuring Site Reliability through Security Controls
Picnic
Blog Posts
Blog Posts
- Ensuring High Availability of Ads Realtime Streaming Services
- Improving efficiency and reducing runtime using S3 read optimization
- Scaling Kubernetes with Assurance at Pinterest
- What we learned from an iOS app OOMs incident
- How we designed our Continuous Integration System to be more than 50% Faster
- Simplifying web deploys
- Upgrading Pinterest operational metrics
- Distributed tracing at Pinterest with new open source tools
- Auto scaling Pinterest
Videos
Prezi
Blog Posts
Red Hat
Blog Posts
Riot Games
Blog Posts
- THE LEGENDS OF RUNETERRA CI/CD PIPELINE
- STRATEGIES FOR WORKING IN UNCERTAIN SYSTEMS
- IMPROVING THE DEVELOPER EXPERIENCE FOR OPERATING SERVICES
- SCALABILITY AND LOAD TESTING FOR VALORANT
- LEVERAGING GOLANG FOR GAME DEVELOPMENT AND OPERATIONS
- CONTROLLED CHAOS WITH FAULT INJECTION TESTING
- DOWN THE RABBIT HOLE OF PERFORMANCE MONITORING
- PROFILING: THE CASE OF THE MISSING MILLISECONDS
- PROFILING: REAL WORLD PERFORMANCE IN LEAGUE
- PROFILING: OPTIMISATION
- PROFILING: MEASUREMENT AND ANALYSIS
- RUNNING ONLINE SERVICES AT RIOT: PART I
- RUNNING ONLINE SERVICES AT RIOT: PART II
- RUNNING ONLINE SERVICES AT RIOT: PART III
- RUNNING ONLINE SERVICES AT RIOT: PART III: PART DEUX
- RUNNING ONLINE SERVICES AT RIOT: PART IV
- RUNNING ONLINE SERVICES AT RIOT: PART V
- THE EVOLUTION OF SECURITY AT RIOT
- RUNNING AN AUTOMATED TEST PIPELINE FOR THE LEAGUE CLIENT UPDATE
- AUTOMATED TESTING FOR LEAGUE OF LEGENDS
Salesforce
Blog Posts
- Looking at the Kubernetes Control Plane for Multi-Tenancy
- Optimizing EKS networking for scale
- Zero Downtime Node Patching in a Kubernetes Cluster
- How, Not Why: An Alternative to the Five Whys for Post-Mortems
- A Generic Sidecar Injector for Kubernetes
- Implementation of a monitoring strategy for products based on microservices
- 10 Steps to Develop an Incident Response Plan Youâll ACTUALLY Use
- Our Journey to a Near Perfect Log Pipeline
- Optimizing Performance with Web Workers
- Take A Moment To Refocus
Scribd
Blog Posts
Shopify
Blog Posts
- Resiliency Planning for High-Traffic Events
- Capacity Planning at Scale
- Using DNS Traffic Management to Add Resiliency to Shopifyâs Services
- Four Steps to Creating Effective Game Day Tests
- Implementing ChatOps into our Incident Management Procedure
- StatsD at Shopify
Videos
Sky Betting and Gaming
Blog Posts
Slack
Blog Posts
- Slackâs Incident on 2-22-22
- Infrastructure Observability for Changing the Spend Curve
- Slackâs Outage on January 4th 2021
- A Terrible, Horrible, No-Good, Very Bad Day at Slack
- Deploys at Slack
- Disasterpiece Theater: Slackâs process for approachable Chaos Engineering
Videos
Slalom Build
Blog Posts
- How to Implement Service Level Objectives in New Relic APM
- Beginners Guide to DevOps: How to Make It into the Industry
- GitHub Actions: Beyond CI/CD
- Why isnât all test automation run on the pipeline?
- The Many Shapes of Site Reliability Engineering
- How to build a secure by default Kubernetes cluster with a basic CI/CD pipeline on AWS
- Secret Management Architectures: Finding the balance between security and complexity
- Detecting Malicious Requests with Keras & Tensorflow
- The Lego Monolith â A Monolith Microservice Proof of Concept
- Managing Secrets Using Hashicorp Vault
- Packaging Spring Boot Applications for Deployment on Kubernetes
- Immutable Infrastructure and Continuous Delivery in the Cloud
Soundcloud
Blog Posts
- How to Successfully Hand Over Systems
- Building a Healthy On-Call Culture
- Alerting on SLOs like Pros
- Hands-Off Deployment with Canary
- Prometheus has come of age â a reflection on the development of an open-source project
- Prometheus: Monitoring at SoundCloud
- What I Learned in One Year as an SRE Trainee
- Tests Under the Magnifying Lens
Spotify
Blog Posts
- Matt Clarke: Senior Backend Infrastructure Engineer
- Designing a Better Kubernetes Experience for Developers
- Techbytes: What The Industry Misses About Incidents and What You Can Do
- Automated Incident Response Infrastructure in GCP
Videos
Squarespace
Blog Posts
Videos
Stack Overflow
Blog Posts
- âThis should never happen. If it does, call the developers.â
- Infrastructure as code: Create and configure infrastructure elements in seconds
- Fulfilling the promise of CI/CD
- A deeper dive into our May 2019 security incident
- Guest Post - Failing over without falling over
- How We Built Our Blog
- Stack Overflow Frees Up Engineering Time with Netlify
Videos
Strava
Blog Posts
Stripe
Blog Posts
- Fast and flexible observability with canonical log lines
- Fast builds, secure builds. Choose two.
- Introducing Veneur: high performance and global aggregation for Datadog
Videos
Target
Blog Posts
Tinder
Blog Posts
Tokopedia
Blog Posts
Blog Posts
- Logging at Twitter: Updated
- Deleting data distributed throughout your microservices architecture
- Deterministic Aperture: A distributed, load balancing algorithm
- MetricsDB: TimeSeries Database for storing metrics at Twitter
- The Infrastructure Behind Twitter: Scale
- The infrastructure behind Twitter: efficiency and optimization
Uber
Blog Posts
- Founding Uber SRE
- Disaster Recovery for Multi-Region Kafka at Uber
- Engineering Failover Handling in Uberâs Mobile Networking Infrastructure
- Optimizing Observability with Jaeger, M3, and XYS at Uber
Videos
upGrad
Blog Posts
Wikimedia Foundation
Videos
Wix
Blog Posts
Yelp
Blog Posts
Videos
Zalando
Blog Posts
SRECon Mix Playlist
Videos
- Adobe - The Good, the Bad and the Ugly: The 3 Learnings of an SRE
- Amdocs - SREs at Telecom and Media Industry: Bridging between Legacy and Cloud Native Apps
- Amazon - Confessions of a Systems Engineer: Learning from My 20+ Years of Failure
- Alaska Airlines - Capacity Prediction in External Services
- BuzzFeed - Optimizing for Learning
- BT - Challenges of Starting an SRE Team from Scratch in an Enterprise
- Cloudflare - Support Operations Engineering: Scaling Developer Products to the Millions
- Cloudlock - My Life as a Solo SRE
- Hudson River Trading - Fixing On-Call When Nobody Thinks It's (Too) Broken
- IBM - Why Automating Everything Adds to Your Toil
- Genesys - The Smallest Possible SRE Team
- Grafana Labs - SRE in the Third Age
- Kenna Security - Building a Scalable Monitoring System
- Lightstep - Building Service Ownership Using Documentation, Telemetry, and a Chance to Make Things Better
- MessageBird - Autopsy of a MySQL Automation Disaster
- Netlify - Perks and Pitfalls of Building a Remote First Team
- ReactiveOps - Zero to SRE
- Salesforce - Incident Response in Unfamiliar Sociotechnical Systems: One Incident Commander's Challenges Supporting Inter-organizational Anomaly Response in the Age of COVID-19
- Sprax - From Nothing to SRE: Practical Guidance on Implementing SRE in Smaller Organisations
- The New York Times - SRE by Influence, Not Authority: How the New York Times Prepares for Large-Scale Events
- Twitter - Hiring Great SREs
- United States Digital Service - Lessons Learned in Black Box Monitoring 25,000 Endpoints and Proving the SRE Team's Value
- Unity Technologies - Being Reasonable about SRE
- Udemy - How to Do SRE When You Have No SRE
- Vanguard - Cloudy with a Chance of Chaos
- WeWork - Learning from Learnings: Anatomy of Three Incidents
- Zendesk - Latency and Availability Error Budgets Done Right at Scale
Resources
Books
- New! Enterprise Roadmap to SRE
- Building Secure & Reliable Systems | Read free online version hosted by Google
- Site Reliability Engineering | Read free online version hosted by Google
- The Site Reliability Workbook from Google | Read free online version hosted by Google
- Training Site Reliability Engineers | Read free online version hosted by Google
- 97 Things Every SRE Should Know | Complimentary Copy from Nginx
- SLO Adoption and Usage in Site Reliability Engineering
- Practical Site Reliability Engineering
- Implementing Service Level Objectives
- Chaos Engineering
- Seeking SRE
- Security Chaos Engineering
- Chaos Engineering Observability
- Database Reliability Engineering
- What Is SRE?
- Database Reliability Engineering: What, Why, and How?
- Observability Engineering
- Chaos Engineering: Site reliability through controlled disruption
- Incident Metrics in SRE | Read free online version hosted by Google
- Engineering Reliable Mobile Applications
- Monitoring the SRE Golden Signals
- Site Reliability Engineering: Philosophies, habits, and tools for SRE success | Portable version
- 97 Things Every Cloud Engineer Should Know
- Real-World SRE
- Hands-on Site Reliability Engineering
Events
Other Resources
Awesome Lists
- Awesome SRE
- Awesome Site Reliability Engineering Tools
- Awesome Chaos Engineering
- Awesome Monitoring
- Awesome Observability
- Awesome MLOps
- ML-Ops.org
SRE Resources from various organizations
- Google SRE Page
- Google SRE Classroom
- Google Cloud SRE Page
- Microsoft SRE Page
- School of SRE from LinkedIn
- Stripe Increment Magazine Issue 16 on Reliability
- AWS Observability Recipes
- Awesome Sysadmin
Incidents & postmortems
- The Verica Open Incident Database
- Postmortem Templates
- Incident Review and Postmortem Best Practices
Newsletters
Credits
- Inspired by Howtheytest from Abhijeet Vaikar
- The list of organizations is referred from my other repo awesome-engineering
- Banner image Cartoon vector created by vectorjuice - www.freepik.com
Other How They... repos
Contributors
Contribute
Contributions welcome! Read the contribution guidelines first.
Stargazers Over Time
License
To the extent possible under law, Unmesh Gundecha has waived all copyright and related or neighboring rights to this work.
If you decide to use this anywhere, please credit @upgundecha on X. Also, if you like my work, check out my other projects on GitHub.
Top Related Projects
A curated list of Site Reliability and Production Engineering resources.
Site Reliability Engineer Interview Preparation Guide
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions
The Patterns of Scalable, Reliable, and Performant Large-Scale Systems
A curated list of amazingly awesome open source sysadmin resources inspired by Awesome PHP.
A collection of Linux Sysadmin Test Questions and Answers. Test your knowledge and skills in different fields with these Q/A.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot