OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Oct 28, 2024Message QueuesMessage Queues : Synchronous & Asynchronous Communication : Both parties are connected with each other over the dedicated line and they are responding each other / exchanging the information in Synchronous manner there is no wait & lag any of the par...queue
Aparna Vikramanaparnavikraman.hashnode.dev·Oct 6, 2024AWS SQS FIFO Queue vs Standard QueueAmazon SQS offers two types of queues: FIFO (First-In-First-Out) and Standard. Let's explore their pros and cons to help choose the right queue for your application. FIFO Queues FIFO queues guarantee that messages are processed in the exact order the...AWS
Mostafa Youssefmostafaelsawy.hashnode.dev·Sep 5, 2024[3] Scheduling PoliciesIn the previous article, we learned the basics of how Operating Systems manage program execution and that the CPU must switch between processes to schedule one to run. In this article, we will explore in more detail how this scheduler works. Underst...10 likes·75 readsOperating Systems Three Easy Piecesscheduler
Aleksei Zagoskinzagosk.in·Jul 28, 2024Get To Know Your Message BrokerMessage brokers are a crucial part of many asynchronous distributed systems. Just like blood vessels transport blood throughout the human body, message brokers transmit streams of countless messages between applications. Today, we're going to take a ...74 readsmessage queue
Gemma Blackgemmablack.dev·Jul 26, 2024Building the Beta version of the FIFO Profit CalculatorWebsite: https://uposcar.com/tools/pnl-fifo-calculator Why I Built It So there I was, escaping the rain to move to sunny Spain. Until I started preparing to move, I never had to worry about selling my shares and stocks because we have ISA accounts in...calculator
Haiman Sherhaimanshercloud.hashnode.dev·Jul 4, 2024Exploring AWS SQS: Enhancing Communication in Distributed SystemsAmazon Simple Queue Service (SQS) is a fully managed message queuing service designed to facilitate reliable communication between distributed software components and microservices. In my recent exploration of AWS SQS, I've gained valuable insights i...AWS
DataWisokadatawisoka.com·Aug 25, 2023Choosing the right message queue: Message retention and ordering in Kafka vs. SQSIn the intricate landscape of distributed systems, the strategies you choose for message retention and ordering can make or break the efficiency of your application. Having already covered the architecture, scalability, and performance aspects of Kaf...kafka
DataWisokadatawisoka.com·Aug 23, 2023Choosing the right message queue: Architecture and Scalability in Kafka vs. SQSIn the world of software architecture, the choice of message queue can have profound implications on your system’s performance, reliability, and scalability. As applications grow more complex, handling high volumes of data and ensuring smooth communi...kafka
Jagdish Pariharblog.jatin510.dev·Sep 3, 2022Queue Data Structure in JavascriptImplement Queue data structure in Javascript The Queue is the data structure that works on FIFO Principle, which is the abbreviation for "First In First Out". Queues can have various applications: Let's suppose you are making a service that requires ...2 likes·173 readsJavaScript