I am developing a project with NextJS and store my data with MongoDB and have issues with MongoDB connections.
The connection logic is simple:
- User connects to a page
- Page contacts my API to get page info
- My API using middleware gets data from MongoDB
According to the logic, I have only one user connects to mongoDB (system user). But the problem is I have a lot of connections open in MongoDB (see picture). It seems my middleware doesn't close the connection. Is this a problem with my code or it's MongoDB logic?
P.S. When I shut down my local project MongoDB connections count drops to 0.
Here is a sample of my middleware where the system connects MongoDB.
import { MongoClient } from 'mongodb';
import nextConnect from 'next-connect';
const client = new MongoClient(process.env.mongoApiUrl, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
async function database(req, res, next) {
if (!client.isConnected()) await client.connect();
req.dbClient = client;
req.db = client.db('test');
return next();
}
const middleware = nextConnect();
middleware.use(database);
export default middleware;
According to my code, If we have an open connection - to use open connection. I took the code above from this mongodb tutorial
What should I do?
The problem is that API routes are
serverless
meaning that they are created when needed and destroyed when the underlying serverless hosting structure deems appropriate. So you need to find a way not to create a connection to a database for every request.You can see the complete example in the Next.js examples repository