Earlier quoted context omitted.
It reminds me of https://www.frankmcsherry.org/graph/scalability/cost/2015/01... - you pay an extremely high cost upfront without even noticing - for the promise that at some point, you'll be able to scale out to any scale, with no extra human effort and for costs proportional to the scale. I have not observed enough uses of serverless I can draw conclusions from, but if it's anywhere like hadoop style scaling, 95% o…
It depends. Give you an example: We have an expensive reporting workflow that needs considerable resources, but usually only once a month. Two ways to do this cost effectively: Scale down containers to zero, meaning several minutes of response time if you do need it ad-hoc sometime. At least as complex to configure. OR you fit it to AWS SAM. The latter has proven to be a good match for us. I solved the debugging stor…
The Serverless Revolution Has Stalled
641–650 of 670 posts
Re: The Serverless Revolution Has Stalled
#642Earlier quoted context omitted.
It's not nuts to run servers. If an application is operating at any scale such that there is a nonstop stream of requests, then it will be cheaper, faster, and more energy-efficient to run a hot server. This follows from thermodynamics. No matter how good the cloud vendor's serverless is, it's always going to be less efficient than a server, unless it doesn't do any setup and teardown (i.e. no longer server less ). I…
> Serverless won't be profitable because the people who need it don't make money. You seem to implying only applications with huge numbers of users can be profitable. This statement ignores a tremendous amount of (typically B2B) applications that provide enormous value for their users but don't see a lot of traffic. I have worked on applications that are at the core of profitable businesses yet they can go days, in s…
Re: The Serverless Revolution Has Stalled
#643Earlier quoted context omitted.
You might really like pulumi. I'm kind of on the opposite end, ops>swe so tons of IAC and i'm using pulumi now as I'm more swe focused https://www.pulumi.com/ (ive no relation to them)
I'm late but can't edit, if anyones curious I just found a great article on it; https://itnext.io/getting-started-with-pulumi-sdk-22dc0b7ab8...
CDK is moving quite fast and not all parts are out of the experimental phase, so there are breaking changes shipped often. I think in a couple of years it will stabilize and mature and become a very productive way of working with infrastructure.
Re: The Serverless Revolution Has Stalled
#644Earlier quoted context omitted.
I don't do any server admin. My code runs in docker on pretty much any server I can get my hands on. Some of my code runs on a ThinkPad stashed behind my desk, on DigitalOcean, on my Macbook. I could deploy to a Raspberry Pi and it would run just the same. It takes 10 minutes to deploy an exact copy to a new environment. None of that requires OS maintenance. My house plants require far more maintenance than my softwa…
What if your ThinkPad is unplugged? What if its HDD dies? Why aren't you updating the OS? Did you patch the firmware for Spectre/Meltdown? Etc, etc
That hard drive event showed me how disposable the machine itself has become thanks to docker.
Re: The Serverless Revolution Has Stalled
#645I don't buy into serverless. I went to a webdev convention, and it ended up being a serverless hype train. Industry experts with a financial incentive to promote serverless went on stage and told me they can't debug their code, or run it on their machine. They showed me comically large system diagrams for very simple use cases, then spent an hour explaining how to do not-quite-ACID transactions. Oh yeah and you can o…
If you are interested in these kind of stuff, maybe take a look at Wardley Maps: https://medium.com/wardleymaps
Re: The Serverless Revolution Has Stalled
#646I don’t believe that the FaaS revolution has stalled, though I fear it will follow the tech adoption curve because people are over hyping it. I do wonder if AWS’s leadership in the area has stalled though. GCP has innovated with their hybrid Cloud Run to allow running more traditional apps in a serverless way. Azure and CloudFlare have paved the way to what I believe is the future with stateful functions with Durable…
> GCP has innovated with their hybrid Cloud Run to allow running more traditional apps in a serverless way. AWS has Fargate, run your containers without caring where they run.
Re: The Serverless Revolution Has Stalled
#647Earlier quoted context omitted.
I bought into hosting stuff on AWS, specifically on EBS which I assume is meant by a 'serverless' infrastructure, but I don't know crap about it. Still think it is mostly awesome and the services are solid. But such infrastructure comes with its own caveats. EBS now bugs me about some 'HealthCheckAuthEnabled'. I don't know what it wants, just that I have limited time to react. Cannot understand the clearly auto-trans…
"Hosting your own server is a lot of work and isn't fun. There is still a lot of work to do if you host on something on such an infrastructure." So true. I really want to know how many of these "I host my own stuff"-people keep all there systems up to date. Updates, security patches etc.
Running a server has been a non-issue for years for me.
Re: The Serverless Revolution Has Stalled
#648Earlier quoted context omitted.
What if your ThinkPad is unplugged? What if its HDD dies? Why aren't you updating the OS? Did you patch the firmware for Spectre/Meltdown? Etc, etc
The HDD died already. I opened it, moved the stuck head with my fingers and shoved it back in. I have good backups, and as someone else said, if it was important, it would not run on a recycled laptop behind my desk. That hard drive event showed me how disposable the machine itself has become thanks to docker.
How much would you even pay for hosting? $2 a month?
Re: The Serverless Revolution Has Stalled
#649Earlier quoted context omitted.
Because you can reproduce that environment locally. Often useful for fixing bugs.
Also useful for doing the development in the first place!
Re: The Serverless Revolution Has Stalled
#650Not so different and this is from the 70s/80s