What would make AWS even better
11–20 of 70 posts
Re: What would make AWS even better
#12Lambda is insanely expensive is why they don’t allow long-running jobs. A 1GB allocation is $43/mo. And most lambda users are running 1 single task/process per lambda invocation.
Wait, so AWS does not allow long running lambdas because that would make too much money for them?
Lambda is a complex system, and holding those sockets for long times across many services could cause resource starvation issues. You've got load balancers, data plane, control plane, tenant vms, and a whole bunch of caches, and support services that all need to be ready to roll over the lifetime of the invocation.
And you have to consider the use case for draining and patching lambda pools. If someone is running a two hour function and you need to take down any server that's currently holding a thread or socket for it, you need to wait for the function to complete. You can't start a new load, so you are really inefficiently using resources until the function completes.
Re: What would make AWS even better
#13Everyone complains about the 15 minutes problem on lambda, but am I the only that have a problem with the 250MB deployment size limit?
Re: What would make AWS even better
#14Re: What would make AWS even better
#15Only six weeks of paid parental leave?
I would absolutely be willing to pay more for AWS if I knew that amount was going to treating the poor folks who built it all better.
Re: What would make AWS even better
#16Same with Twilio. They do kind of compete with them, but not really.
Their managed airflow is insanely basically unusably expensive, I don't get that.
Re: What would make AWS even better
#17Long running lambdas would be sick for infrequent / low concurrency data pipelines. My wet dream is "bidirectional IaC". Let me make changes using the GUI, commit to repo automatically.
Re: What would make AWS even better
#18Long running lambda functions are called AWS Batch. It’s a relatively unknown service but pretty decent if you need something like a GPU or long running jobs and can tolerate a 90 second cold start.
Re: What would make AWS even better
#19Everyone complains about the 15 minutes problem on lambda, but am I the only that have a problem with the 250MB deployment size limit?
Re: What would make AWS even better
#20It feels things like the S3 API are design by committee. If you use tools like the cli you'll notice how clunky it is