The task-queue tag has no wiki summary.
0
votes
0answers
8 views
How to access the webapp2 instance a task queue task was created from
I have deferred.defer which defers a task send_verification_email with a 5 second countdown.
During that 5 seconds, the user account is created.
the send email task queries to ensure the user ...
0
votes
1answer
21 views
Taskqueue run only 1 task from the queue
Im using google appengine taskqueue to run one of my api in the background. this api takes about 3 seconds to run, but I add it to the queue several time like that:
while len(lst) > 0:
...
0
votes
2answers
20 views
Tasks targeted at dynamic backend fail frequently, silently
I had converted some tasks to run on a dynamic backend.
The tasks are failing silently [no logged error, no retry, nothing] ~20% of the time (min:10%, max:60%, sample:large, long term). Switching ...
1
vote
1answer
43 views
Threading.Monitor - multiple lock objects vs PulseAll - which is more resource efficient?
In a situation with multiple 'request threads' and one dumb 'worker thread', the request threads must queue.
Consider two possibilities:
Each request thread calls Monitor.Wait on its own dedicated ...
0
votes
2answers
41 views
Queues for every thread in thread pool
As far I know, thread pools (java.util.concurrent.Executor class) provide a queue of tasks for all threads in a pool. So I don't really know, which thread will execute my task. But I need to have ...
0
votes
1answer
65 views
How to do OAuth-requiring operations in a GAE Task Queue?
I have a simple Google App Engine app that includes a /update page which updates a YouTube playlist. It looks like this:
class UpdatePage(webapp2.RequestHandler):
@decorator.oauth_required
...
0
votes
1answer
30 views
What is TaskTooLargeError in GAE?
I am surprised to see this error (and not even documented in the quotas)...
Exceeding 100KB, I get this error:
TaskTooLargeError: Task size must be less than 102400
Any ideas on how to handle ...
0
votes
1answer
41 views
HTTP 302 on backend start in appengine
I have an appengine application, using Spring 3.1.2, and working just fine. The Resident/Dynamic instances starts normally using warmup:
2013-05-20 20:32:53.786 /_ah/warmup 200 27205ms 0kb
Now I'm ...
1
vote
1answer
34 views
Handling non-english URL with Spring and App Engine Task Queue
I have this problem where I need to queue a page link with TaskQueue:
Queue queue = QueueFactory.getDefaultQueue();
for (String href : hrefs){
href = baseUrl + href;
...
0
votes
1answer
36 views
MSMQ as a job queue
I am trying to implement job queue with MSMQ to save up some time on me implementing it in SQL. After reading around I realized MSMQ might not offer what I am after. Could you please advice me if my ...
0
votes
1answer
29 views
How many clients are connected to channel
I have a process that is running from a task queue that periodically sends messages through a channel to the client.
Is it possible to check if the client is still connected to see if the task queue ...
0
votes
1answer
50 views
How can I implement a job queue with a greedy-worker-pool in Java EE 6 in a correct way?
I'm looking for a correct way, to do the following in Java EE 6, if possible with vanilla Java EE 6 only.
I want to put a job in a job queue and have a fixed pool of worker objects, which should pull ...
0
votes
1answer
40 views
Can we do anything about a TransientError or does it indicate a server side issue?
We see occasional (~100 per day) TransientError errors when adding tasks to a queue in appengine. Is there anything we can do to handle these or code more defensively to avoid them?
An exampe of the ...
0
votes
0answers
45 views
Using Google App Engine Taskqueue API on Vagrant
I'm helping my company migrate from using individual development environments to standardized environments per project based on Vagrant VMs. We have one piece of code that runs fine on local ...
0
votes
1answer
67 views
404 Instance Unavailable when running a Task Queue
I'm using Java SDK 1.7.5, HRD datastore with the following task queue setup:
<queue>
<name>surveyAssembly</name>
<rate>5/s</rate>
...
0
votes
0answers
18 views
failed request adding to task queue
A lot of my failed requests keep adding to the default task queue on appengine with java.
in a few days the task queue gathers around 100,000 tasks, which keep failing and retrying.
I cannot find ...
1
vote
1answer
102 views
Can I set up the priority of a workqueue?
Can I set up the priority of a workqueue?
I am modifying the SPI kernel module "spidev" so it can communicate faster with my hardware.
The external hardware is a CAN controller with a very small ...
0
votes
2answers
47 views
How can we launch a task from a cron job under a custom domain?
A Cron job runs under a domain, *.appspot.com(server name), because it doesn't belong to any particular (custom) domain.
But tasks in TaskQueue run under its parent servlet's domain, like ...
0
votes
1answer
32 views
How can an App Engine pull queue be simultaneously empty and yet still have an oldest task?
I'm confused as to whether my queues are truly empty. From this view, the queue called "squid-pri-0" says it has 14 tasks in the queue:
but when I click on it, it says it's empty (see below). ...
9
votes
1answer
182 views
Unsatisfactory job push performance with Python RQ
Trying to use python-rq to support the back end to our Web application, but pushing new jobs takes very long - up to 12 seconds.
The performance hit happens when executing the enqueue_call function ...
0
votes
1answer
30 views
How do Appengine Queue Buckets Fill?
According to the documentation:
App Engine refills the bucket with new tokens continuously based on the rate that you specified for the queue.
I am unclear by what is meant by the word ...
0
votes
1answer
172 views
GAE python: Get and post request working without submitting a post request through a form
This is a continuation of this question
What follows is an abbreviated version of the original code. I tried to include the most relevant parts and left out the part of the script used by a cron job ...
1
vote
1answer
159 views
KeyError during python GAE push task queue with cron
I'm very close to finishing up a project that uses push task queues in GAE to send out follow-up emails to users. However, I keep getting a KeyError and don't know why. I been looking for good models ...
1
vote
1answer
83 views
Create a large Zip file on Gae (in blobstore)
I am trying to generate a report in XML format on the google app engine (java version). I process several objects stored in the datastore and create XML chunks representing said objects which are sent ...
2
votes
0answers
99 views
In celery, what would be the purpose of having multiple workers process the same queue?
In the documentation for celeryd-multi, we find this example:
# Advanced example starting 10 workers in the background:
# * Three of the workers processes the images and video queue
# * Two of ...
1
vote
2answers
81 views
Is there a difference between event loop and task queue in browsers?
I am a little confused about some terms in the answer of this question: What is the event precedence in JavaScript?
Is there a difference between event loop and task queue and how big are can these ...
1
vote
0answers
165 views
Queue asynchronous task in Play! - correct way
I have a little Play! application(2.1, scala) which acts as a RESTful front-end for a Java library. This web app queues tasks for background processing using:
...
1
vote
1answer
56 views
What mght be wrong with this queue.xml
I'm working on an appengine project in which I created a Task Queue "refresh" as defined below.
<?xml version="1.0" encoding="UTF-8"?>
<queue-entries>
<queue>
...
1
vote
2answers
48 views
Where is the huey consumer configuration?
I'm trying to get running the Huey task queue for python (it's a Celery alternative) and I'm stuck with starting the consumer with main.Configuration (as it's written in the tutorial). I know the ...
2
votes
0answers
161 views
Android - DownloadManager - Clear old downloads in queue
I'm building an app which needs to know for concurrency reasons if all downloads are finished. A certain function is only allowed to start when all my downloads are finished.
I managed to write a ...
0
votes
2answers
114 views
How can I make resque worker process other jobs while current job is sleeping?
Each task I have work in a short bursts, then sleep for about an hour and then work again and so on until the job is done. Some jobs may take about 10 hours to complete and there is nothing I can do ...
2
votes
1answer
74 views
When using celery and rabbitmq, is it possible for the queue to get so large that everything locks up?
I am using celery and rabbitmq to do a chain that looks something like this:
fetch -> parse -> write pages
The write pages part issues it's own set of asynchronous tasks to write each ...
1
vote
2answers
240 views
In Celery Task Queue, is running tasks in a group any different than multiple asyncs in a loop?
Let's say I have a very simple task like this:
@celery.task(ignore_result=True)
def print_page(page):
with open('path/to/page','w') as f:
f.write(page)
(Please ignore the potential race ...
0
votes
1answer
93 views
how to schedule ge task queue to run only once
Does anyone know how to schedule a Task queue in python for GAE, such that the task runs only once? I thought about using a cron, but a google search didn't turn up any configuration for running only ...
0
votes
1answer
92 views
Getting a pull task queue to work with cron
I'm new to python and GAE and I've been trying to learn how to work with tasks queues, cron, and datastore for my own project through examples but haven't had much luck at all. I trying to modify the ...
0
votes
1answer
162 views
PHP Gearman Duplicate tasks
I got:
Debian 6
nginx 1.2.6
PHP 5.3.20-1~dotdeb.0 (fpm-fcgi) (built: Dec 24 2012 11:53:16)
gearmand 1.1.4
pecl gearman ext 1.1.1
And I got two scripts (Probably I copied them from php.). Client:
...
0
votes
0answers
96 views
Transactional Task Enqueueing vs. task queue vs. deferred?
I'm a newbie to python and GAE and haven't been able to find a clear explanation or example of all these three options.
I found a threading example here ...
2
votes
0answers
56 views
App Engine tasks that target backend get 503 even if backend is running
A lot of tasks are failing to execute because they get 503 from the target backend. This is very strange because most tasks execute but it seems that if it got 503 once it will always be getting 503.
...
0
votes
1answer
113 views
dynamically load-balanced task queue
Set up
Front-end machine receives web requests and puts 3 different kinds of tasks into Gearman server.
3 worker machines registered with that gearman server, each can perform any of those tasks.
...
0
votes
4answers
98 views
Find minimum queue size among threads
I am trying to implement a new scheduling technique with Multithreads. Each Thread has it own private local queue. The idea is, each time the task is created from the program thread, it should search ...
0
votes
1answer
62 views
GAE tasks scheduled for backend execution returning 405 error
I'm having trouble understanding why frontend tasks execute correctly but backend tasks are returning 405 error.
The following code:
queue.add(withUrl(url).taskName(taskName).method(Method.GET));
...
1
vote
0answers
121 views
how to progressively update html during several ajax steps especially during file upload
Long story short
Got javascript code that does 5 ajax steps.
The 2nd and 3rd steps involve file upload. Got a progress bar.
Not sure how to update the progress bar progressively during the 5 ...
0
votes
3answers
102 views
Taskqueue callbacks in Django
I am implementing a google app engine web service that crops very large images. However, cropping can take well over 30 seconds which is (for some reason) a real problem for app engine. To avoid this ...
0
votes
0answers
67 views
local queue per thread without global queue
I am willing to know how a Local queue per thread works. Will the scheduler already allocates these tasks should be allocated to specific local queues of threads (or) randomnly the tasks are queued to ...
0
votes
2answers
165 views
Scheduling tasks in multithreads
I am trying to schedule tasks in multi threaded systems. my idea is to have a local queue per thread, each thread will fetch the job from its local queue. But when the thread reaches some threshold, ...
0
votes
1answer
171 views
Measuring Task Queue Costs in Google App Engine
I am measuring the cost of requests to GAE by inspecting the x-appengine-estimated-cpm-us-dollars header. This works great and in combination with x-appengine-resource-usage and
x-traceurl I can even ...
2
votes
2answers
117 views
What is the best bucket size for a task queue filled with many deferred tasks in Google App Engine?
My Google App Engine application is adding a large number of deferred tasks to a task queue. The tasks are scheduled to run every x seconds. If I understand the bucket-size property b correctly, a ...
0
votes
0answers
71 views
module import error for deferred tasks in app engine
I'm creating task using deferred.defer. The tasks fail with the following error.
Permanent failure attempting to execute task
Traceback (most recent call last):
File ...
1
vote
2answers
2k views
how to use q.js promises to work with multiple asynchronous operations
Note: This question is also cross-posted in Q.js mailing list over here.
i had a situation with multiple asynchronous operations and the answer I accepted pointed out that using Promises using a ...
0
votes
0answers
44 views
Constantly Read from file while data is in file while also inconsistently writing to same file at random intervals
I am really unsure how to word this so here it goes.
I need an example of how to constantly read and delete the first line of data in a file, then if file is empty set a file watcher for modify.
...

