It's "serverless" in the sense of the server being commoditized and irrelevant to the design of the app. It might be better to say that the server is rendered ubiquitous or trivial than that it's removed. Lambda gives you a programming model where the server has no configuration or state, because all of what would normally be in the server is now in your handler specifications instead. So you don't need to think about the server, and any server running anywhere that can support loading Lambda handlers would be equivalent for your purposes.
Imagine you're running your own Lambda-compatible server, and you have a scaling problem. The programming model means that the solution-space to that problem is restricted to adding more servers in a shared-nothing cluster configuration, not to reconfiguring the ones you have. Your Lambda server is thus a piece of black-box infrastructure, like a load-balancer.
I think that understates it a bit. AWS Lambda is backed by a fleet of servers managed around the clock by one of the largest and most experienced IT organizations in the world, and API Gateway is fronted and cached by Amazon CloudFront's global network of servers.
The closer we get to systems like this being easy to build and commonplace, the closer we get to being able to do dynamic sites/apps on decentralized IPFS-like architectures [0].
[+] [-] flxn|10 years ago|reply
[+] [-] avian|10 years ago|reply
[+] [-] derefr|10 years ago|reply
Imagine you're running your own Lambda-compatible server, and you have a scaling problem. The programming model means that the solution-space to that problem is restricted to adding more servers in a shared-nothing cluster configuration, not to reconfiguring the ones you have. Your Lambda server is thus a piece of black-box infrastructure, like a load-balancer.
[+] [-] jread|10 years ago|reply
[+] [-] jclulow|10 years ago|reply
[+] [-] dsjoerg|10 years ago|reply
[+] [-] Mizza|10 years ago|reply
[+] [-] rgbrgb|10 years ago|reply
[0]: https://ipfs.io/
[+] [-] brotherjerky|10 years ago|reply
[+] [-] Mizza|10 years ago|reply
[+] [-] ihsw|10 years ago|reply