I have been trying to use the Bulk Task add feature added in 1.3.2,
and seem to be running into issues. I have tried adding 25 - 100 tasks
in one go, and sometime the request goes through and sometime it
fails. I didnt try to catch the exception since the feature was
impacting my app and had to take it out. But it would be great if
someone from Google can look into it. Following is my code:

time = 3600
tasks = []
i = 0
while i < 25:
                    name = object_key'_'+str(i)
                    name = name.replace('_', '-')
                    params = {'object_key': object_key}
                    task = taskqueue.Task(url='/url_handler/',
params=params, countdown=time*i, name=name)
                    tasks.append(task)
queue = taskqueue.Queue('default')
queue.add(tasks)

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to