Live data from Hacker News

Google App Engine 1.5.0 released

googleappengine.blogspot.com

11–20 of 22 posts

Re: Google App Engine 1.5.0 released

#12
post #7

Earlier quoted context omitted.

I take it that you're talking about the new Backends: Backends are special App Engine instances that have no request deadlines, higher memory and CPU limits, and persistent state across requests. They are started automatically by App Engine and can run continously for long periods. Each backend instance has a unique URL to use for requests, and you can load-balance requests across multiple instances.

Backends seem overpriced to me; their default backend is a long-lasting process running at 1.2Ghz allowed to use 256MB of RAM and it's priced $0.16/hour ($115/month). They can shutdown/restart/relocate your backend whenever they want so what they suggest to keep your service live is "Configuring more backend instances than are normally required to handle your traffic patterns" (yeah that's at least another $115/month…

If you're actually using them as a backend, I'm not sure you couldn't start them up and shut them down.

But yes, they are expensive.

Re: Google App Engine 1.5.0 released

#13
post #7

Earlier quoted context omitted.

I take it that you're talking about the new Backends: Backends are special App Engine instances that have no request deadlines, higher memory and CPU limits, and persistent state across requests. They are started automatically by App Engine and can run continously for long periods. Each backend instance has a unique URL to use for requests, and you can load-balance requests across multiple instances.

Backends seem overpriced to me; their default backend is a long-lasting process running at 1.2Ghz allowed to use 256MB of RAM and it's priced $0.16/hour ($115/month). They can shutdown/restart/relocate your backend whenever they want so what they suggest to keep your service live is "Configuring more backend instances than are normally required to handle your traffic patterns" (yeah that's at least another $115/month…

At linode that kind of money will give you 4G of ram, cpu power in the same ball park and loads of storage and transfer. It seems that Backends - and the GAE in general - makes most sense when you view the system as a whole, and work with systems of a certain size. Tasks goes in to queues and backends are started and stopped as needed - stuff like that. If all you need is to serve a long running process, linode and the like is more economical.

Re: Google App Engine 1.5.0 released

#15
post #3

The constant instances seem like a bid to take over the heroku type space.

There were a lot of complaints from people that had infrequently used (new) web apps, and so there would be a substantial delay to spin up an instance when the app did get hit. This makes your site seem "slow" even though it really isn't, which is a big problem if you are trying to build some momentum, or show off your site to potential investors. People were resorting to some less than ideal ways for keeping their i…

That is only a problem for Java apps (and for Python apps using things like Django that were never really suited to AppEngine).

None of my AppEngine apps ever had any problem with 'cold' startup speed, and now with Go startup speed will be even less of an issue.

Re: Google App Engine 1.5.0 released

#16
post #11

I've been looking at getting into Go programming. This could be a cool opportunity to do so. Does anyone have any resources for writing Go webapps?

Rob Pike is giving (or has given already?) a talk on writing web apps in Go at Google I/O today, it is not livecasted, but the video should be up tomorrow.

Re: Google App Engine 1.5.0 released

#17
post #3

The constant instances seem like a bid to take over the heroku type space.

There were a lot of complaints from people that had infrequently used (new) web apps, and so there would be a substantial delay to spin up an instance when the app did get hit. This makes your site seem "slow" even though it really isn't, which is a big problem if you are trying to build some momentum, or show off your site to potential investors. People were resorting to some less than ideal ways for keeping their i…

I believe you can use a feature called "Always On" to avoid the cold start problem. I noticed such an option in my billing settings for $0.30 / day.

Re: Google App Engine 1.5.0 released

#18
Many people seem to be complaining about the shift from CPU-hour to instance-hour pricing. They don't seem to get that it's more or less the same thing: dynamic instances can handle "a small number" of concurrent requests.

So the GAE team has set the incentives correctly, to reward apps that work well with concurrency.

The current free quota is 6.5 CPU hours, and the upcoming free quota seems to be 24 instance hours. I know which I prefer.

Re: Google App Engine 1.5.0 released

#19
post #16
post #11

I've been looking at getting into Go programming. This could be a cool opportunity to do so. Does anyone have any resources for writing Go webapps?

Rob Pike is giving (or has given already?) a talk on writing web apps in Go at Google I/O today, it is not livecasted, but the video should be up tomorrow.

I really wish Google would set up all its presentations as one or more podcasts. I know it's unlikely, but one can dream.

Re: Google App Engine 1.5.0 released

#20
post #17

Earlier quoted context omitted.

There were a lot of complaints from people that had infrequently used (new) web apps, and so there would be a substantial delay to spin up an instance when the app did get hit. This makes your site seem "slow" even though it really isn't, which is a big problem if you are trying to build some momentum, or show off your site to potential investors. People were resorting to some less than ideal ways for keeping their i…

I believe you can use a feature called "Always On" to avoid the cold start problem. I noticed such an option in my billing settings for $0.30 / day.

The always on feature in december fixed half the issue (cold start)

This fixed the other half (long running processes).

Post reply on HN