I see a lot of news about serverless architectures & frameworks, and other hosted services like auth, DB's, etc. Are any startups experimenting with building fully "no-ops" architectures (I use the word as a classification, I realize true no-ops is impossible)? Or at a certain point is the benefit of minimal ops outweighed by the overhead of needing to glue multiple separate services together?
Ask HN: Is a “no-ops” architecture viable?
1–5 of 5 posts
Re: Ask HN: Is a “no-ops” architecture viable?
#2When something goes wrong you need ops support. Too many things can go wrong, I think impossible to anticipate all of them. The less familiar you (or whomever does system admin for you) is with the setup and environment the longer it will take to find and fix problems. The more complex the infrastructure (and serverless/microservices gets complex fast) the more expertise you need to deal with the inevitable problems.
Re: Ask HN: Is a “no-ops” architecture viable?
#3There's already new PaaS with less features (and cheaper). You push something to a repository and they run it. I saw https://www.netlify.com/ mentioned a few times on HN. And https://render.com/ seems similar. For static websites those are free, I mean hard to compete with free. I'm sure they will add more features in the future, slowly becoming the next Heroku.
Re: Ask HN: Is a “no-ops” architecture viable?
#4The serverless framework gets you pretty dang close to no-ops though. You write your config, you write your code, you deploy and it just sort of works. Until you hit massive scale, and then you start needing to "operate" your serverless setup.
Of course, serverless (the company) provides a commercial product to help you with that.
Re: Ask HN: Is a “no-ops” architecture viable?
#5Heroku keeps adding features, allows more control, supports bigger companies and have many many plugins (elements I think they call it) you can install. There's already new PaaS with less features (and cheaper). You push something to a repository and they run it. I saw https://www.netlify.com/ mentioned a few times on HN. And https://render.com/ seems similar. For static websites those are free, I mean hard to compet…