|
|
|
|
|
by nzoschke
3888 days ago
|
|
Containers are here to stay and almost certainly will be the new abstraction of computation. My big question is around a service like AWS Lambda. Is that not already the logical conclusion of container based computation? If magic units of computation can run instantly on demand, what more do you need? No hosts, but also no OS images, and no specific containerization tools! |
|
> If magic units of computation can run instantly on demand, what more do you need?
Some control over flow, scaling and batching wrap everything up for me. Startup times for my code are non-zero even if the environment is, and adding on queues with a "batch grab" means I can scale things far more sensibly (I can cram a lot of stuff into a single matrix mul if I can pull 100 items at a time from a queue).
I really, really miss picloud :(