Operations | Monitoring | ITSM | DevOps | Cloud

Latest News

Is Bun the Next Big Thing for AWS Lambda? A Thorough Investigation

It’s been only a few days since the Bun 1.0 announcement and it’s taken social media by storm! And rightly so. Bun promises better performance, and Node.js compatibility and comes with batteries included. It comes with a transpiler, bundler, package manager and testing library. You no longer have to install 15 packages before writing a single code line. It creates a standardised set of tools and addresses the fractured nature of the Node.js ecosystem.

Scaling AWS Lambda and Postgres to thousands of simultaneous uptime checks

When you're building a serverless web app, it can be pretty easy to forget about the database. You build a backend, send some data to a frontend, write some tests, and it'll scale to infinity with no effort, right? Not quite. Especially not with a tiny Postgres server. As the number of users of your frontend increases, your app will open more and more database connections until the database is unable to accept any more. That's just the frontend - it gets worse on the backend.

How to resubmit & delete messages in Azure Service Bus dead letter queue?

Azure Service Bus is a cloud messaging service in Microsoft Azure that enables independent applications or services to communicate and exchange data through messages stored in queues or topics. This facilitates scalable and reliable communication in distributed systems. Service Bus contains two types of messaging entities queues, and topics. Queue: Queues transmit the messages in FIFO (First In, First Out) message delivery. Each message in a Queue can be received by only one active receiver.

Auto Filter Messages into Subscriptions in Azure Service Bus Topic

Topic is a logical channel to which publishers send messages. Topics can be employed when several subscribers wish to subscribe to a specific set of messages. Messages sent to a topic are then forwarded to its associated Subscriptions.

A detailed guide on Azure architecture diagram

Azure architecture diagrams are visual representations that illustrate the structure, components, and relationships of a solution or application deployed on Microsoft Azure. These diagrams provide a clear and concise overview of the various Azure resources and services used in a specific architecture. They are helpful for design discussions, documentation, and communication among team members and stakeholders.

Azure SQL database cost optimization to maximize savings

Azure SQL is a versatile and powerful database service, and it is an increasingly popular choice for storing and managing application data due to its scalability, high availability, security, and simplicity of integration. A common demand for cloud workloads is cost optimization. To maximize cloud savings, this article discusses Azure SQL Database Cost Optimization.

Top 8 things you should know about deploying RabbitMQ

RabbitMQ is a household name in the world of application development and system architecture. Acting as a middleman for communication, it seamlessly bridges the gap between various application components. If you’ve been contemplating the integration of RabbitMQ into your infrastructure or simply want to better understand its functionalities, this blog post is for you. Here are the top 8 things to know.

When to scale tasks on AWS Elastic Container Service (ECS)

Since its inception, Amazon Elastic Container Service (ECS) has emerged as a strong choice for developers aiming to efficiently deploy, manage, and scale containerized applications on AWS cloud. By abstracting the complexities associated with container orchestration, ECS allows teams to focus on application development, while handling the underlying infrastructure, load balancing, and service discovery requirements.