atlas news
    
Rahul Nath
17  janvier     06h19
Querying OpenSearch from .NET: Full-Text Search on DynamoDB Data.
Rahul Pulikkot Nath    Learn how to query data from Amazon OpenSearch using .NET after importing it from DynamoDB with Zero ETL. This integration allows you to perform full text searches and advanced queries on DynamoDB data, enhancing your application’s search capabilities seamlessly.
30  décembre     05h37
Why Dead Letter Queues Are a Must-Have for Reliable Messaging Systems
Rahul Pulikkot Nath    A Dead Letter Queue DLQ is a special queue that handles messages that cannot be successfully processed or delivered to their intended destination. In this post, we will explore what a Dead Letter Queue is, why it’s important, and the benefits of using one.
04  décembre     07h43
Building and Deploying .NET Applications with AWS CDK on GitHub Actions
Rahul Pulikkot Nath    Let’s learn how to set up a build deploy pipeline on GitHub Actions to automate infrastructure management and deploy resources on AWS for our .NET application.
29  novembre     19h57
How to Prevent Amazon S3 Object Overwrites with Conditional Writes in .NET
Rahul Pulikkot Nath    Amazon S now supports ETags for conditional writes, allowing you to check if an object has been modified before updating it. This feature helps prevent accidental overwrites when multiple users simultaneously write to the same object. Let’s learn how to use this from a .NET application.
    06h39
DynamoDB Zero-ETL Integration With Amazon OpenSearch Service
Rahul Pulikkot Nath    Let’s learn how to set up the DynamoDB Zero ETL plugin for OpenSearch, a fully managed, no code setup for ingesting data into Amazon OpenSearch Service.
22  novembre     07h04
Setting Up AWS CDK with .NET for Seamless LocalStack and AWS Deployments
Rahul Pulikkot Nath    Let’s learn how to use CDK to deploy and manage resources in both LocalStack and AWS accounts. We will use the same CDK code base to deploy to both.
21  novembre     06h55
How to Use LocalStack for Seamless AWS Development in .NET
Rahul Pulikkot Nath    LocalStack is a fully functional local AWS cloud stack that lets you emulate AWS services directly on your machine. Let’s learn how to set up and run your .NET application locally on LocalStack.
20  novembre     06h59
AWS CDK For The .NET Developer: How To Easily Get Started
Rahul Pulikkot Nath    AWS CDK simplifies Cloud Infrastructure management. CDK lets you define AWS resources using first class programming concepts. It translates your code into AWS CloudFormation templates, which can be used to provision AWS resources for your application. Let’s get started using .NET and C .
08  novembre     06h35
A Step-by-Step Guide to AWS Message Processing with Amazon SQS in .NET
Rahul Pulikkot Nath    The AWS Message Processing Framework for .NET is an AWS native toolkit for building .NET applications with messaging services like SQS and EventBridge. Let’s learn how to start using it when creating .NET applications on AWS.
05  novembre     04h39
AWS Lambda and .NET 8: Enhancing Serverless Performance with Native AOT
Rahul Pulikkot Nath    Let’s quickly review what’s new and what you need to know when building your Lambda Functions on .NET .
14  octobre     06h57
C# Yield Return Statement: A Deep Dive
Rahul Pulikkot Nath    Iterator methods are methods that create a source for an enumeration. The yield method is used to define an iterator method. While you can implement the IEnumerable interface, iterators makes it much more easier with the yield statement. Let’s learn more about this.
04  octobre     05h19
Exploring Amazon S3 Conditional Operations From .NET Application
Rahul Pulikkot Nath    Amazon S now supports conditional requests. You can use conditional requests to add preconditions to your S operations. If the precondition is not met it will result in the S operation failing. Let’s learn about Conditional Reads and Writes in Amazon S and how to use it from .NET
26  septembre     04h56
A Beginner’s Guide to MassTransit and RabbitMQ in ASP NET
Rahul Pulikkot Nath    MassTransit is a powerful .NET library for building distributed systems. Let’s learn how to set up MassTransit using RabbitMQ transport from an ASP NET application. We will also learn the default queue topology MassTransit sets up on RabbitMQ transport.
15  août     06h18
Step By Step Guide: Deploying ASP NET API To AWS Elastic Beanstalk Using Visual Studio Toolkit
Rahul Pulikkot Nath    In this post let’s explore step by step how to deploy an ASP NET Web API application to AWS Elastic Beanstalk. We will use the Visual Studio Toolkit to deploy the application and create multiple environments.
12  août     06h47
Monitor Your Applications: Health Checks in ASP NET Core
Rahul Pulikkot Nath    ASP NET Health Checks feature lets you monitor and report on the health of your web application and its dependencies.