Usman Soliucode-along.hashnode.dev·Oct 13, 2024Why Job Queues In Your System Architecture?As a backend engineer, you’ve likely faced tasks that take a long time to complete, causing delays in system response or even timeouts. These tasks don't always require immediate execution, but handling them within the same request can slow everythin...Discuss·2 likes·44 reads Bee-Queue
Shivang Yadavblogs.shivangyadav.me·Oct 12, 2024Scaling Backend Servers with Messaging Queues: A Deep Dive Using BullMQScaling backend infrastructure is one of the most critical steps in handling growing traffic and ensuring smooth operation under heavy loads. As systems grow, a single server processing all the tasks synchronously can become a bottleneck. This is whe...Discuss·1 like·42 readsbackend
Nitish Kumarnov1ce.hashnode.dev·Oct 4, 2024Understanding BullMQ: A Simple Yet Powerful Message QueueIntroduction In the world of system design, the choice of a message queue can significantly impact the performance and reliability of applications. One such robust option is BullMQ, a powerful and flexible message queue built on Redis. This blog post...DiscussTIL
Muhammad Sufiyaninnosufiyan.hashnode.dev·Jun 29, 2024Connection ConfigurationIn BullMQ, the connection object is used to define how BullMQ connects to a Redis server. Redis is an in-memory data structure store that is often used as a database, cache, and message broker. BullMQ uses Redis to store and manage its job queues. He...DiscussSMIT - Batch 10bullmq
Muhammad Sufiyaninnosufiyan.hashnode.dev·Jun 29, 2024BullMQBullMQ is a job queue library for Node.js, not a messaging queue service in the traditional sense like RabbitMQ or Apache Kafka. While it shares some similarities with messaging queue systems, BullMQ focuses specifically on managing and processing jo...Discuss·57 readsSMIT - Batch 10bullmq
Muhammad Sufiyaninnosufiyan.hashnode.dev·Jun 17, 2024Scalable System and Its BenefitsScalability refers to a system's ability to handle increased load by adding resources, such as more servers or increasing computational power, without compromising performance. Scalable systems are designed to grow and manage increased demand efficie...Discuss·29 readsSMIT - Batch 10Scalable web applications
Atul Kumarblogs.aboutatul.in·Jun 8, 2024My Journey with BullMQ: Sending Bulk EmailsYesterday, I was working on my personal project, a web app that needed to send bulk emails to users. Everything was going smoothly until I hit a roadblock. My app was starting to slow down because it was trying to handle too many email-sending tasks ...Discuss·2 likes·189 readsbullmq
Gaurav Kumargauravbytes.hashnode.dev·May 20, 2024Reliable Background Task Execution using BullMQ and Node.jsIn modern Node.js applications, ensuring smooth background processing is crucial for maintaining responsiveness and scalability. Message queues offer an effective solution, decoupling message production from consumption and enabling asynchronous task...Discuss·1 like·736 readsQueues
Pavel RomanovPropavel-romanov.com·Apr 30, 2024The Ultimate Guide to Cron Jobs in Node.jsOne of the most common features of each application is task scheduling. For example, an application needs to send email reports about some operations once every 8 hours to a certain number of users. While it is a common task, people in the Node.js co...Discuss·281 readsNode.js
Mayank Bansalblog.mayankbansal.xyz·Apr 22, 2024Message Queues and bullMQ from a beginner's POVFirst up let's just get started with what. What are message queues? What is a Message Queue? To answer this question, let's have a look at queues first. What is a queue? A queue is basically a data structure that follows the FIFO (First In First Out)...Discuss·35 readsmessage queue