Skip to content

Commit

Permalink
Release/v5.7.0 (#107)
Browse files Browse the repository at this point in the history
* decomposed main thread

* minor improvements

* Feature/small improvements (#105)

* small improvements

* updated dependencies

* small improvements, following upgrade to TS5

* added comments regarding connections configuration

* small improvements
  • Loading branch information
AnatolyFromPerion committed Apr 22, 2023
1 parent 239d877 commit 0a32ab2
Show file tree
Hide file tree
Showing 22 changed files with 1,064 additions and 569 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules
logs_directory
dist
tsconfig.tsbuildinfo
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Or, if you have moved <code>config</code> folder out from Nmig's directory:<br /
<br /><b>Note:</b> "logs_directory" will be created during script execution.</p>

<h3>VERSION</h3>
<p>Current version is 5.6.0<br />
<p>Current version is 5.7.0<br />

<h3>LICENSE</h3>
<p>NMIG is available under "GNU GENERAL PUBLIC LICENSE" (v. 3) <br />
Expand Down
12 changes: 7 additions & 5 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
"Connection parameters to your MySQL database",
"Please ensure, that you have defined all parameters properly.",
"Ensure, that details like 'charset' are included (if necessary).",
"Notice, any parameter, acceptable by the node mysql module can be placed here."
"Note, any parameter, acceptable by the node mysql module can be placed here.",
"Check the 'source.host' parameter, that can be either '127.0.0.1' or 'localhost', depends on your setup."
],
"source" : {
"host" : "localhost",
"host" : "127.0.0.1",
"port" : 3306,
"database" : "test_db",
"charset" : "utf8mb4",
Expand All @@ -24,10 +25,11 @@
"Connection parameters to your PostgreSQL database",
"Please ensure, that you have defined all parameters properly.",
"Ensure, that details like 'charset' are included (if necessary).",
"Notice, any parameter, acceptable by the node pg module can be placed here."
"Note, any parameter, acceptable by the node pg module can be placed here.",
"Check the 'target.host' parameter, that can be either '127.0.0.1' or 'localhost', depends on your setup."
],
"target" : {
"host" : "localhost",
"host" : "127.0.0.1",
"port" : 5432,
"database" : "test_db",
"charset" : "UTF8",
Expand All @@ -48,7 +50,7 @@
"Acceptable values:",
"1. 'DEFAULT' - when set to 'DEFAULT', Nmig will run 2 data-loader processes.",
"2. Any positive integer.",
"Notice:",
"Note:",
"1.",
"Usually, migration gets accomplished faster with only 2 data-loader processes,",
"even if more CPU cores are available.",
Expand Down
Loading

0 comments on commit 0a32ab2

Please sign in to comment.