Re: [google-appengine] Running huge algorithm

2010-05-12 Thread Barry Hunter
It probably possible if you can break down the task into lots of small chunks. Remember AppEngine is designed to respond to web-requests. So you define handlers that respond to a user. You only get 30 seconds for a single handler. You can schedule "tasks" to run long running processes, but each ta

Re: [google-appengine] Running huge algorithm

2010-05-12 Thread Michael Loftis
GAE itself is parallel. Read up on tasks and task queues. GAE uses a completely different "threading model" that what you're thinking of, it's a job queuing/batch job type system. All large/long running tasks must be broken down into smaller tasks that will execute with about 30 seconds of C

Re: [google-appengine] Running huge algorithm

2010-05-12 Thread Ikai L (Google)
App Engine is probably not the best place to render graphics (many classes you need are likely not whitelisted), but we certainly welcome the attempt. You'll want to read up and understand our Task Queues API: http://code.google.com/appengine/docs/python/taskqueue/ On Tue, May 11, 2010 at 10:15

[google-appengine] Running huge algorithm

2010-05-11 Thread vivek
Hi Is it possible to run huge algorithm(such as graphics rendering) in google apps and how fast it can run.Also threading is not supported how i can run parallel process. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this grou