π₯ Part1 - Terraform on Microsoft Azure ππ
https://www.arunyadav.in/codehacks/blogs/post/44/part1-terraform-on-microsoft-azure
The follow-up of Part2 - Terraform to create a virtual machine (VM) in Azure will be published this Friday (28th April 2023)
#CloudComputing #DevOps #programming #programmer #azure #terraform
https://www.arunyadav.in/codehacks/blogs/post/44/part1-terraform-on-microsoft-azure
The follow-up of Part2 - Terraform to create a virtual machine (VM) in Azure will be published this Friday (28th April 2023)
#CloudComputing #DevOps #programming #programmer #azure #terraform
www.arunyadav.in
Part1 - Terraform on Microsoft Azure
Terraform in Azure enables users to define and manage their cloud infrastructure in a declarative way, using Terraform configuration files to describe the desired infrastructure state. With Terraform, users can create, modify, and destroy resources in Azureβ¦
π₯ New Article: Durable Functions in Azure ππ
#azure #serverless #durablefunction
https://www.arunyadav.in/codehacks/blogs/post/47/durable-functions-in-azure-
#azure #serverless #durablefunction
https://www.arunyadav.in/codehacks/blogs/post/47/durable-functions-in-azure-
www.arunyadav.in
Durable Functions in Azure
π₯ Working with Azure Cosmos DB in your Azure Functions ππ
https://www.arunyadav.in/codehacks/blogs/post/52/working-with-azure-cosmos-db-in-your-azure-functions
Let's create something in real time.
π₯ Insert Record Function:
π The Insert Record function, as described in the previous code snippet, handles the HTTP POST request to insert a student record into a Cosmos DB collection.
π When a POST request is received, the function reads the request body, deserializes it into a StudentEntity object, and creates a new document in the specified Cosmos DB collection with the student record data.
πThe function returns the inserted document as the response.
π₯ Change Feed Function:
π The Change Feed function, as described in the previous code snippet, uses the Cosmos DB trigger to monitor changes in a specific Cosmos DB collection.
π When a change occurs, such as an insertion, update, or deletion of a document in the monitored collection, the Change Feed function is triggered.
π The function receives the batch of changed documents as the input parameter and can perform custom logic to process the changed documents.
π₯ Relationship between the functions:
π After the Insert Record function inserts a new student record into the Cosmos DB collection, the Change Feed function can be triggered if the insertion causes a change in the monitored collection.
πThe Change Feed function can then process the inserted document or perform any desired logic based on the change. For example, you can use the Change Feed function to send notifications, update related data, or trigger other actions whenever a new student record is inserted.
#cosmos #database #azure #development #programmer #developers
https://www.arunyadav.in/codehacks/blogs/post/52/working-with-azure-cosmos-db-in-your-azure-functions
Let's create something in real time.
π₯ Insert Record Function:
π The Insert Record function, as described in the previous code snippet, handles the HTTP POST request to insert a student record into a Cosmos DB collection.
π When a POST request is received, the function reads the request body, deserializes it into a StudentEntity object, and creates a new document in the specified Cosmos DB collection with the student record data.
πThe function returns the inserted document as the response.
π₯ Change Feed Function:
π The Change Feed function, as described in the previous code snippet, uses the Cosmos DB trigger to monitor changes in a specific Cosmos DB collection.
π When a change occurs, such as an insertion, update, or deletion of a document in the monitored collection, the Change Feed function is triggered.
π The function receives the batch of changed documents as the input parameter and can perform custom logic to process the changed documents.
π₯ Relationship between the functions:
π After the Insert Record function inserts a new student record into the Cosmos DB collection, the Change Feed function can be triggered if the insertion causes a change in the monitored collection.
πThe Change Feed function can then process the inserted document or perform any desired logic based on the change. For example, you can use the Change Feed function to send notifications, update related data, or trigger other actions whenever a new student record is inserted.
#cosmos #database #azure #development #programmer #developers
www.arunyadav.in
Working with Azure Cosmos DB in your Azure Functions
Azure Cosmos DB is a powerful and scalable database service provided by Microsoft Azure. It is designed to handle globally distributed data to handle large-scale, high-performance applications that require low latency. In this article, we see how to storeβ¦
π₯ Real-Time Applications with Azure SignalR, Angular, and .Net Core ππ
https://www.arunyadav.in/codehacks/blogs/post/55/realtime-applications-with-azure-signalr-angular-and-net-core
We are creating a real-time chat application with a professional and user-friendly interface. The application allows users to enter their names, start a chat session, and exchange messages in real-time. We are using Angular, SignalR, and .NET Core to develop a real-time chat application.
#Azure #SignalR #DotNet #programmer #developers
https://www.arunyadav.in/codehacks/blogs/post/55/realtime-applications-with-azure-signalr-angular-and-net-core
We are creating a real-time chat application with a professional and user-friendly interface. The application allows users to enter their names, start a chat session, and exchange messages in real-time. We are using Angular, SignalR, and .NET Core to develop a real-time chat application.
#Azure #SignalR #DotNet #programmer #developers
www.arunyadav.in
Real-Time Applications with Azure SignalR, Angular and .Net Core
We are creating a real-time chat application with a professional and user-friendly interface. The application allows users to enter their names, start a chat session, and exchange messages in real-time. We are using Angular, SignalR, and .NET Core to developβ¦