Alternatives to Resque logo

Alternatives to Resque

Sidekiq, delayed_job, Celery, Beanstalkd, and RabbitMQ are the most popular alternatives and competitors to Resque.
117
124
+ 1
9

What is Resque and what are its top alternatives?

Resque is a popular job queueing system for Ruby applications, built on top of Redis. It provides a simple UI for managing jobs, prioritizing them, and monitoring their status. Resque is known for its reliability, scalability, and performance, making it a go-to choice for background processing in many Ruby projects. However, one of its limitations is that it requires a separate Redis instance to function, adding complexity to the setup process.

  1. Sidekiq: Sidekiq is a popular alternative to Resque that is known for its high performance and low memory usage. It utilizes threads instead of separate processes for better efficiency. Pros: Efficient memory usage, support for multi-threading. Cons: Paid options for some advanced features.
  2. Delayed::Job: Delayed::Job is a simple, database-backed job queue that is easy to set up and use. It is a lightweight alternative to Resque with fewer dependencies. Pros: Easy to set up, minimal configuration required. Cons: May not be as efficient for high-traffic applications.
  3. Que: Que is a high-performance job queue for Ruby applications that is also built on top of PostgreSQL. It offers advanced features like job priority and scheduling. Pros: Seamless integration with PostgreSQL, supports job dependencies. Cons: Limited scalability compared to Redis-based solutions.
  4. Sucker Punch: Sucker Punch is a simple, single-threaded background processing library that is suitable for lightweight job queuing needs. Pros: Easy to set up, lightweight solution. Cons: Limited scalability and performance compared to multi-threaded or multi-process alternatives.
  5. Shoryuken: Shoryuken is a concurrent job processor for Amazon SQS that is highly scalable and efficient. It is designed to work well with Rails applications and offers built-in support for handling large volumes of jobs. Pros: Scalable, efficient processing of jobs. Cons: Specific to Amazon SQS, may not be suitable for other queueing systems.
  6. Quebert: Quebert is a versatile job queuing library that supports multiple backends, including Redis and in-memory queues. It offers features like job retry logic and error handling. Pros: Flexible backend support, robust error handling. Cons: May require additional configuration for specific use cases.
  7. Sneakers: Sneakers is a fast and scalable queuing system for Ruby applications that is built on top of RabbitMQ. It is suitable for high-throughput and mission-critical applications. Pros: High performance, built-in support for RabbitMQ. Cons: Requires a RabbitMQ server to function, may add complexity to the setup.
  8. Kue: Kue is a feature-rich job queuing system for Node.js applications that offers a user-friendly UI for managing jobs. It supports priority queues, delayed jobs, and job progress tracking. Pros: User-friendly interface, comprehensive feature set. Cons: Limited to Node.js applications, may not be suitable for Ruby projects.
  9. Brpoplpush: Brpoplpush is a lightweight Redis queueing library for Ruby that is known for its simplicity and low overhead. It provides basic queueing functionality without the need for additional dependencies. Pros: Lightweight, minimal overhead. Cons: Limited features compared to more advanced job queuing systems.
  10. Backburner: Backburner is a flexible and extensible job queuing system for Ruby applications that offers features like batch processing and job lifecycle management. It is suitable for handling complex background processing needs. Pros: Extensible architecture, advanced features. Cons: May require additional setup for specific use cases, may not be as straightforward to use as simpler alternatives.

Top Alternatives to Resque

  • Sidekiq
    Sidekiq

    Sidekiq uses threads to handle many jobs at the same time in the same process. It does not require Rails but will integrate tightly with Rails 3/4 to make background processing dead simple. ...

  • delayed_job
    delayed_job

    Delayed_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background. It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks. ...

  • Celery
    Celery

    Celery is an asynchronous task queue/job queue based on distributed message passing. It is focused on real-time operation, but supports scheduling as well. ...

  • Beanstalkd
    Beanstalkd

    Beanstalks's 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. ...

  • RabbitMQ
    RabbitMQ

    RabbitMQ gives your applications a common platform to send and receive messages, and your messages a safe place to live until received. ...

  • Rake
    Rake

    It is a software task management and build automation tool. It allows the user to specify tasks and describe dependencies as well as to group tasks in a namespace. ...

  • Hangfire
    Hangfire

    It is an open-source framework that helps you to create, process and manage your background jobs, i.e. operations you don't want to put in your request processing pipeline. It supports all kind of background tasks – short-running and long-running, CPU intensive and I/O intensive, one shot and recurrent. ...

  • PHP-FPM
    PHP-FPM

    It is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites. It includes Adaptive process spawning, Advanced process management with graceful stop/start, Emergency restart in case of accidental opcode cache destruction etc. ...

