Tagged Questions
The task-queue tag has no wiki summary.
11
votes
1answer
348 views
How to implement a light pub-sub service on App Engine?
During his Google I/O 2009 "Offline processing on App Engine: A look ahead" presentation (video, slides), Brett Slatkin presents the Task Queue service.
He states that
Pub-sub systems maximize ...
10
votes
5answers
684 views
Parallel processing in PHP - How do you do it?
I am currently trying to implement a job queue in php. The queue will then be processed as a batch job and should be able to process some jobs in parallel.
I already did some research and found ...
10
votes
1answer
1k views
What is TombstonedTaskError from App Engine's Task Queue?
What does the TombstonedTaskError mean? It is being raised while trying to add a task to the queue, from a cron-job:
Traceback (most recent call last):
File ...
6
votes
3answers
189 views
'Queueing' tutorials and documentation?
I'm looking for articles and references that give an overview of 'queueing' (I'm probably not even using the right term here). I'm hoping for an introductory styled guide through a world of Redis, ...
6
votes
1answer
278 views
Google App Engine (Java) TaskQueue API: how to query number of running/pending tasks?
Is it possible to programmatically query the Task Queue API to see how many tasks are currently executing/pending?
I don't see any way to do this in the API, and so I resorted to creating objects in ...
6
votes
4answers
418 views
Is there a sophisticated Java WorkQueue API?
I am looking for a WorkQueue API offering the following features:
java.util.Queue compatible
offers (optional) Set-semantic
single- and batch-processing
concurrency (of course)
scheduling
different ...
5
votes
3answers
271 views
GAE: unit testing taskqueue with testbed
I'm using testbed to unit test my google app engine app, and my app uses a taskqueue.
When I submit a task to a taskqueue during a unit test, it appears that the task is in the queue, but the task ...
4
votes
1answer
126 views
Queue file operations for later when file is locked
I am trying to implement file based autoincrement identity value (at int value stored in TXT file) and I am trying to come up with the best way to handle concurrency issues. This identity will be used ...
4
votes
4answers
848 views
Google App Engine Task Queues - nasty failure
I'm developing an app for GAE and trying to use Task Queues. At present, I just have the thing running on my Windows box through GAE App Launcher but whenever I try to enqueue anything, the ...
4
votes
3answers
197 views
Getting the Tasks in a Google App Engine TaskQueue
I know you can view the currently queued and running tasks in the Dashboard or development server console. However, is there any way to get that list programmatically? The docs only describe how to ...
4
votes
1answer
830 views
django-celery without an ampq server (rabbitmq)
I am using celery for distributed task processing. I wanted to deploy my work on a web-host, just to show the working of my project.
So how can i get djcelery to use a database (sqlalchemy) as backend ...
4
votes
1answer
534 views
What is meant by 'bucket-size' of queue in the google app engine?
Google app engine task queues have configuration as (example)
<queue>
<name>mail-queue</name>
<rate>5/m</rate>
<bucket-size>10</bucket-size>
...
4
votes
1answer
847 views
asynchronous processing with PHP - one worker per job
Consider a PHP web application whose purpose is to accept user requests to start generic asynchronous jobs, and then create a worker process/thread to run the job. The jobs are not particularly CPU or ...
4
votes
1answer
330 views
Passing multiple parameter in app-engine Task Queue (JAVA)
Is there a way to pass multiple parameters in a Queue in google-app-engine?
I use the code below
Queue queue = QueueFactory.getQueue("sms-queue");
...
4
votes
1answer
644 views
Custom Task Queue in App Engine?
I have created a new task queue and defined it in queue.yaml
I am not sure how to start adding tasks to this queue?
with the default queue it is simple taskqueue.add(...)
how do we do it for a ...
3
votes
0answers
90 views
Google App Engine Java, Pull Queues, and OAuth
I am trying to access a pull queue on my GAE application from what will eventually be an automated process written in Java. From my reading and research, the secure way to do this is to use OAuth. I ...
3
votes
3answers
97 views
Using more than one thread in Java
I'm new to concurrent programing and have been working on code which has a queue of items to be processed, this is passed to some worker threads, the number specified by the user. At the moment I've ...
3
votes
1answer
69 views
How to run a script for more than 10 minutes in Google App Engine
I know that Task Queues can only run for 10 minutes, and I have a script that cannot finish in that time limit. Is there a way to exceed this time constraint? I looked into backends, as I know those ...
3
votes
2answers
135 views
Run function when task queue is empty on appengine
I have a cron job everyday to make a call to an API and fetch some data. For each row of the data I kick off a task queue to process the data (which involves looking up data via further APIs). Once ...
3
votes
3answers
182 views
Google App Engine: task_retry_limit doesn't work?
I have a Python GAE app.
I want my tasks to stop running or just retry once if they fail. Right now, they run forever despite what my yaml file is telling them!
Here is a queue.yaml entry:
- name: ...
3
votes
4answers
341 views
Google App Engine Task Queue
I want to run 50 tasks. All these tasks execute the same piece of code. Only difference will be the data. Which will be completed faster ?
a. Queuing up 50 tasks in a queue
b. Queuing up 5 tasks ...
3
votes
3answers
562 views
Using Google App Engine Queues service with Django
I am trying to use Google App Engine queues API, I am having problems on testing this. It seems that in some part of the process the CSRF it's not working.
as I understand the api executes the task ...
3
votes
1answer
180 views
Why Google App Engine Tasks can spuriously be executed more than once?
Why Google App Engine Tasks can be executed more than once?
According do Brett Slatkin talk from Google I/O 2009, it is possible for a task to spuriously run twice even without server failures!
This ...
3
votes
2answers
427 views
MapReduce on more than one datastore kind in Google App Engine
I just watched Batch data processing with App Engine session of Google I/O 2010, read some parts of MapReduce article from Google Research and now I am thinking to use MapReduce on Google App Engine ...
3
votes
2answers
235 views
Google App Engine: bucket_size parameter on Task Queues
Google documentation on Bucket_size parameter gives just a brief definition, a Wikipedia link and an example:
bucket_size
Limits the burstiness of the queue's processing,
i.e. a higher ...
3
votes
2answers
423 views
Google App Engine: How to use the task queue for this processing?
I'm using the Python GAE SDK.
I have some processing that needs to be done on 6000+ instances of MyKind. It is too slow to be done in a single request, so I'm using the task queue. If I make a ...
3
votes
1answer
146 views
special characters in google app-engine task queue task names
Are dashes(-) or any other special characters allowed in task names in task queues?
2
votes
2answers
70 views
Is there distributed task queue in Python that enables me to kill hanging tasks that are not willing to cooperate
Basically I have a lot of tasks (in batches of about 1000) and execution times of these tasks can vary widely (from less than second to 10 minutes). I know that if a task is executing more than a ...
2
votes
2answers
83 views
Should I use the BackgroundWorker class to handle a queue of tasks if I have no UI?
I'm using .Net 3.5 (C#) and I have a queue of tasks that I want to run one after the other, I'm doing that by using the BackgroundWorker class (with it's DoWork, RunWorkerCompleted and IsBusy methodes ...
2
votes
1answer
73 views
Best way to update running code of a .NET server without disconnecting clients
What is the best technology or technique to create server-side code in .NET that that can be changed while it is running?
You get this functionality for free when you use web services because of the ...
2
votes
1answer
71 views
Why do all items in my task queue get assigned the same value?
I have been trying to do due-diligence before asking this question, but I can't seem to find what I'm looking for. I believe that I'm running up against producer-consumer problem. I'm writing a ...
2
votes
0answers
52 views
Use a Standard Serial Dispatch Queues in C++?
I want to write a toy app that will start with 1 instance and grow until it hits 5fps. The instance have a run() method that should take <1ms to run. So instead of actual threads i'd like to use a ...
2
votes
2answers
152 views
Checking status of Task Queue in Google App Engine
I'm putting several tasks into a task queue and would like to know when the specific tasks are done. I haven't found anything in the API about call backs, or checking the status of a task, so I ...
2
votes
1answer
179 views
Properly Securing GAE Task Queue URLs (without using app.yaml)
I want to secure my Task Queue URLs against malicious access.
In the views that the Task Queue requests I've got:
if not users.is_current_user_admin():
return HttpResponse(status=403)
But my ...
2
votes
1answer
348 views
Web Application Architecture - Job/Task Queue needed?
I am currently designing a web application that will allow users to schedule tasks which will be executed against an HTTP API (on behalf of them). The tasks can be recurring and the minimal time ...
2
votes
3answers
116 views
Queueing framework solution
I would like to address such a issue: I have a HTML form (like register form) which submission sends email. Now I send it as a part of page request. Obvious drawbacks:
makes request longer
sometimes ...
2
votes
2answers
661 views
How to use Google App Engine's (Java) Task Queues to Persist a lot of data / rows in one Entity
I'm trying to persist roughly 28,000 "rows" in a single entity e.g. EMPLOYEE
Basically, my goal is to avoid being terminated / timing out by using PUTs that exceed 30 seconds - which is what might ...
2
votes
1answer
190 views
SQS/task-queue job retry count strategy?
I'm implementing a task queue with Amazon SQS ( but i guess the question applies to any task-queue ) , where the workers are expected to take different action depending on how many times the job has ...
2
votes
2answers
290 views
Ruby/Rails synchronous job manager
hi
i'm going to set up a rails-website where, after some initial user input, some heavy calculations are done (via c-extension to ruby, will use multithreading). as these calculations are going to ...
2
votes
1answer
330 views
Google App Engine Task Queue
I have a task queue with several tasks. If I delete a particular task from Admin Console, it disappears from the task queue but GAE doesnt terminate it. The task is still being executed in the ...
2
votes
2answers
135 views
how to bring a background task to foreground in google app engine?
Currently I have tasks running in background. After the tasks are done executing I need to show output. How do I do this in Google App Engine?
Once the tasks are done the only thing I can do is ...
2
votes
1answer
380 views
Is it possible to use celery for synchronous tasks?
Nearly synchronous works, too; basically, I want to delegate the data access and processing behind a web app to a task queue for most jobs. What's the fastest latency that I can consider reasonable ...
2
votes
1answer
79 views
Adding tasks on taskqueue
I have task queue that adds task to second queue, while second queue is paused. Is it possible to add task to task-queue which is paused?
2
votes
2answers
65 views
how can I have access to a task list on GAE?
I'm planning on using GAE's TaskQueue API to refresh my cache of HTML pages, which I save in the Datastore (and memcache, but Datastore is more reliable).
Once a week, i add/edit some data, and need ...
2
votes
3answers
81 views
Which approach to take with this multithreading problem?
Short question:
I would like to spawn a single background thread that would process work items submitted to a queue (like a threadpool with one thread). Some of the work items are capable of ...
2
votes
1answer
54 views
create a task to run after a time period in app engine?
I need to run 2 tasks around 2 minutes apart but need to insert them both at the same time into the queue. how do i do this?
taskqueue.add('/task1', { 'args' : 'a' })
taskqueue.add('/task2', { ...
2
votes
2answers
80 views
Does bigtable need locking?
I am using task queue for certain data updation in GAE.
My queue.xml file look like below
<queue>
<name>data-processing</name>
<rate>20/s</rate>
...
2
votes
2answers
259 views
Any other kinds of “Task Queue” APIs?
I'm curious if it's common practice outside of the GAE platform to be able to defer tasks to background workers via webhooks.
I find it particularly useful to speed up the front-end of webapps, by ...
2
votes
1answer
242 views
Google App Engine - About how much quota does a single datastore put use?
The latency for a datastore put is about 150ms - http://code.google.com/status/appengine/detail/datastore/2010/03/11#ae-trust-detail-datastore-put-latency.
About how much CPUTime is used by a single ...
2
votes
1answer
412 views
GAE Task Queue oddness
I have been testing the taskqueue with mixed success. Currently I am
using the default queue, in default settings etc etc....
I have a test URL setup which inserts about 8 tasks into the queue.
With ...