Skip to content

jerry42/dynamodb-to-mysql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DynamoDB to MySQL Transfer Tool

This npm package facilitates the seamless transfer of data from DynamoDB tables to a MySQL server. It offers functionality to explore, scan, and efficiently transfer data while maintaining table structure integrity. By running the tool multiple times, your MySQL database's structure will dynamically update through the usage of ALTER TABLE commands, ensuring data consistency.

Key Features

  • Explore, scan, and transfer DynamoDB tables to MySQL.

  • Automatic updating of MySQL table structure (ALTER TABLE) during data transfer.

  • Ability to specify tables for export, either all tables within a specific region or selected tables.

  • Suitable for production environments, enabling execution of complex queries on MySQL (version 8) databases, simplifying processes compared to using PartiQL or multiple scans.

  • Utilizes parallel scanning capabilities via the @shelf/dynamodb-parallel-scan package.

  • Concurrency settings adjustable through environment variables (refer to documentation for details).

Installation

To install the package, use npm:

npm install dynamodb-to-mysql

Usage

After installation, you can use the tool by importing it into your Node.js application:

// ESModule
import { dynamodb2MySQL, dynamodb2MySQLAllTables } from 'dynamodb-to-mysql';

There are 2 functions; by default, truncate is false. Set true to truncate the MySQL table if it exists.

dynamodb2MySQL(table_name, truncate);
dynamodb2MySQLAllTables(truncate);

Refer to the documentation for detailed usage instructions and examples.

Documentation

You need to set environment variables for MySQL. Default Concurrency for Parallel Scan is 10.

// MacOS or Linux
export MYSQL_HOST=your.mysql.host
export MYSQL_USER=user
export MYSQL_PASSWORD=password
export MYSQL_DATABASE=my_database
export CONCURRENCY=100

You have the option to configure environment variables to customize the MySQL engine and charset. Additionally, verbose mode can be enabled to monitor processes (console.log).

export MYSQL_CHARSET=utf8
export MYSQL_ENGINE=InnoDB
export VERBOSE=true

This package uses the following libraries:

Don't forget to allow access to DynamoDB in IAM

{
	"Version": "2012-10-17",
	"Statement": [
	{
		"Sid": "VisualEditor0",
		"Effect": "Allow",
		"Action": [
			"dynamodb:DescribeTable",
			"dynamodb:Scan"
		],
		"Resource": "*"
	}]
}

See test/test.js for more details

Contributing

Contributions are welcome! Feel free to fork the project.

License

This project is licensed under the GNU General Public License (GPL).


Note: This tool is not affiliated with or endorsed by AWS, MySQL, or any associated organizations.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published