momy icon indicating copy to clipboard operation
momy copied to clipboard

MongoDB to MySQL replication

Results 13 momy issues
Sort by recently updated
recently updated
newest added

"collections": { "class": { "_id": "string", "tests": "string", "lastUpdate": "DATETIME" in mongodb "lastUpdate" : ISODate("2019-01-03T13:01:01Z") ; but in mysql,lastUpdate is null?why?

Bumps [moment](https://github.com/moment/moment) from 2.24.0 to 2.29.4. Changelog Sourced from moment's changelog. 2.29.4 Release Jul 6, 2022 #6015 [bugfix] Fix ReDoS in preprocessRFC2822 regex 2.29.3 Full changelog Release Apr 17, 2022...

dependencies

If the _id is treated as a string, the CREATE TABLE command will use a VARCHAR(255) which is too large for a MYSQL string index if using collation of utf8mb4_general_ci...

How should I represent the array field in the json file?

Hi, my MongoDB Collection is returning an object instead of a number or string, I have changed the code: ``` DATETIME: { type: 'DATETIME', convert: val => { if (typeof...

Bumps [mongodb](https://github.com/mongodb/node-mongodb-native) from 2.2.36 to 3.1.13. Commits c6f417e chore(release): 3.1.13 210c71d fix(db_ops): ensure we async resolve errors in createCollection 5ad9fa9 fix(changeStream): properly handle changeStream event mid-close (#1902) e806be4 fix(bulk): honor...

dependencies

``` { "src": "mongodb://localhost:27017/logs", "dist": "mysql://root:password@localhost:3306/admin", "collections": { "audit-logs": { "_id": "string", "message": "string", "createdAt": "string", "updatedAt": "DATE" }, "error-logs": { "_id": "string", "createdAt": "DATETIME", "message": "string", "updatedAt": "DATETIME" }...

Thanks for this great work!! I'm getting this error, has anyone seen it? ` name: 'MongoError', message: 'ns field has bson.D value that is not string or valid MongoDb RegEx:...

What would be the best way to add a dynamic sync, i.e. 1. automatically detect new, unsynced collections in mongo db 2. add all fields of a collection without having...

MySQL supports the JSON type since 5.7.8 which is a nice way to store and work with nested documents.