Posts

Showing posts from October, 2022
Image
        AWS Lambda Function To start DMS Task INTRODUCTION: Lambda function: AWS Lambda is a serverless, event-driven compute service that lets you run code for virtually any type of application or backend service without provisioning or managing servers. You can trigger Lambda from over 200 AWS services and software as a service (SaaS) applications, and only pay for what you use DMS : DMS cloud service is used to migrate relational databases, data warehouses, NoSQL databases, and other sorts of data stores. It can also capture ongoing changes from the source. DMS Change data capture (CDC) is the process that captures ongoing changes after  the completion of initial migration to a supported target data store. This keeps source and target in sync. Creating an AWS Lambda function to start DMS task :-   Services --> Lambda --> Functions --> create function:     Give a Function name, choose python 3. 9 as runtime   Select creat...