Earlier quoted context omitted.
no, with different limitations I believe, e.g. no cool google storage, but only SDB or RDB (which may be ok anyway)
To me, the limitations of App Engine are things like having to use a crippled version of the programming environment (as you don't get your own computer, so they've neutered things down to something "safe") and a bunch of limitations on CPU time, request length, and background processing. (edit: I had somehow read what you said to mean, "no, but with these new limitations", so arguably I should just delete my respons…
Introducing AWS Elastic Beanstalk
51–58 of 58 posts
Re: Introducing AWS Elastic Beanstalk
#52Questions: What does Elastic BeanStalk mean for me? 1. Can my database auto-scale? 2. Can my JVM heap auto-scale beyond 2 GB without GC pauses?
Re: Introducing AWS Elastic Beanstalk
#53What has AWS done in the past? They've introduced a new product, then over time:
1) Made it easier to manage 2) Made it more automated 3) Added additional bits of functionality
Why would we not expect them to do the same with Beanstalk?
Re: Introducing AWS Elastic Beanstalk
#54Just to be clear, this is only for Java apps right? This does not include PHP or Python?
This is just the first step, according to techcrunch ruby is next. http://techcrunch.com/2011/01/19/amazon-web-services-introdu...
Re: Introducing AWS Elastic Beanstalk
#55Sounds like a great idea, though the naming is a bit unfortunate, there might be some confusion between the Git hosting and collaboration application: beanstalkapp.com.
Re: Introducing AWS Elastic Beanstalk
#56There's still plenty of room for competition. Beanstalk is limited in its ability to innovate because it is simply a management layer on top of AWS, which will restrict its potential feature offerings. I think smaller developers stand to reap huge productivity benefits from easier to use and more feature-rich platforms such as Heroku.
Re: Introducing AWS Elastic Beanstalk
#57Earlier quoted context omitted.
no, with different limitations I believe, e.g. no cool google storage, but only SDB or RDB (which may be ok anyway)
I agree. It's definitely meh without a useful and truly scalable database. That's the hard part. SimpleDB isn't particularly useful, and RDB isn't particularly scalable.
Re: Introducing AWS Elastic Beanstalk
#58Earlier quoted context omitted.
automatic scaling would be a good benchmark for the true definition of cloud. You can do this with EC2. You can set up monitors based on CPU usage over a time period and it'll start new nodes if required. S3 is 'autoscaling' for serving files. Just upload your files and pay for what you use.
but storage cannot be scaled like this, you have to design your own mechanic to handle it.