The AWS DMS Task Restart and Status Checker is a Python script designed to restart multiple AWS Database Migration Service (DMS) tasks and verify their statuses. This script leverages AWS SDK (Boto3) and Mage.ai for seamless integration and management of DMS tasks, ensuring efficient and reliable task handling.
- Before using this script, ensure you have the following:
AWS Account
: Access to an AWS account with DMS service enabled.IAM Permissions
: Appropriate IAM permissions to restart DMS tasks and describe their statuses.Mage.ai
: Installed and configured in your environment.AWS Credentials
: Stored securely and accessible throughget_secret_value
function.
- Clone the Repository:
git clone https://github.com/nathadriele/AWS-DMS-task-restart-and-status-checker.git
cd dms-task-manager
- Install Dependencies: Make sure you have boto3 and mage-ai installed:
pip install boto3 mage-ai
The load_data
function is decorated with @data_loader
from Mage.ai. It initializes a list of DMS task ARNs and a Boto3 DMS client using credentials fetched via get_secret_value
. The function iterates over the task ARNs, restarting each task and collecting their statuses into a dictionary, which is then returned.
The restart_task
function handles the logic for restarting a specific DMS task using its ARN. It prints confirmation of the restart and retrieves the task's status, which is returned to the caller.
The test_output
function is decorated with @test
and is used to validate the functionality of the load_data
function. It ensures that the output is a dictionary and that each task has the expected status ('starting')
.
To test the script, ensure you have appropriate credentials and ARNs configured. Then, run the script and observe the printed outputs for task restart confirmations and statuses. The test_output
function will validate the results automatically.
This script offers a streamlined approach to managing AWS DMS tasks by automating restarts and status checks. It leverages Boto3 for seamless cloud integration and incorporates automated testing to guarantee reliable execution. These capabilities enhance efficiency in data migration and data engineering workflows.
Contributions are welcome!