Google App Engine First Impressions
For those of you that have been hiding under a rock for the last 12 hours, App Engine is Google’s answer to Amazon Web Services. While it is less flexible in some senses (you don’t have a complete OS at your disposal), it does provide tighter integration for web applications and even includes a (somewhat crippled) version of Django out of the box.
I’m pretty excited about this mainly because I’m not a big fan of server administration, so I took a couple hours this morning to test it out. Here are some quick notes:
The Good
- It sort of works with Django
- Deployment is dead simple
- It handles user accounts and registration
- Every app gets a built in Admin Console with stats, version management and datastore CRUD capability
- You can add your own Python libraries
- And, of course, it will scale on the fly
The Bad
This excludes you from using models or anything that depends on them in Django, including the admin, sessions, the authorization framework.The Ugly
- YAML configuration files
- Admin CRUD interface is no match for Django’s, see screenshots below.
Other Observations
- Much of the API is clearly influenced by Django making transitioning easier.
- Pricing has not been released, but from this statement, it appears they will have free accounts:
- Generic views don’t work with the datastore queries 'Query’ object has no attribute '_clone’
- The datastore admin interface only becomes active once you have saved an object for the model.
Screenshots
Adding an item to the Datastore
Conclusion
Despite its limitations, I think App Engine is going to be a great thing for the Django community and I can’t wait to host my apps there.
I started migrating my site over (lincolnloop1.appspot.com) with some quick hacks, but realized that creating a Django database backend for the App Engine Datastore (a.k.a. BigTable) is going to be the best route. I’m not a database guru and I haven’t dug into Django’s database internals, but it looks feasible. The basic stuff is so close to Django that I’m hoping it will be pretty straightforward and we should be able to emulate more advanced queries with some Python magic. I’m happy to open up an app and I started a Google Code project django-appengine-backend for any developers that are interested in working on the project.
Comments
Comments are closed for this post.
This was written on April, 8 2008 and is filed in code, django.
Our Products
Categories
- SEO
- accessiblity
- code
- company news
- django
- gondola
- open source
- portfolio
- presentation
- screencast
- software
- subversion
- trailmapping
- wordpress
Archives
- June, 2009
- April, 2009
- February, 2009
- December, 2008
- November, 2008
- September, 2008
- August, 2008
- July, 2008
Elsewhere
What we’ve been up to online
-
@37signals, seeing a number of 500 errors clicking around Basecamp right now http://skitch.com/t/u7e
Pete, 1 day, 15 hours ago -
Basecamp 500 Internal Server Error
Pete, 1 day, 15 hours ago -
Gmail broke plain text replies. Plz fix! http://bit.ly/43nd3q
Pete, 1 week ago -
Building an Open Source Consulting Company
Pete, 1 week, 3 days ago -
< 30% of applicants correctly followed the instructions. Should have added "attention to detail" & "ability to follow instructions" as reqs
Pete, 1 week, 6 days ago -
Django snippets: Sorl Thumbnail + Amazon S3
Pete, 1 week, 6 days ago -
Lincoln Loop is still looking for a Project Manager. Interested? http://authenticjobs.com/jobs/3688/
Pete, 2 weeks ago -
Use PERT technique for more accurate estimates
Taking a weighted average of the most pessimistic, most optimistic, and most likely estimates of a task to get a realistic estimate of the time it will take.
Pete, 2 weeks, 3 days ago -
Evidence Based Scheduling - Joel on Software
Interesting approach to software estimation.
Pete, 2 weeks, 3 days ago -
Less Wrong: Planning Fallacy
People are terrible planners/estimators and there is evidence to prove it.
Pete, 2 weeks, 3 days ago -
A reminder of how simple business can be when you don't make it complicated - (37signals)
Refreshing, especially after after spending 2 days wading through client contracts and work orders.
Pete, 3 weeks, 5 days ago -
We're looking for a part-time Project Mgr to help us juggle the workload. Interested? info+pm@lincolnloop.com
Pete, 4 weeks, 1 day ago -
pushed to master at lincolnloop/django-protected-files
Pete, 1 month ago -
@richleland do you have libjpeg installed?
Pete, 1 month ago -
I have seen the future and it is Google Wave http://wave.google.com
Pete, 1 month ago





Hi,
Seems you’re using the DEBUG=True into your settings to lincolnloop1.appspot.com. Clue : http://lincolnloop1.appspot.com/blog/
Anyway, thanks for sharing your feelings about GAppEngine, with screenshots ! I’ve got a closer look to how the admin seems to be designed.
One thing that I also hate with google app engine is, it doesnt have a very good site admin. I wish that django will fully support google app engine platform in the future so that we dont need to use google app engine’s specific database api. Everything should be done by the framework under the hood