24 lines
527 B
Plaintext
24 lines
527 B
Plaintext
# MySQL Source Database
|
|
MYSQL_HOST=localhost
|
|
MYSQL_PORT=3306
|
|
MYSQL_USER=root
|
|
MYSQL_PASSWORD=your_mysql_password
|
|
MYSQL_DATABASE=your_database_name
|
|
|
|
# PostgreSQL Target Database (container Incus)
|
|
POSTGRES_HOST=localhost
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=your_postgres_password
|
|
POSTGRES_DATABASE=migrated_db
|
|
|
|
# Migration Settings
|
|
LOG_LEVEL=INFO
|
|
DRY_RUN=false
|
|
CONSOLIDATION_GROUP_LIMIT=40000
|
|
PROGRESS_LOG_INTERVAL=10000
|
|
|
|
# Performance Testing
|
|
BENCHMARK_OUTPUT_DIR=benchmark_results
|
|
BENCHMARK_ITERATIONS=5
|