Dataset Viewer
Auto-converted to Parquet Duplicate
image_url
stringlengths
113
131
fancy_title
stringlengths
8
396
views
int64
73
422k
title
stringlengths
8
254
created_at
stringlengths
24
24
discussion
list
tags
sequence
https://www.mongodb.com/…1_2_1024x567.png
Error registering user MongooseError: Operation `users.findOne()` buffering timed out after 10000ms at Timeout
1,129
Error registering user MongooseError: Operation `users.findOne()` buffering timed out after 10000ms at Timeout
2023-08-20T08:08:18.026Z
[ { "code": "const express = require(\"express\");\nconst bodyParser = require(\"body-parser\");\nconst crypto = require(\"crypto\");\nconst nodemailer = require(\"nodemailer\");\n\nconst app = express();\nconst port = 8000;\nconst cors = require(\"cors\");\napp.use(cors());\n\napp.use(bodyParser.urlencoded({ ext...
[ "node-js", "mongoose-odm" ]
null
Reading “normal” JSON with pymongo from a collection
104
Reading "normal" JSON with pymongo from a collection
2023-11-10T10:46:43.535Z
[ { "code": "my_cursor = my_collection.find_one()\nprint (json.dumps(my_cursor))\nTypeError: Object of type datetime is not JSON serializable\nl_cursor = json.loads(bson.json_util.dumps(my_cursor))\nprint (json.dumps(l_cursor, indent=2))\n\"date\": { \"$date\": \"2019-01-20T05:00:00Z\"}\n\"key\": \"value\"\"key\"...
[ "python" ]
null
MongoDB Tools and Rocky Linux
114
MongoDB Tools and Rocky Linux
2023-11-09T04:37:58.121Z
[ { "code": "", "text": "Hello,I just installed ops manager 6 and deployed a new mongodb instance running in a Rocky Linux 9 distro. But my deployment never finishes. The error log show the following issue:Error loading desired cluster configs : [01:16:29.245] Error retrieving cluster config from ‘http://:808...
[ "ops-manager" ]
null
C#, GUID and MongoDB
504
C#, GUID and MongoDB
2023-07-29T22:03:33.987Z
[ { "code": "BsonSerializer.RegisterSerializer(new GuidSerializer(GuidRepresentation.Standard));return await (await _collection.FindAsync(x => x.id == id)).FirstOrDefaultAsync();BsonDefaults.GuidRepresentation = GuidRepresentation.Standard;", "text": "Supposedly this topic was beaten to death but no.\nHave th...
[ "dot-net" ]
null
New relic integration for mongodb atlas metrics volume estimate
164
New relic integration for mongodb atlas metrics volume estimate
2023-11-03T13:50:03.215Z
[ { "code": "", "text": "Hello,We are trying to setup mongodb atlas monitoring integration provided through new relic and want to understand the volume of metrics being collected and feed to new relic. This will help us understand the potential cost from new relic as they charge based on the amount of data be...
[]
null
How to secure access to Mongo DB Atlas
75
How to secure access to Mongo DB Atlas
2023-11-10T08:00:53.888Z
[ { "code": "", "text": "I want to use Mongo Atlas as my DB on my application, but I am facing an issue:I am using a Cloudflare Proxy. So anytime there is a new request to my website, the IP changes. So, how can I secure the access to my DB without having a unique IP address to access from?I’ve tried to add t...
[ "node-js" ]
null
AWS SDK v3 SQS SendMessage
786
AWS SDK v3 SQS SendMessage
2023-07-29T02:53:11.891Z
[ { "code": "", "text": "Hello,Has anyone been successful is sending a message to AWS SQS using the JavaScript SDK v3? This is inside of an Atlas function.It simply will not work for me with a fifo queue.The same function has no issues interacting with S3.The error when trying to send an SQS message is that d...
[]
null
Aggregate $match _id $eq $toObjectId not working
24,789
Aggregate $match _id $eq $toObjectId not working
2022-02-06T16:10:18.497Z
[ { "code": "db.getCollection('dlsComponents').aggregate([\n { $match: { library: 'Library1', collection: 'Collection1', media: 'Images', object: 'Image3' } }\n ])\n{ _id: ObjectId(\"61fc458b46d7874a3a97ef79\"),\n library: 'Library1',\n collection: 'Collection1',\n media: 'Images',\n object: 'Image3',\n inf...
[ "aggregation", "compass" ]
null
Realm Error No Subscription for WRITE: When doing multiple subscriptions of different type
133
Realm Error No Subscription for WRITE: When doing multiple subscriptions of different type
2023-11-07T14:26:49.413Z
[ { "code": "override fun configureTheRealm() {\n if (user != null) {\n val config = SyncConfiguration.Builder(user, setOf(EmailAccount::class, ApplicationAccount::class))\n .initialSubscriptions { sub ->\n add(\n query = sub.query<EmailAc...
[ "atlas-device-sync", "android", "kotlin" ]
null
Announcement: Intelligent Query Generation in MongoDB Compass
326
Announcement: Intelligent Query Generation in MongoDB Compass
2023-10-05T13:05:08.468Z
[ { "code": "", "text": "Last week, we announced a new, intelligent query generation experience in MongoDB Compass. With the help of AI, you can generate queries and aggregations from natural language. This feature is now available in public preview.Please be sure to download the latest version of Compass to ...
[ "aggregation", "compass" ]
null
Is it possible to correctly use the UUIDv7 format in mongodb and all his benefit today? (c# environment)
180
Is it possible to correctly use the UUIDv7 format in mongodb and all his benefit today? (c# environment)
2023-11-01T20:52:17.357Z
[ { "code": "", "text": "We are currently in a c# environment and wondering if we can implement the uuidv7 format in mongodb and also get the benefit from it so not just have the same behavior as uuidv4.There seem to be some way to do this:What would be the best way to implement this? If it’s actually possibl...
[ "dot-net" ]
null
TLS NETWORK error in mongo stateful sets
382
TLS NETWORK error in mongo stateful sets
2023-10-23T17:08:23.922Z
[ { "code": "", "text": "Hello,After configuring mongodb as StatefulSets with tls mode = requireTLS I get this NETWORK error:\n“c”:“NETWORK”, “id”:22588, “ctx”:“conn527”,“msg”:“Error receiving request from client. Ending connection from remote”,“attr”:{“error”:{“code”:141,“codeName”:“SSLHandshakeFailed”,“e...
[ "containers" ]
null
Trigger Match Expression for updatedAt
110
Trigger Match Expression for updatedAt
2023-11-09T17:56:24.238Z
[ { "code": "{\n \"$or\": [\n {\n \"operationType\": \"insert\"\n },\n {\n \"operationType\": \"update\",\n \"updateDescription.updatedFields\": {\n \"$not\": {\n \"$eq\": [\n {\n ...
[]
null
Can I validate fields in one collection against values in another?
73
Can I validate fields in one collection against values in another?
2023-11-10T05:41:58.092Z
[ { "code": "", "text": "I would like to make sure that db.CollectionX.fieldY is constrained to values in db.CollectionY. Essentially this is a schema enum, but the enum has to be drawn from another collection, not typed directly in the schema. (This would violate DRY in our application, since we also need th...
[]
https://www.mongodb.com/…_2_1024x626.jpeg
Docker replica not copy to secondary
255
Docker replica not copy to secondary
2023-10-26T09:47:04.591Z
[ { "code": "version: '3'\nservices:\n mongo1:\n hostname: mongo1\n image: mongo\n env_file: .env\n expose:\n - 27017\n environment:\n - MONGO_INITDB_DATABASE=${MONGO_INITDB_DATABASE}\n - MONGO_INITDB_ROOT_USERNAME=${MONGO_INITDB_ROOT_USERNAME}\n - MONGO_INITDB_ROOT_PASSWORD=${...
[ "compass", "mongodb-shell", "containers" ]
https://www.mongodb.com/…_2_1024x559.jpeg
Boston MongoDB User Group Kickoff
1,391
Boston MongoDB User Group Kickoff
2023-10-03T17:18:27.094Z
[ { "code": "Senior Product Manager, Developer EducationAssociate Developer Advocate, MongoDBDirector of Developer Advocacy", "text": "Screenshot 2023-10-25 1312531216×664 76.5 KB To RSVP - Please click on the “ ✓ RSVP ” link at the top of this event page if you plan to attend. The link should change to a gre...
[ "boston-mug" ]
null
Convert json commn type to mongo types &ldquo;string-id&rdquo; to UUID(&ldquo;string-id&rdquo;)
289
Convert json commn type to mongo types "string-id" to UUID("string-id")
2023-10-23T13:42:20.328Z
[ { "code": "", "text": "Hi dear friends \nI am working on a extension (js) which copies a JSON from the browser in to clipboard ready to be pasted.\nFor days now I have searched to find how to convert the id type which are string and convert them to UUID type.\ne.g:\n“id” : \" 0b2484c8-c069-4fa3-a23d-b40010a...
[]
null
After some aggregation stages, I want to filter the array within the document that matches with the conditions
116
After some aggregation stages, I want to filter the array within the document that matches with the conditions
2023-11-09T13:15:32.869Z
[ { "code": "```I have 2 collections\n\n1. external_S_P_FLAT_main_api \n2. external_S_C_FLAT_main_api\n\nThe collection has data as below.\n\n\"external_S_P_FLAT_main_api\": [\n {\n \"_id\": {\n \"$oid\": \"654c6a594d0867aef588674d\"\n },\n \"data.pricing.material\": \"TG11\",\n \"data.pricing.c...
[ "aggregation" ]
null
Realm Sync - Long Initial Download Times
1,036
Realm Sync - Long Initial Download Times
2023-05-02T19:39:08.320Z
[ { "code": "", "text": "I have a macOS app built with the Realm Swift SDK. The dataset is about 150mb and is running on an M2.When a new user runs the app for the first time, the initial download of of the database takes FOREVER. It pushes 5 minutes, even on a 1000Mbps connection. Sync operations after the i...
[ "swift" ]
null
Synonym mappings limit exceeded?
114
Synonym mappings limit exceeded?
2023-11-09T02:23:39.364Z
[ { "code": "title: {\n multi: {\n de: {\n searchAnalyzer: 'lucene.german',\n type: 'string',\n },\n en: {\n searchAnalyzer: 'lucene.english',\n type: 'string',\n },\n es: {\n searchAnalyzer: 'lucene.spanish',\n type: 's...
[]
null
Emmanuel Katto African Introduction
109
Emmanuel Katto African Introduction
2023-11-08T07:11:53.358Z
[ { "code": "", "text": "Heya, I’m Emmanuel Katto, African Minerals and Mining Engineer expert from Uganda. I like to travel, do adventure sports, and try new cuisines when I’m not working. I find technology very intriguing and would love to share ideas to make this globe a better place to live. I am new to t...
[]
null
Create a new user based on email only?
157
Create a new user based on email only?
2023-11-04T13:48:53.402Z
[ { "code": "", "text": "I’m just starting to experiment with RealmCpp and Atlas Sync.I’ve verified everything works great with anonymous users.Now I want to be able to create a new user using their email as their ID. I don’t want to store a password for them. How would I go about this?It looks I could use Cu...
[]
https://www.mongodb.com/…_2_1024x576.jpeg
Los Angeles MongoDB User Group (LA:MUG)
877
Los Angeles MongoDB User Group (LA:MUG)
2023-10-11T22:32:55.133Z
[ { "code": "Solution Architect", "text": "LA_MUG1920×1080 161 KBThe LA MUG will host regular meetings to bring the MongoDB community together. It fosters sharing knowledge and meeting people who use and love MongoDB. Meetups will include interesting talks, networking, and discussions with and our community.T...
[ "losangeles-mug" ]
null
db.colectionName1.aggregate([ { $match: { &ldquo;filed1&rdquo;: { $in: [&ldquo;x&rdquo;, &ldquo;y&rdquo;] }, } }, { $lookup: { from: &ldquo;colectionName2&rdquo;, localField: &ldquo;_id&rdquo;, foreignField: &ldquo;xy&rdquo;, as: &ldquo;matchedDate&rdquo; } }, { $match: {
88
db.colectionName1.aggregate([ { $match: { "filed1": { $in: ["x", "y"] }, } }, { $lookup: { from: "colectionName2", localField: "_id", foreignField: "xy", as: "matchedDate" } }, { $match: {
2023-11-09T08:06:07.916Z
[ { "code": "", "text": "help to get optimized query , taking long time, any alternate methods", "username": "P.S_Shilpa" }, { "code": "", "text": "Please update the title of your post to something more comprehensible.Please provide the complete pipeline.Please provide the explain plan of your...
[ "aggregation" ]
null
Using setDifference with mutiple collections
118
Using setDifference with mutiple collections
2023-11-08T17:03:32.454Z
[ { "code": "", "text": "I am working with backups. At the moment I have two collections: A and A2.\ndocuments in both locations look like this\n{_id:ObjectId(“6456456456”), “name”:“a_unique_name”}The documents in A don’t share the same _id, they only share the “name” attribute.So my question is how can I use...
[ "aggregation" ]
null
Node.JS CSFLE-enabled Enterprise database is not encrypting data (clear text visible in Compass)
89
Node.JS CSFLE-enabled Enterprise database is not encrypting data (clear text visible in Compass)
2023-11-09T17:37:52.287Z
[ { "code": "mongocryptdmongoshmongooseMongoDB Enterprise 7.0.2\n\"mongodb\": \"^6.2.0\",\n\"mongodb-client-encryption\": \"^6.0.0\",\n\"mongoose\": \"^8.0.0\",\ninitializeEncryptionautoEncryptionexport default class Encryption implements IEncryption {\n // ... There are several private and public variables not ...
[ "mongoose-odm", "compass", "mongodb-shell", "field-encryption", "schema-validation" ]
null
Index is not used on OR(NOT Exists(col), col is NULL)
83
Index is not used on OR(NOT Exists(col), col is NULL)
2023-11-09T15:45:39.469Z
[ { "code": "\"aggregate\" (\"pipeline\": [{\"$match\": {\"$or\": [{\"Review\": {\"$exists\": false}},{\"Review\": null}]}},{ \"$group\": {\"_id\": {},\"COUNT\": {\"$count\": {}}}}", "text": "Hi, I have a collection with an index on { Review: 1}, and am trying to count the documents without a Review property ...
[ "aggregation", "indexes" ]
null
Adding search by user email functionality in app services app users
331
Adding search by user email functionality in app services app users
2023-06-23T09:26:11.937Z
[ { "code": "", "text": "Howdy folks,I’m currently using app service auth for my app, which was fine, but thankfully has no gained a bit of traction and I have almost 3k users on it. The issue I’m facing now is that a new user is unable to sign in and i’m unable to see their account to see if they are verifie...
[ "queries" ]
null
EF Core Migrations
109
EF Core Migrations
2023-11-08T22:09:22.029Z
[ { "code": "", "text": "Hello,I realize the Mongo EF Core provider preview was recently released. Does anyone know if EF Core Migrations are supported?", "username": "Herb_Ramos" }, { "code": "", "text": "Hi, @Herb_Ramos,Thank you for your interest in the first public preview of our EF Core ...
[ "dot-net" ]
null
Privacy of flexible sync
105
Privacy of flexible sync
2023-11-09T03:13:41.456Z
[ { "code": "", "text": "Hi,Using flexible sync- isn’t that a little weird that users have theoretical access to the entire database- unless filtered by a query on their device? I mean, it’s got advantages I guess for sharing data, but it sounds a bit hack-prone doesn’t it?\nI mean, the entire database is acc...
[]
null
Permission issues migrating partition-based sync to flexible sync
230
Permission issues migrating partition-based sync to flexible sync
2023-11-02T11:36:34.002Z
[ { "code": "_partitionKeyuser=user.data.externalUserIduser=fbdc4c82-3c18-4bee-9064-445b75f93cfeuserMatadata=user.data.externalUserIduserMetadata=fbdc4c82-3c18-4bee-9064-445b75f93cfecanReadPartitioncanWritePartitionexports = function (partition) {\n console.log(`Checking if can sync a write for partition = ${p...
[ "flexible-sync" ]
null
How to make $geoIntersects work for the “legacy coordinates pair”
96
How to make $geoIntersects work for the “legacy coordinates pair”
2023-11-08T22:05:35.732Z
[ { "code": "$geoIntersectsdb.neighborhoods.findOne({ geometry: { $geoIntersects: { $geometry: { type: \"Point\", coordinates: [ -73.93414657, 40.82302903 ] } } } })null", "text": "How to make $geoIntersects work for the “legacy coordinates pair”?it is simple to find the user’s current neighborhood with $geoI...
[ "queries" ]
null
Objective-C Subscription predicate on ObjectId field
104
Objective-C Subscription predicate on ObjectId field
2023-11-08T22:07:15.696Z
[ { "code": "RLMRealmConfiguration *configuration = [self.realmApp.currentUser flexibleSyncConfigurationWithInitialSubscriptions:^(RLMSyncSubscriptionSet * _Nonnull subscriptions) {[subscriptions addSubscriptionWithClassName:@\"DealGeneratorSet\" where:@\"owner_id = %@\", self.realmApp.currentUser.identifier];} r...
[ "objective-c" ]
https://www.mongodb.com/…_2_1024x576.jpeg
Jakarta MUG x DKatalis : Leveraging MongoDB in Modern Enterprises
494
Jakarta MUG x DKatalis : Leveraging MongoDB in Modern Enterprises
2023-11-02T04:43:27.564Z
[ { "code": "Senior Cloud Solution ConsultantTechnical LeadFull Stack EngineerData Warehouse Engineer", "text": "WhatsApp Image 2023-11-02 at 12.08.461600×900 109 KBWe are thrilled to announce our offline community event collaboration with Dkatalis in Jakarta. Are you ready to dive into the world of MongoDB a...
[ "jakarta-mug" ]
https://www.mongodb.com/…b_2_1024x252.png
Issue related mongodb parse error
110
Issue related mongodb parse error
2023-11-08T11:10:37.554Z
[ { "code": "", "text": "MongoParseError: Invalid scheme, expected connection string to start with “mongodb://” or “mongodb+srv://”\nimage1112×274 12.2 KB", "username": "Aum_Shukla" }, { "code": "", "text": "Show your connect string from the env file\nThere could be some syntax error", "us...
[ "database-tools" ]
null
Conditionnal Formating not working anymore dfor groups (in Table)
217
Conditionnal Formating not working anymore dfor groups (in Table)
2023-11-03T15:54:22.184Z
[ { "code": "", "text": "Hello,Since a few days the conditionnal formating in table graph is not working anymore when based on comparison operator based on groups fields (example #toto > 0, background of text in red).Is there a bug or did the functionnality change ?Thank you\nSylvain", "username": "Sylvai...
[]
null
Ignore capitalization and diacritics (e.g. localeCompare in JS)
208
Ignore capitalization and diacritics (e.g. localeCompare in JS)
2023-10-18T13:55:54.308Z
[ { "code": "[\n\t\"Hello World\",\n\t\"hello world\",\n\t\"HELLO WORLD\",\n\t\"héllö wörld\"\n]\nthis.collection.findOne({ names: name })\n", "text": "Hi. I’m looking for Mongo functionality to search documents based on a string that will match any variation of that string ignoring capitalization and diacrit...
[ "node-js" ]
null
MongoDB Analyzer is not working
1,575
MongoDB Analyzer is not working
2022-08-09T12:45:42.824Z
[ { "code": "", "text": "I am really interested in using MongoDB Analyzer as it is indeed very hard to figure out how to use C# driver.\nSo I installed NugetPackage in both VS2019 ans 2022 Enterprise.\nAnalyser is listed in references but it does not work. There simply aren’t any three grey dots under any exp...
[ "dot-net" ]
null
SSL cert for free tier
182
SSL cert for free tier
2023-11-06T09:03:53.660Z
[ { "code": "", "text": "I have a free, shared tier of a MongoDB Atlas version 6.0.11 cluster an SSL is enabled, so how do I get the SSL cert required to connect to it? the simple connection string is not enough", "username": "Brennan_Ow" }, { "code": "", "text": "Hi @Brennan_Ow,What is the co...
[ "python" ]
null
Mongo create document call creating 2 different documents with a legacy schema version and another with new schema
76
Mongo create document call creating 2 different documents with a legacy schema version and another with new schema
2023-11-08T21:40:56.311Z
[ { "code": " @Prop({\n type: String,\n required: true,\n default: new Date().toISOString(),\n })\n dateAdded: string;\n @Prop({\n type: Date,\n default: new Date(),\n })\n dateAdded: Date;\n {\n \"_id\": {\n \"$oid\": \"654bfb0fd1c75afd0193f1d6\"\n ...
[]
null
Objective-C RLMArray property error
77
Objective-C RLMArray property error
2023-11-08T23:00:05.360Z
[ { "code": "Terminating app due to uncaught exception 'RLMException', reason: 'Property 'boards' is of type 'RLMArray<Deal_boards>' which is not a supported RLMArray object type. RLMArray can only contain instances of RLMObject subclasses. See https://www.mongodb.com/docs/realm/sdk/swift/fundamentals/relationshi...
[ "swift" ]
null
Problem installing MongoDB 6.0 on Amazon Linux 2
5,791
Problem installing MongoDB 6.0 on Amazon Linux 2
2022-10-06T08:01:53.956Z
[ { "code": "", "text": "I’m also having the same issue as Install mongodb-org 5.0 on Amazon Linux 2 aarch64 architecture. how to resolve", "username": "Simeon_Palla" }, { "code": "/proc/cpuinfox86_64aarch64", "text": "Welcome to the MongoDB Community @Simeon_Palla!Please provide more details ...
[]
null
DBA Practice Questions and Exam Objectives
113
DBA Practice Questions and Exam Objectives
2023-11-07T11:55:14.821Z
[ { "code": "", "text": "Hello,I am preparing for my DBA associate exam and there are a couple of questions I have regarding the syllabus and practice questions. I have already passed my developer exam.There is a question in the practice exam about an error in shard keys (more specifically, question 9). In th...
[]
https://www.mongodb.com/…4_2_1024x512.png
$near 2d legacy distance measure
1,537
$near 2d legacy distance measure
2020-03-22T09:17:12.758Z
[ { "code": "", "text": "In the below link, I found that $near 2d legacy use radians as distance measure.{ $near: [ , ], $maxDistance: }However, when I tested queries in the mongo shell, I got confused because it seems like $near 2d legacy use degrees as distance measure.db.restaurants.find({ ‘address.coord...
[ "queries" ]
https://www.mongodb.com/…4_2_1024x512.png
Disable autoIndexing on Mongo serverless instance
94
Disable autoIndexing on Mongo serverless instance
2023-11-08T11:43:06.761Z
[ { "code": "", "text": "I want to enable/disable autoindexing for my Serverless Mongo instance using api call or terraform config.I cound not find nether of them in documentation.From internet site of my mongo cluster I went to inspect window and I got api call which is called from mongo internet site to up...
[ "serverless", "api" ]
null
Getting this error - MongoNotConnectedError: Client must be connected before running operations
8,763
Getting this error - MongoNotConnectedError: Client must be connected before running operations
2023-03-28T19:55:40.589Z
[ { "code": "// Code to require the parts needed for seedsindex to work correctly\nconst mongoose = require('mongoose');\nconst MusicProduct = require('../database_models/musicproduct');\nconst BookProduct = require('../database_models/bookproduct');\n\nconst musicAlbums = require('./musicseeds');\nconst bookNove...
[ "node-js", "mongoose-odm" ]
null
I accidentally deleted cluster0, please restore cluster0
125
I accidentally deleted cluster0, please restore cluster0
2023-11-06T14:52:24.554Z
[ { "code": "", "text": "I accidentally deleted cluster0, please restore cluster0", "username": "Api_Sport" }, { "code": "", "text": "I am pretty sure that it cannot be done.You could create another one with the same name. Hopefully, you have a backup of your important data.", "username":...
[]
null
Unable to build Go app with cse tag
121
Unable to build Go app with cse tag
2023-11-07T16:52:01.268Z
[ { "code": "csebrew info libmongocrypt\n==> mongodb/brew/libmongocrypt: stable 1.8.2, HEAD\nC library for Client Side Encryption\nhttps://github.com/mongodb/libmongocrypt\n/opt/homebrew/Cellar/libmongocrypt/1.8.2 (44 files, 9.4MB) *\n Built from source on 2023-11-07 at 11:28:05\nFrom: https://github.com/mongodb...
[ "field-encryption" ]
null
Nested array operation for $all does not seem to work in mongodb
742
Nested array operation for $all does not seem to work in mongodb
2023-06-08T17:33:08.529Z
[ { "code": "$all[\n {\n \"words\": [ \"Hello\", \"World\", \"!\"],\n \"wordArrays\": [\n [\"Hello\", \"World\", \"!\"],\n [\"The\", \"Sun\", \"Shines\"]\n ]\n }\n]\n{words: {$all: [\"Hello\", \"World\"]}}{words: {$all: [\"Hello\", \"I do not exist\"]}}{\"wordArrays.0\": {$all: [\"Hello\", \"...
[ "aggregation", "queries", "dot-net" ]
null
Heartbeat topic configuration for Kafka Source Connector
3,403
Heartbeat topic configuration for Kafka Source Connector
2021-09-10T11:54:21.879Z
[ { "code": "", "text": "Hi.We are considering using heartbeat mechanism to prevent the loss of the resume token when reading changes from a collection.Our current scenario involves 6 collections being polled, each by one separate connector.So far, we haven’t found any documentation about the heartbeat topic ...
[ "kafka-connector" ]
End of preview. Expand in Data Studio

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

This is a full view of the data from the MongoDB community (exclude all posts without any responses)

Downloads last month
5