Resque alternatives & related posts

Sidekiq logo

Sidekiq

1.1K
629
408
Simple, efficient background processing for Ruby
1.1K
629
+ 1
408
PROS OF SIDEKIQ
  • 124
    Simple
  • 99
    Efficient background processing
  • 60
    Scalability
  • 37
    Better then resque
  • 26
    Great documentation
  • 15
    Admin tool
  • 14
    Great community
  • 8
    Integrates with redis automatically, with zero config
  • 7
    Stupidly simple to integrate and run on Rails/Heroku
  • 7
    Great support
  • 3
    Ruby
  • 3
    Freeium
  • 2
    Pro version
  • 1
    Dashboard w/live polling
  • 1
    Great ecosystem of addons
  • 1
    Fast
CONS OF SIDEKIQ
    Be the first to leave a con

    related Sidekiq posts

    Cyril Duchon-Doris

    We decided to use AWS Lambda for several serverless tasks such as

    • Managing AWS backups
    • Processing emails received on Amazon SES and stored to Amazon S3 and notified via Amazon SNS, so as to push a message on our Redis so our Sidekiq Rails workers can process inbound emails
    • Pushing some relevant Amazon CloudWatch metrics and alarms to Slack
    See more
    Simon Bettison
    Managing Director at Bettison.org Limited · | 8 upvotes · 765.6K views

    In 2012 we made the very difficult decision to entirely re-engineer our existing monolithic LAMP application from the ground up in order to address some growing concerns about it's long term viability as a platform.

    Full application re-write is almost always never the answer, because of the risks involved. However the situation warranted drastic action as it was clear that the existing product was going to face severe scaling issues. We felt it better address these sooner rather than later and also take the opportunity to improve the international architecture and also to refactor the database in. order that it better matched the changes in core functionality.

    PostgreSQL was chosen for its reputation as being solid ACID compliant database backend, it was available as an offering AWS RDS service which reduced the management overhead of us having to configure it ourselves. In order to reduce read load on the primary database we implemented an Elasticsearch layer for fast and scalable search operations. Synchronisation of these indexes was to be achieved through the use of Sidekiq's Redis based background workers on Amazon ElastiCache. Again the AWS solution here looked to be an easy way to keep our involvement in managing this part of the platform at a minimum. Allowing us to focus on our core business.

    Rails ls was chosen for its ability to quickly get core functionality up and running, its MVC architecture and also its focus on Test Driven Development using RSpec and Selenium with Travis CI providing continual integration. We also liked Ruby for its terse, clean and elegant syntax. Though YMMV on that one!

    Unicorn was chosen for its continual deployment and reputation as a reliable application server, nginx for its reputation as a fast and stable reverse-proxy. We also took advantage of the Amazon CloudFront CDN here to further improve performance by caching static assets globally.

    We tried to strike a balance between having control over management and configuration of our core application with the convenience of being able to leverage AWS hosted services for ancillary functions (Amazon SES , Amazon SQS Amazon Route 53 all hosted securely inside Amazon VPC of course!).

    Whilst there is some compromise here with potential vendor lock in, the tasks being performed by these ancillary services are no particularly specialised which should mitigate this risk. Furthermore we have already containerised the stack in our development using Docker environment, and looking to how best to bring this into production - potentially using Amazon EC2 Container Service

    See more
    delayed_job logo

    delayed_job

    51
    64
    6
    Database backed asynchronous priority queue -- Extracted from Shopify
    51
    64
    + 1
    6
    PROS OF DELAYED_JOB
    • 3
      Easy to get started
    • 2
      Reliable
    • 1
      Doesn't require Redis
    CONS OF DELAYED_JOB
      Be the first to leave a con

      related delayed_job posts

      Jerome Dalbert
      Principal Backend Software Engineer at StackShare · | 4 upvotes · 86.6K views

      delayed_job is a great Rails background job library for new projects, as it only uses what you already have: a relational database. We happily used it during the company’s first two years.

      But it started to falter as our web and database transactions significantly grew. Our app interacted with users via SMS texts sent inside background jobs. Because the delayed_job daemon ran every couple seconds, this meant that users often waited several long seconds before getting text replies, which was not acceptable. Moreover, job processing was done inside AWS Elastic Beanstalk web instances, which were already under stress and not meant to handle jobs.

      We needed a fast background job system that could process jobs in near real-time and integrate well with AWS. Sidekiq is a fast and popular Ruby background job library, but it does not leverage the Elastic Beanstalk worker architecture, and you have to maintain a Redis instance.

      We ended up choosing active-elastic-job, which seamlessly integrates with worker instances and Amazon SQS. SQS is a fast queue and you don’t need to worry about infrastructure or scaling, as AWS handles it for you.

      We noticed significant performance gains immediately after making the switch.

      #BackgroundProcessing

      See more
      Jerome Dalbert
      Principal Backend Software Engineer at StackShare · | 3 upvotes · 62.3K views

      We use Sidekiq to process millions of Ruby background jobs a day under normal loads. We sometimes process more than that when running one-off backfill tasks.

      With so many jobs, it wouldn't really make sense to use delayed_job, as it would put our main database under unnecessary load, which would make it a bottleneck with most DB queries serving jobs and not end users. I suppose you could create a separate DB just for jobs, but that can be a hassle. Sidekiq uses a separate Redis instance so you don't have this problem. And it is very performant!

      I also like that its free version comes "batteries included" with:

      • A web monitoring UI that provides some nice stats.
      • An API that can come in handy for one-off tasks, like changing the queue of certain already enqueued jobs.

      Sidekiq is a pleasure to use. All our engineers love it!

      See more
      Celery logo

      Celery

      1.6K
      1.6K
      280
      Distributed task queue
      1.6K
      1.6K
      + 1
      280
      PROS OF CELERY
      • 99
        Task queue
      • 63
        Python integration
      • 40
        Django integration
      • 30
        Scheduled Task
      • 19
        Publish/subsribe
      • 8
        Various backend broker
      • 6
        Easy to use
      • 5
        Great community
      • 5
        Workflow
      • 4
        Free
      • 1
        Dynamic
      CONS OF CELERY
      • 4
        Sometimes loses tasks
      • 1
        Depends on broker

      related Celery posts

      James Cunningham
      Operations Engineer at Sentry · | 18 upvotes · 1.7M views
      Shared insights
      on
      CeleryCeleryRabbitMQRabbitMQ
      at

      As Sentry runs throughout the day, there are about 50 different offline tasks that we execute—anything from “process this event, pretty please” to “send all of these cool people some emails.” There are some that we execute once a day and some that execute thousands per second.

      Managing this variety requires a reliably high-throughput message-passing technology. We use Celery's RabbitMQ implementation, and we stumbled upon a great feature called Federation that allows us to partition our task queue across any number of RabbitMQ servers and gives us the confidence that, if any single server gets backlogged, others will pitch in and distribute some of the backlogged tasks to their consumers.

      #MessageQueue

      See more
      Michael Mota

      Automations are what makes a CRM powerful. With Celery and RabbitMQ we've been able to make powerful automations that truly works for our clients. Such as for example, automatic daily reports, reminders for their activities, important notifications regarding their client activities and actions on the website and more.

      We use Celery basically for everything that needs to be scheduled for the future, and using RabbitMQ as our Queue-broker is amazing since it fully integrates with Django and Celery storing on our database results of the tasks done so we can see if anything fails immediately.

      See more
      Beanstalkd logo

      Beanstalkd

      111
      160
      74
      A simple, fast work queue
      111
      160
      + 1
      74
      PROS OF BEANSTALKD
      • 23
        Fast
      • 12
        Free
      • 12
        Does one thing well
      • 9
        Scalability
      • 8
        Simplicity
      • 3
        External admin UI developer friendly
      • 3
        Job delay
      • 2
        Job prioritization
      • 2
        External admin UI
      CONS OF BEANSTALKD
        Be the first to leave a con

        related Beanstalkd posts

        Frédéric MARAND
        Core Developer at OSInet · | 2 upvotes · 232.4K views

        I used Kafka originally because it was mandated as part of the top-level IT requirements at a Fortune 500 client. What I found was that it was orders of magnitude more complex ...and powerful than my daily Beanstalkd , and far more flexible, resilient, and manageable than RabbitMQ.

        So for any case where utmost flexibility and resilience are part of the deal, I would use Kafka again. But due to the complexities involved, for any time where this level of scalability is not required, I would probably just use Beanstalkd for its simplicity.

        I tend to find RabbitMQ to be in an uncomfortable middle place between these two extremities.

        See more
        RabbitMQ logo

        RabbitMQ

        20.9K
        18.4K
        527
        Open source multiprotocol messaging broker
        20.9K
        18.4K
        + 1
        527
        PROS OF RABBITMQ
        • 234
          It's fast and it works with good metrics/monitoring
        • 79
          Ease of configuration
        • 59
          I like the admin interface
        • 50
          Easy to set-up and start with
        • 21
          Durable
        • 18
          Intuitive work through python
        • 18
          Standard protocols
        • 10
          Written primarily in Erlang
        • 8
          Simply superb
        • 6
          Completeness of messaging patterns
        • 3
          Scales to 1 million messages per second
        • 3
          Reliable
        • 2
          Distributed
        • 2
          Supports MQTT
        • 2
          Better than most traditional queue based message broker
        • 2
          Supports AMQP
        • 1
          Clusterable
        • 1
          Clear documentation with different scripting language
        • 1
          Great ui
        • 1
          Inubit Integration
        • 1
          Better routing system
        • 1
          High performance
        • 1
          Runs on Open Telecom Platform
        • 1
          Delayed messages
        • 1
          Reliability
        • 1
          Open-source
        CONS OF RABBITMQ
        • 9
          Too complicated cluster/HA config and management
        • 6
          Needs Erlang runtime. Need ops good with Erlang runtime
        • 5
          Configuration must be done first, not by your code
        • 4
          Slow

        related RabbitMQ posts

        James Cunningham
        Operations Engineer at Sentry · | 18 upvotes · 1.7M views
        Shared insights
        on
        CeleryCeleryRabbitMQRabbitMQ
        at

        As Sentry runs throughout the day, there are about 50 different offline tasks that we execute—anything from “process this event, pretty please” to “send all of these cool people some emails.” There are some that we execute once a day and some that execute thousands per second.

        Managing this variety requires a reliably high-throughput message-passing technology. We use Celery's RabbitMQ implementation, and we stumbled upon a great feature called Federation that allows us to partition our task queue across any number of RabbitMQ servers and gives us the confidence that, if any single server gets backlogged, others will pitch in and distribute some of the backlogged tasks to their consumers.

        #MessageQueue

        See more

        Around the time of their Series A, Pinterest’s stack included Python and Django, with Tornado and Node.js as web servers. Memcached / Membase and Redis handled caching, with RabbitMQ handling queueing. Nginx, HAproxy and Varnish managed static-delivery and load-balancing, with persistent data storage handled by MySQL.

        See more
        Rake logo

        Rake

        56
        36
        0
        A software task management and build automation tool
        56
        36
        + 1
        0
        PROS OF RAKE
          Be the first to leave a pro
          CONS OF RAKE
            Be the first to leave a con

            related Rake posts

            Hangfire logo

            Hangfire

            167
            244
            17
            Perform background processing in .NET and .NET Core applications
            167
            244
            + 1
            17
            PROS OF HANGFIRE
            • 7
              Integrated UI dashboard
            • 5
              Simple
            • 3
              Robust
            • 2
              In Memory
            • 0
              Simole
            CONS OF HANGFIRE
              Be the first to leave a con

              related Hangfire posts

              PHP-FPM logo

              PHP-FPM

              108
              119
              0
              An alternative FastCGI daemon for PHP
              108
              119
              + 1
              0
              PROS OF PHP-FPM
                Be the first to leave a pro
                CONS OF PHP-FPM
                  Be the first to leave a con

                  related PHP-FPM posts