Questions tagged [beanstalkd]

Beanstalkd is a simple, fast work queue.

Beanstalkd is a simple, fast work queue.

Its interface is generic, but was originally designed for reducing the latency of page views in high-volume web applications by running time-consuming tasks asynchronously.

401 questions
0
votes
2 answers

Stale connection with Pheanstalk

I'm using beanstalkd to offload some work to other machines. The setup is a bit unusual, the server is on the internet (public ip) but the consumers are behind adsl lines on some peoples homes. So there is a linux server as client going out through…
token47
  • 1
  • 3
0
votes
1 answer

Paperclip less memory in background job without activerecord

I use resque to process pictures and upload to s3 with paperclip in background. But every worker will load whole rails instance about 120MB~150MB. I found this tutorial could deal with background job without loading…
chiayi
  • 55
  • 2
  • 6
0
votes
0 answers

how many MQ channels/queues to open

For the sake of simplicity, assume I have a chat like system - it's 1 to 1 communication (can be between 1 sender and 1 receiver). Senders and receivers. I want to use an MQ flavour (probably beanstalk) to send messages from one user to another. The…
Adrian
  • 5,603
  • 8
  • 53
  • 85
0
votes
1 answer

I get "cannot assign requested address" error

I am trying to run beanstalkd if i use 127.0.0.1 with port no 11300 it works or for the matter any other port beanstalkd -d -l 127.0.0.1 -p 11300 But if use external IP it doesn't work. beanstalkd -d -l 107.0.1.5 -p 11300 Should i enable the port…
aWebDeveloper
  • 36,687
  • 39
  • 170
  • 242
0
votes
1 answer

Gem stalker on production

I'm using Stalker to interact with beanstalkd on a production server. My jobs file looks like this: gem 'stalker' # config/jobs.rb with Rails RAILS_ENV = ENV["RAILS_ENV"] || "development" require File.expand_path("../environment", __FILE__) job…
Guilherme
  • 551
  • 4
  • 16
-1
votes
0 answers

How to setup a Code Judging Microservice for a Competitve Programming Website

I'm currently working on a competitive programming website using Node.js for the backend. I've set up a Bull task queue to manage code submissions, and things are going well. However, its currently a monolith and I wanted to learn Go so I have…
Saad Ahmed
  • 54
  • 1
  • 7
-1
votes
1 answer

Symfony 4 autowiring not working properly

Here is the context: Installed beanstalk bundle with composer "composer require leezy/pheanstalk-bundle" I'm trying to using inside a command but i get this error Cannot autowire service "App\Command\Worker\ProcessParserCommand": argument…
-1
votes
1 answer

beanstalkd c client library

We are going to implement a fairly complex new service in an asynchronous way, introducing asynchronous processing as well. For this, we have selected beanstalkd message queue service, as it fits best for our needs. The problem is that beanstalk…
asdmin
  • 173
  • 1
  • 7
-1
votes
1 answer

Beanstalkd or other job/message queue : Send a file?

We were looking for a job/message queue technology. After comparing the main ones (RabbitMQ, ActiveMQ, Apollo, ZeroMQ..), we chose Beanstalkd because apparently, compared to RabbitMQ, "It gives 80% the functionality with 20% the weight and…
Bonswouar
  • 1,521
  • 2
  • 17
  • 37
-1
votes
3 answers

Adding authentication to beanstalkd from Python (or any UNIX) client

So what I like about beanstalkd: small, lightweight, has priorities for messages, has a great set of clients, easy to use. What I dislike about beanstalkd: the lack of authentication menaing if you can connect to the port you can insert messages…
user31056
-2
votes
1 answer

Is converting byte slice to context possible?

I have an application that consumes messages from beanstalkd. You cannot pass context to beanstalkd and you can only use byte slice to send messages. So I converted my context to byte slice. To propagate from passed context it needs to be converted…
oldBear
  • 157
  • 2
  • 10
1 2 3
26
27