TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What is the difference between a SR, QA and DevOps Engineer?

1 pointsby s-xyzover 2 years ago
I am currently reading up on profiles and principles which are focused on keeping our systems up to date and reliable. We have a production monitoring team, but I feel that this is not the way to go, as the team is handling everything from quality assurance to ongoing operational interventions. I therefore believe that using more industry known practices can help. The terms that I found related to this include Site Reliability Engineering, Quality Assurance Engineering and Devops Engineering. What are the differences and roles of these principles?

2 comments

theGnuMeover 2 years ago
Roles are a function of the people you have and the primary responsibilities and functions they perform. They focus on some level of abstraction usually based on their training&#x2F;background and the overall needs.<p>SREs are coders who know IT system. So they treat IT as code as much as possible. They solve problems by abstracting them into code.<p>Closely related are DevOps who are usually IT who know some coding. Maybe they run development operations, so the infrastructure and tasks needed to keep the developer infrastructure running. They solve problems by scaling known components and applications.<p>Quality Assurance Engineers are testers who can code or perhaps know some systems deeply vs being an application specialist.
Jemaclusover 2 years ago
This is super high level, but the TL;DR is:<p>- Site Reliability: exactly what it sounds like. These teams are responsible for ensuring that the site is reliable! Is it up? Is it healthy? How do we make sure it stays that way? This often involves monitoring and telemetry, exception tracking, dashboards out the wazoo. It also generally includes server-related work, but focusing on health and uptime.<p>- Quality Assurance: these folks are focused on testing and ensuring that data and behaviors are acting the way we expect. This is not server-oriented, but app-oriented. They manage testing infrastructure and write tests to ensure that this the app and its features gets across the finish line to deploymnet. Depending on the company, this may be a lot of wrangling cats.<p>- DevOps Engineering: this is controversial and vague, because &quot;DevOps&quot; isn&#x27;t really a role so much as a vague hand-wavy word. However, in most companies I&#x27;ve worked with, this role is focused on server stuff, including health and uptime (see: SRE) but primarily focused on deployments, delivery pipelines, scaling, upgrades, security, and so on.<p>The way I generally internalize these is this:<p>DevOps sets up the servers and ensures the app is deliverable to the server via CI&#x2F;CD. After that, SRE takes over and ensures that those servers remain healthy and uptime. Once the app is on the servers, QA is partly responsible for ensuring that the app code is healthy.<p>This is super high level and I&#x27;m glossing over a ton of details, and some of what I mentioned is contentious. Larger organizations think about these things differently than smaller organizations, and tech-focused orgs think about these differently than non-tech-focused organizations. But I think as like a 30,000 foot view, this sounds right based on my experiences. I hope this helps!