Tagged Questions

2
votes
0answers
328 views

Starling/Workling Issue on Rails

I'm trying to get starling and workling working on rails 3, and am having some issues. I have starling-starling installed in the gemfile, and installed workling via: rails plugin install ...
2
votes
2answers
812 views

Job queue alternatives to workling for use with rails 3?

Workling appears to be incompatible with rails 3. What alternatives are there for dealing with work queues in a rails 3 application?
2
votes
1answer
365 views

Workling processes multiplying uncontrolably

We have a rails app running on passenger and we background process some tasks using a combination of RabbitMQ and Workling. The workling's worker process is started using the script/workling_client ...
2
votes
1answer
1k views

Problems with starling/workling in production mode

I have a rails app that has asynchronous processing, and I'm having trouble getting it to work in production mode. i start starling from the root of the application like so: starling -d -P ...
2
votes
2answers
511 views

Starling: How to speed up the queue

I've launched a website today which makes heavy use of Starling and Workling to handle the background task queue. Traffic has been heavy and although my server CPU/memory has not been under too much ...
1
vote
2answers
142 views

In rails Processing 45k of database records using workling without affecting server performance

In my rails app, I use a worker process to scan 45k database records once in 6 hours and send out mails if certain condition is met. This causes the server CPU/Load to spike when the worker is ...
1
vote
1answer
202 views

workling & RabbitMQ

Hi For my project I would like to run some jobs in background using workling (publish some data to the queue) but I'm getting errors while trying to configure my app (unitialized constant MemCache) ...
1
vote
1answer
148 views

Rails backgroud job processing

I am using starling as a queue server in my rails application. so each time i want to call worker method, I have to start starling and workling client from console. Is there a way where as soon as ...
1
vote
1answer
153 views

How can I synchronize multiple Workling workers?

I have the following situation: Three tasks: A,B,C (Implemented as Workling workers) Two user events (Calls of a controller method) The tasks are triggered this way: The first user event ...
1
vote
2answers
808 views

Phusion Passenger + Workling + RabbitMQ

I am trying to deploy a RoR app that does some asynchronous task. I use workling for that and the message queue is RabbitMQ. This combination worked flawlessly with Starling but we decided to change ...
0
votes
1answer
84 views

workling doesnt work when the database is down in my rails app

i want to schedule my worker using a cron job to check for database connection periodically (say like 5 mins) and update a memcache key accordingly. so in my app if i find the memcache variable to be ...
0
votes
1answer
93 views

workling client stops in a few seconds after start

Hi I'm trying to use RabbitMQ instead of Starling I've configured my app and everything seems to be fine but when i run 'script/ workling_client start' it starts to work and ends in a few seconds and ...
0
votes
1answer
103 views

Workling not running tasks in background

I followed the railscast that describes how to get workling running background tasks, but can't get it working. The task runs, but not in the background (it's taking 5 secs before I'm redirected to ...
0
votes
2answers
592 views

Which persistent & lightweight queue messaging for cross domain (> 2) data exchange with rails integration?

I'm looking for the right messaging system for my needs. Can you help me ? For now, there won't be a huge amount of data to process, but I don't want to be limited later ... The machines are not ...
0
votes
1answer
138 views

Workling worker cannot find newly added record

I'm using Starling and Workling to process background tasks in my application, a Swoopo-style auction site. In this case the background task is a notification system that monitors auctions and ...
0
votes
1answer
406 views

Ways to monitor Workling instances in a Rails app

I'm currently using Workling with Starling on a rails app. Although I like Workling, I find it kinda hard to monitor. To make matters worse, I have a couple of Workling instances. Workling is running ...
0
votes
3answers
278 views

Workling logs in production

Anyone now why I can't see logs for workling in workling.output or production.log? In development the logs show up in the development.log. In my environments/production.rb I have the log levl set to ...
0
votes
2answers
963 views

Ruby daemon hangs on rails load

I am having issues getting a workling daemon working correctly. When I run: ruby script/workling_client run the daemon starts to load rails, but hangs indefintely. When I kill the process, the ...
0
votes
1answer
776 views

Cannot start workling_starling_client in rails production environment

I was using god to start and monitor my starling and workling daemons. Works awesome on development machine but "workling_starling_client" refuses to start on my production machine.