All these announcement are making me feel sorry for all the other players in the cloud game. The other guys don't even come close.
AWS Lambda
91–100 of 164 posts
Re: AWS Lambda
#92I wish they hadn't named the units of computation "Lambda functions". Cause, you know there's already something known as a "Lambda function" in computer science. But kudos for Amazon for furthering the datacenter-is-the-computer approach. It is simply the right thing to do.
I'm guessing they borrowed it from this : http://lambda-architecture.net/
But I think it is simply named after the functional language feature. The core concept of this service is function.
Re: AWS Lambda
#93> You can use any third party library, even native ones. [1] I realize they are starting with node.js, but I wonder how this will work? It sounds like they plan to support arbitrary dependencies. Will you upload a Docker container with your necessary dependencies? They talk about milliseconds until your code is running, and containers may be (?) slower than that. Or am I hoping for too much. [1] http://aws.amazon.com…
We do it at http://wym.io/ by putting our runtime library in the environment that the code runs in and keeping the runtimes around, keeping the environment clean along the way.
We're working towards doing all that (and more than) Lambda does in a deploy-your-own fashion...
Re: AWS Lambda
#94Re: AWS Lambda
#95I’ve had a chance to use the service for a couple of weeks. My quick summary review is that it’s a little tricky setting up the IAM roles and security groups, but once you have that going, it works great! I see a ton of potential here in transforming the way people use AWS. I also put together the Netflix use cases in the keynote so if you have any questions I’ll try to answer them!
Do you know if you can respond to events from SWS or SQS?
It's a little convoluted, but that seems to be the way they're going for now.
Re: AWS Lambda
#96I’ve had a chance to use the service for a couple of weeks. My quick summary review is that it’s a little tricky setting up the IAM roles and security groups, but once you have that going, it works great! I see a ton of potential here in transforming the way people use AWS. I also put together the Netflix use cases in the keynote so if you have any questions I’ll try to answer them!
What does this mean to application development? Is it something revolutionay?
Re: AWS Lambda
#97I'm so torn - on one side this is a very neat thing that'll save a lot of boilerplate, and on the other it screams of vendor lock-in.
I won't be surprised if someone writes a generic lambda library which given a cloud provider generates relevant mappings/code. Will take care of some of the vendor lock-in concerns ?
Anyway, libcloud seems to be leading the way in this kind of standardization, so that's good news. There's also providers that have drop in AWS-compatible APIs for some services. Then there is stuff like apache mesos for creating that infrastructure, which is less relevant to smaller companies.
But I suspect that the last thing Amazon wants is to turn into a commodity, so it's in their interest to release as many differentiators with non-standard APIs as they can.
Re: AWS Lambda
#98I'm so torn - on one side this is a very neat thing that'll save a lot of boilerplate, and on the other it screams of vendor lock-in.
Re: AWS Lambda
#99Re: AWS Lambda
#100I love that it uses Node.js to start, but does it support NPM?
Looks like yes: http://docs.aws.amazon.com/lambda/latest/dg/walkthrough-s3-e... Now, how to deal with node packages that require libraries not on the default amazon linux ami?