-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated mysql config file Deprecated mysql module. Created Changelog for v3.26.2
- Loading branch information
1 parent
12a4ba7
commit ba53b3a
Showing
6 changed files
with
63 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[mysqld] | ||
innodb-strict-mode=OFF | ||
innodb-page-size=32K | ||
innodb-log-buffer-size=128M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
Python code to convert Tangerine (CouchDB database) documnets to MySQL database. Each document type maps to one database table. | ||
# DEPRECATED Mysql Module | ||
|
||
## This module is deprecated as of v3.26.2 and will be removed in v3.28.0. | ||
|
||
Python code to convert Tangerine (CouchDB database) documents to MySQL database. Each document type maps to one database table. | ||
CreateTable.sql script needs to be run in each MySQL database so that the 4 basic tables are created. Tangerine response form table willbe created on the fly. | ||
The python code updates the database tables (schema and data) on the fly. | ||
Delete is curently not supported. | ||
It pulls on CouchDB changes on a set time intervals and process the changes only after the initial synchronization. | ||
|
||
TangerineToMySQL.py: it uses the setting.ini for One tangerine couchDB database to one MySQL database conversion | ||
MultipleTangerineToMySQL.py: it uses setting2.ini that convetts multiple couchDBdatabase to multiple MySQL database, it doesn't fully working yet, still more to do. | ||
MultipleTangerineToMySQL.py: it uses setting2.ini that converts multiple couchDB databases to multiple MySQL database, it doesn't fully work yet, still more to do. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
[mysqld] | ||
default-storage-engine=myisam | ||
innodb-strict-mode=OFF | ||
innodb-page-size=32K | ||
innodb-log-buffer-size=128M |