Upgrading my Vercel-hosted app to the new MongoDB driver (4.0) has introduced sporadic errors like this:
MongoServerError: Cursor session id ([session hash])is not the same as the operation context's session id (none)
I have fiddled with the MongoDB caching and connection script as recommended by Vercel/Next https://github.com/vercel/next.js/blob/canary/examples/with-mongodb/lib/mongodb.js but the issue continues.
I'm not clear enough on what the changes are in the new driver that might be introducing this, but it's fixed by rolling back to 3.6.10.
The issue seems to happen when a request is made more than 30 seconds after an identical query from the same Node.js function.
My db connection code:
import { MongoClient } from "mongodb";
let uri = process.env.MONGODB_URI;
let dbName = process.env.MONGODB_DB;
let cached = global.mongo;
if (!cached) {
cached = global.mongo = { conn: null, promise: null };
}
export async function connectToDatabase() {
if (cached.conn) {
return cached.conn;
}
if (!cached.promise) {
const opts = {
useNewUrlParser: true,
useUnifiedTopology: true,
};
cached.promise = MongoClient.connect(uri, opts).then((client) => {
return {
client,
db: client.db(dbName),
};
});
}
cached.conn = await cached.promise;
return cached.conn;
}
Edit: This bug in the the v4 Node.js driver was fixed in 4.2.1