Skip to content

Commit 0a32ab2

Browse files
Release/v5.7.0 (#107)
* 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
1 parent 239d877 commit 0a32ab2

22 files changed

+1064
-569
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
node_modules
33
logs_directory
44
dist
5+
tsconfig.tsbuildinfo

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Or, if you have moved <code>config</code> folder out from Nmig's directory:<br /
109109
<br /><b>Note:</b> "logs_directory" will be created during script execution.</p>
110110

111111
<h3>VERSION</h3>
112-
<p>Current version is 5.6.0<br />
112+
<p>Current version is 5.7.0<br />
113113

114114
<h3>LICENSE</h3>
115115
<p>NMIG is available under "GNU GENERAL PUBLIC LICENSE" (v. 3) <br />

config/config.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
"Connection parameters to your MySQL database",
99
"Please ensure, that you have defined all parameters properly.",
1010
"Ensure, that details like 'charset' are included (if necessary).",
11-
"Notice, any parameter, acceptable by the node mysql module can be placed here."
11+
"Note, any parameter, acceptable by the node mysql module can be placed here.",
12+
"Check the 'source.host' parameter, that can be either '127.0.0.1' or 'localhost', depends on your setup."
1213
],
1314
"source" : {
14-
"host" : "localhost",
15+
"host" : "127.0.0.1",
1516
"port" : 3306,
1617
"database" : "test_db",
1718
"charset" : "utf8mb4",
@@ -24,10 +25,11 @@
2425
"Connection parameters to your PostgreSQL database",
2526
"Please ensure, that you have defined all parameters properly.",
2627
"Ensure, that details like 'charset' are included (if necessary).",
27-
"Notice, any parameter, acceptable by the node pg module can be placed here."
28+
"Note, any parameter, acceptable by the node pg module can be placed here.",
29+
"Check the 'target.host' parameter, that can be either '127.0.0.1' or 'localhost', depends on your setup."
2830
],
2931
"target" : {
30-
"host" : "localhost",
32+
"host" : "127.0.0.1",
3133
"port" : 5432,
3234
"database" : "test_db",
3335
"charset" : "UTF8",
@@ -48,7 +50,7 @@
4850
"Acceptable values:",
4951
"1. 'DEFAULT' - when set to 'DEFAULT', Nmig will run 2 data-loader processes.",
5052
"2. Any positive integer.",
51-
"Notice:",
53+
"Note:",
5254
"1.",
5355
"Usually, migration gets accomplished faster with only 2 data-loader processes,",
5456
"even if more CPU cores are available.",

0 commit comments

Comments
 (0)