ERR max concurrent connections exceeded
#
SymptomNew clients can not connect to the database throwing an exception similar to:
"message" : "[ioredis] Unhandled error event: ReplyError: ERR max concurrent connections exceeded\r at Object.onceWrapper (events.js:286:20)\r at Socket.emit (events.js:203:15)\r at Socket.EventEmitter.emit (domain.js:448:20)\r at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1093:10)\n"
#
DiagnosisYou have reached the concurrent connection limit.
#
Solution-1You need to manage connections more efficiently. If you are using serverless functions, you can create the Redis client inside the function and close the connection when you are done with the database as below.
note
This solution may have a latency overhead (about 4 ms). See the blog post for more.
exports.handler = async (event) => { const client = new Redis(process.env.REDIS_URL); /* do stuff with redis */ await client.quit(); /* do other stuff */ return { response: "response" };};
#
Solution-2You can upgrade your database to Enterprise as it has higher limits. Or you can contact support@upstash.com about the options with higher connection limits.
info
See the blog post about the database connections in serverless functions.