Chuyển đến nội dung chính

Azure Functions: Trigger Azure Function với Cosmos DB - Day 3

Azure functions hỗ trợ rất nhiều triggers, trong đó có Cosmos DB Trigger. Cosmos DB Trigger sử dụng Azure Cosmos DB change feed để listen những thay đổi từ container (inserting, updating, chưa hỗ trợ delete).

Tham khảo bài viết Tìm hiểu về CosmosDB để xem cách tạo Database, container trong Cosmos: https://nhatkyhoctap.blogspot.com/2023/05/tim-hieu-ve-azure-comos-db.html

Tham khảo bài viết cách tạo Azure Functioin trong Visual Studio Code: https://nhatkyhoctap.blogspot.com/2023/05/azure-functions-tao-project-azure.html

Các bước tạo Azure Function tương tự như trên, tuy nhiên ở bước chọn trigger, bạn chọn Azure Cosmos DB Trigger. Nếu có hộp thoại hỏi chọn database name, bạn bấm Skip for now.

Azure Function sẽ có đoạn code như sau:

using System;
using System.Collections.Generic;
using Microsoft.Azure.Functions.Worker;
using Microsoft.Extensions.Logging;

namespace AzureLearning.Function
{
    public class CosmosSampleTrigger
    {
        private readonly ILogger _logger;

        public CosmosSampleTrigger(ILoggerFactory loggerFactory)
        {
            _logger = loggerFactory.CreateLogger<CosmosSampleTrigger>();
        }

        [Function("CosmosSampleTrigger")]
        public void Run([CosmosDBTrigger(
            databaseName: "databaseName",
            collectionName: "collectionName",
            ConnectionStringSetting = "",
            LeaseCollectionName = "leases")] IReadOnlyList<MyDocument> input)
        {
            if (input != null && input.Count > 0)
            {
                _logger.LogInformation("Documents modified: " + input.Count);
                _logger.LogInformation("First document Id: " + input[0].Id);
            }
        }
    }

    public class MyDocument
    {
        public string Id { get; set; }

        public string Text { get; set; }

        public int Number { get; set; }

        public bool Boolean { get; set; }
    }
}
local.settings.json
{
  "IsEncrypted": false,
  "Values": {
    "AzureWebJobsStorage": "",
    "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated",
    "CosmosDbConnectionString": "AccountEndpoint=..."
  }
}
Trong đoạn code trên, ConnectionStringSetting là từ khóa dùng để lấy config từ local.settings.json. Bạn sẽ để PrimaryKeyConnectionString vào AzureWebJobsStorage Trong bài trước, mình có model là Employee, mình sẽ update lại MyDocument sao cho giống với Model có sẵn
public class MyDocument
{
	public string? id { get; set;}
	public string? Name { get; set;}
	public string? Country { get; set;}
	public string? City { get; set;}
	public string? Department { get; set;}
	public string? Designation { get; set;}
	public DateTime? JoiningDate { get; set;}
}
Hàm Run được update như sau:
[Function("CosmosSampleTrigger")]
public void Run([CosmosDBTrigger(
	databaseName: "EmployeeManagementDB",
	collectionName: "Employees",
	ConnectionStringSetting = "CosmosDbConnectionString",
	LeaseCollectionName = "lease", CreateLeaseCollectionIfNotExists = true)] IReadOnlyList<MyDocument> input)
{
	if (input != null && input.Count > 0)
	{
		_logger.LogInformation("Documents modified: " + input.Count);
		foreach(var item in input)
		{
			_logger.LogInformation($"Document Id: {item.id}, department {item.Department}, name: {item.Name}");
		}
		
	}
}
Bấm F5 để debug và test kết quả xem nào. 
Trong bài viết tới, mình sẽ đưa ra hướng giải quyết Trigger này sao cho hiệu quả.

Nhận xét

Bài đăng phổ biến từ blog này

[ASP.NET MVC] Authentication và Authorize

Một trong những vấn đề bảo mật cơ bản nhất là đảm bảo những người dùng hợp lệ truy cập vào hệ thống. ASP.NET đưa ra 2 khái niệm: Authentication và Authorize Authentication xác nhận bạn là ai. Ví dụ: Bạn có thể đăng nhập vào hệ thống bằng username và password hoặc bằng ssh. Authorization xác nhận những gì bạn có thể làm. Ví dụ: Bạn được phép truy cập vào website, đăng thông tin lên diễn đàn nhưng bạn không được phép truy cập vào trang mod và admin.

ASP.NET MVC: Cơ bản về Validation

Validation (chứng thực) là một tính năng quan trọng trong ASP.NET MVC và được phát triển trong một thời gian dài. Validation vắng mặt trong phiên bản đầu tiên của asp.net mvc và thật khó để tích hợp 1 framework validation của một bên thứ 3 vì không có khả năng mở rộng. ASP.NET MVC2 đã hỗ trợ framework validation do Microsoft phát triển, tên là Data Annotations. Và trong phiên bản 3, framework validation đã hỗ trợ tốt hơn việc xác thực phía máy khách, và đây là một xu hướng của việc phát triển ứng dụng web ngày nay.

Tổng hợp một số kiến thức lập trình về Amibroker

Giới thiệu về Amibroker Amibroker theo developer Tomasz Janeczko được xây dựng dựa trên ngôn ngữ C. Vì vậy bộ code Amibroker Formula Language sử dụng có syntax khá tương đồng với C, ví dụ như câu lệnh #include để import hay cách gói các object, hàm trong các block {} và kết thúc câu lệnh bằng dấu “;”. AFL trong Amibroker là ngôn ngữ xử lý mảng (an array processing language). Nó hoạt động dựa trên các mảng (các dòng/vector) số liệu, khá giống với cách hoạt động của spreadsheet trên excel.