Tagged Questions

In software, the term worker usually describes a long-running process being executed in a separate thread from an application's main thread of execution.

learn more… | top users | synonyms

9
votes
2answers
184 views

Java Performance Processes vs Threads

I am implementing a worker pool in Java. This is essentially a whole load of objects which will pick up chunks of data, process the data and then store the result. Because of IO latency there will ...
6
votes
1answer
200 views

is Magento thread-safe?

Is anyone using Magento with Apache worker MPM? I've read conflicting reports of stability and security using worker instead of prefork, but have also read that worker is much faster than prefork.
5
votes
3answers
133 views

How to check in C++ if the system is active?

I'm writing code that need to run only when there is no human activity on the PC, like when the screensaver is running. Any suggestions on how to do this in c++ under windows? @talnicolas, simply to ...
5
votes
1answer
134 views

Guide to using a worker server with a php application

I've built a PHP app, and I've read that it's a best-practice to use a 'worker' + queue server when calling api's or performing operations that are time consuming. A quick search for a tutorial has ...
5
votes
4answers
796 views

What happens to other users if the .NET worker process crashes?

My knowledge of how processes are handled by the ASP.Net worker process is woefully inadequate. I'm hoping some of the experts out there can fill me in. If I crash the worker process with a ...
4
votes
2answers
163 views

How can I create an “event-driven” background thread in Java?

I like the simplicity of invokeLater() for sending units of work to the AWT EDT. It would be nice to have a similar mechanism for sending work requests to a background thread (such as SwingWorker) ...
4
votes
6answers
10k views

C# .NET 3.5 : How to invoke an event handler and wait for it to complete

I have a class containing a worker thread which receives data from a queue in a loop. Another part of the app sinks an event from this class, which the class raises for each queue item. These events ...
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 ...
2
votes
1answer
39 views

How to create and manage worker processes in NodeJS?

For example, say the user requests some audio file to be processed, then of course nodejs can't do the intense processing, so it should offload it to a worker process. These workers probably need to ...
2
votes
2answers
67 views

Starting multiple upstart instances automatically

