skip to Main Content

Mongodb – Mongo: Why totalDocExamined is greater than zero

Refer to this document explain.executionStats.totalKeysExamined Number of index entries scanned. totalKeysExamined corresponds to the nscanned field returned by cursor.explain() in earlier versions of MongoDB. explain.executionStats.totalDocsExamined Number of documents examined during query execution. Common query execution stages that examine documents are…

VIEW QUESTION

Mongodb – Intermittent Unhandled Promise Rejection – MongoServerSelectionError: connection timed out

I am getting below error randomly. Here is my stack App deployed on vercel is talking to Atlas mongodb (free tier) Nodejs - 18.16.1 nextjs 13 mongodb package version - 5.8.1 ERROR Unhandled Promise Rejection {"errorType":"Runtime.UnhandledPromiseRejection","errorMessage":"MongoServerSelectionError: connection timed out","reason":{"errorType":"MongoServerSelectionError","errorMessage":"connection timed…

VIEW QUESTION
Back To Top
Search