Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok I guess it's time to give up, I've been trying almost everything with the deferred function to try running my code that takes longer than those 60 sec. I tried TaskQueues which I couldn't make work, then I tried deferred function which seems to be the right way to do it. I can get a function running fine, but when I want to know when it is done, by calling the MainHandler's self.response.out.write and write something out on screen. I get PickleError. I tried creating a new python file and import it, so I dont do it in the MainHandler, I tried creating a new class before using the deferred. Nothing works.

What am I doing wrong?

share|improve this question
1  
create a handler that checks memcache for a particular value. If it's not there, display "not complete". Then when your deferred task completes get it to write that value to memcache. Then refresh your first handler - when it says "complete" your task is complete. You don't use deferred tasks for things that need to write data out to the user, that's the entire point of them (as they will complete execution after the deadline has expired in any case) so you need to find ways to communicate via memcache or urlfetch or similar. – Paul C Nov 26 '12 at 9:54
It seems like it's not the right way to do this. Maybe I should find another approach. – WingYn Nov 26 '12 at 10:34
use backends :) And get used to the idea that some things will run but you can only access their results indirectly - tasks cannot write to the response, they run separate from it and can write to memcache, DB but not the response. – Paul C Nov 26 '12 at 10:36
Ok thanks for the help :) – WingYn Nov 26 '12 at 10:38
no problem, good luck! – Paul C Nov 26 '12 at 10:38

1 Answer

I think you should check out AppEngine Backends:

Backends are special App Engine instances that have no request deadlines, higher memory and CPU limits, and persistent state across requests.

Hoep it helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.