We use PHP gearman workers to run various tasks in parallel. Everything works just fine, and I have silly little shell script to spin them up when I want them. Being a programmer (and therefore ...
2
votes
1answer
47 views

Synchronizing multiple threads in .net 4

Background: I'm working on an application that already has a thread system designed. It's far from optimal, but I can't rework it at this time. It does not use any of the newer threading constructs ...
2
votes
1answer
57 views

Sometimes Resque “unloads” the Rails environment for no apparent reason

I have a simple stack with Ruby on Rails and resque. I enqueue jobs in a normal way and I have a pool of workers performing. Nothing crazy. My problem is that if I leave the workers running for long ...
2
votes
2answers
70 views

Worker pools and multi-tenant queues with RabbitMQ

I work on a web application that is a multi-tenant cloud based application (lots of clients, each with their own separate "environment", but all on shared sets of hardware) and we're introducing the ...
2
votes
1answer
117 views

JQuery.Hive on Android (Worker Threads)

i am currently writing an app that shows the menu plan of the cafeteria at our university. To make it platform-independent i use Phonegap; The XML-Parsing ist done with the help of JQuery, the layout ...
2
votes
2answers
100 views

Implementing worker service in .NET

I need to add a "worker process" to my current solution with the following requirements: must run continuously (or at specific intervals) auto start get data from several sources (SQL database, WCF ...
2
votes
2answers
1k views

HTML5 Web Worker does not work on Mobile Safari iPad 4.2

I cannot make an instance of Worker on Mobile Safari on an iPad with OS 4.2x This is a very common and well-known HTML5 Web Worker demo: http://html5demos.com/worker When I try to run I get the ...
2
votes
3answers
1k views

How to update GUI thread/class from worker thread/class?

First question here so hello everyone. The requirement I'm working on is a small test application that communicates with an external device over a serial port. The communication can take a long ...
2
votes
2answers
123 views

C# - class field is null when accessed from a worker thread but not main thread

Not sure what I'm doing wrong: class MyClass { private EventInfo eventInfo; public void OnGenerateEvent(object sender, EventArgs e) { // Called from *main* thread // ...
2
votes
4answers
3k views

C# cancelling DoWork of background worker

C# 2008 I am using the code below to login to a softphone. However, the login progess is a long process as there are many things that have to be initialized and checks to be made, I have only put a ...
2
votes
8answers
1k views

Best methodology for developing c# long running processor apps

I have several different c# worker applications that run various continuous tasks: sending emails from queue, importing new orders from website database to orders database, making database backups and ...
1
vote
1answer
92 views

Pythons subprocess with WSGI + Apache mpm-worker: IOError 4

I have a strange problem here which solution I can't figure out by searching the net :/ After switching Apache from mpm-prefork to mpm-worker, using subprocess in my (Django) Python WSGI application ...
1
vote
1answer
55 views

Python Threading With Concurrency

I wrote the following code while trying to learn threading in python. import threading import time def printWorker(x,y): t = time.time() while time.time() - t < 10: ...
1
vote
1answer
46 views

Gearman with PHP/Net_Gearman, workers that perform jobs that are invoked from other workers become unresponsive

I'm using gearman to distribute long running tasks across multiple worker servers. For one of my worker tasks, I attempt to invoke another background job. The background job is performed by another ...
1
vote
1answer
82 views

Unclear behaviour in simple MPI send/receive program

I've been having a bug in my code for some time and could not figure out yet how to solve it. What I'm trying to achieve is easy enough: every worker-node (i.e. node with rank!=0) gets a row ...
1
vote
2answers
134 views

Showing a please wait animation while UI is populated

I'm writing a WinForms window in C# which displays about 12 ListBox and 6 ComboBox controls each with a few hundred to a few thousand items. It takes a little while to populate these. Not a long ...
1
vote
1answer
158 views

Azure: web + worker role cost

I have to run a web crawler in background using Azure. According to what I understood I have to setup a worker role configured with the background task and I have to setup a web role to show the web ...
1
vote
3answers
444 views

Waiting for threads to stop in Windows Services

I'm working on my first Windows Service project that involves some basic threading/parallelism. It's been pretty intense so far but I'm slowly beginning to understand threading (I guess we'll see ...
1
vote
1answer
294 views

How can I make each unicorn worker of my Rails application writting in a different log file?

How can I make each unicorn worker of my Rails application writting in a different log file ? The why : problem of mixed log files... In its default configuration, Rails will write its log messages ...
1
vote
1answer
144 views

background thread in Swing

I'm at a loss, a simple use of swing worker. I added a few simple code in doInBackground(), but it does not execute, I don`t receive exceptions. When I use debuger, He is working as it should. )) May ...
1
vote
3answers
331 views

Worker design pattern

What is "worker" design pattern?
1
vote
1answer
203 views

The applicationCache is 'undefined' in a shared webworker (HTML5)

I'm trying to access the offline application cache of a shared webworker (HTML5) with no luck. I've been banging my head against this problem for many hours, so I must be missing something... Any help ...
1
vote
1answer
332 views

Simplest code snippet to add a tiny REST endpoint to an Azure Worker Role

I would like to be able of adding a tiny REST endpoint to an Azure Worker Role, just dumping some non critical monitoring meta-data. I can think of many complicated ways of doing that, but I feel ...
1
vote
1answer
217 views

Killing all thread workers when one thread found the answer (ruby)

Here is a sample program: def worker(from, to) puts "#{from}..#{to}" for i in from..to do if i == 42 puts "kill the rest of the threads" break; end puts i sleep 1 ...
1
vote
2answers
210 views

how to include javascript files in Google Gears Worker (no DOM access)

how does one include other .js files in the .js of a Worker. Every "include" solution for Javascript that I've found does it by loading into a tag, which is not an option for Workers since they don't ...
0
votes
0answers
18 views

Handling of Arguments by Redis

How are the arguments passed to worker class in resque-worker handled by Redis? What possible measures/tricks can be taken to optimize/speed up Redis.
0
votes
1answer
15 views

Passing Object as argument in Resque-Worker

Is there a way to pass object as arguments value in Resque-workers. I want to do something like this Resque.enqueue(SomeWorker, obj) instead of Resque.enqueue(SomeWorker, id) my object is of ...
0
votes
1answer
22 views

What is an acceptable way to open local files from a worker thread in a Firefox extension?

I'm trying to move a fairly slow function off of the main thread, but the code I'm relocating depends on a module I've written using the Components object. My understanding is that Components is ...
0
votes
1answer
39 views

iron_worker: uninitialized constant error with active record class in Rails

I am testing iron worker (used to be simple worker), which fails to recognize an active record class name in my Rails app on Heroku. You can find 'AdImpression' below, which is class name. docs on ...
0
votes
2answers
66 views

Starting a worker thread when activity is visible

Here is my scheme: User is on a home screen, presses a button to go to activity A. Activity A is shown, and a progressbar as well as a textview (inside a viewswitcher) saying "Please wait" is shown. ...
0
votes
1answer
67 views

Advice: Python Framework Server/Worker Queue management (not Website)

I am looking for some advice/opinions of which Python Framework to use in an implementation of multiple 'Worker' PCs co-ordinated from a central Queue Manager. For completeness, the 'Worker' PCs will ...
0
votes
1answer
86 views

Rails Resque undefined method error in external module

I'm having trouble calling methods from an included module inside a resque worker. In the example below, I keep getting undefined method errrors when I attempt to call the say method inside the ...
0
votes
1answer
151 views

Apache2 Optimization Tips for High Volume of Lightweight connections

We have a very lightweight tracking script written in PHP, running on Apache/2.2.14 (Ubuntu). The script will receive a high number of concurrent connections, but each connection will be fast. ...
0
votes
1answer
62 views

Javascript weird error when trying to load a worker on localhost

Trying to run this in a default XAMPP installation under Windows XP using Firefox 7.0.1. Those codes: var worker = new Worker("c:/xampp/htdocs/js/worker.js"); var worker = new ...
0
votes
1answer
15 views

Net_Gearman access job_id from within worker function?

I'm trying to access the job_id of the current job from within my worker function so I can save the result to memcached under a key that equals the current worker function. Is there any way to ...
0
votes
1answer
82 views

running CodeIgniter script via CLI - CI super object methods missing

I have a CodeIgniter project, and I want to invoke one of my controller methods via CLI, but normal properties & methods that are attached to the CI superobject seem to be missing? For example, ...
0
votes
0answers
59 views

Using Net_Gearman with a codeigniter project

I've built an application using Codeigniter and now I want to use the Gearman job queuing server to background some long-running tasks. I'm using the Net_Gearman PEAR library (less desirable that ...
0
votes
1answer
49 views

Use gearman from PHP application without installing PHP extension

I'm interested in using a Gearman server to distribute long-running jobs in my PHP application. Unfortunately I don't have direct access to my application servers and I can't install any PECL ...
0
votes
1answer
29 views

Replicating IIS multiple worker processes in Visual Studio

We have a website which is set up to work over multiple worker processes in IIS. On loading a certain page we're getting the classic "Object not set to an instance of an object" error. I want to try ...
0
votes
1answer
76 views

What's best practice for HA gearman job servers

From gearman's main page, they mention running with multiple job servers so if a job server dies, the clients can pick up a new job server. Given the statement and diagram below, it seems that the job ...
0
votes
1answer
121 views

System.Timers.Timer wandering in Azure Worker Role

I have an Azure Worker Role with n (currently n = 2) instances. Each of these instances has a System.Timers.Timer on its main thread that executes every 20 seconds, spawning some work processes. When ...

1 2