skip to Main Content

MongoDB Atlas as an AWS DMS source endpoint

I'm trying to replicate data from MongoDB Atlas into an S3 data lake (not mongo's data lake) using AWS Data Migration Services, but I'm getting this error: Failed to establish a connection to MongoDB using the following parameters: 'mongodb://mongodb+srv://[theUsername]:[thePassword]@[theServer].mongodb.net:27017/?retryWrites=false' I'm…

VIEW QUESTION

MongoDB lookup (join) with field in double nested array

With a MongoDB collection name department with the following structure: { "_id":99, "name":"Erick Kalewe", "faculty":"Zazio", "lecturers":[ { "lecturerID":31, "name":"Granny Kinton", "email":"[email protected]", "imparts":[ { "groupID":70, "codCourse":99 } ] }, { "lecturerID":36, "name":"Michale Dahmel", "email":"[email protected]", "imparts":[ { "groupID":100, "codCourse":60 } ] }…

VIEW QUESTION

Mongodb – C# Mongo Filter Builder – nested array of objects – filter any docs where value of a specific property matches with one of the values in an array

I have a mongo collection (of <BsonDocument>) who could look like this: { "someProperty1": "someValue1", "users": [ { "name": "[email protected]", "displayName" : "Sample User" } { "name": "[email protected]", "displayName" : "Another User" } ] }, "someProperty2": "someValue2", "users": [ {…

VIEW QUESTION
Back To Top
Search