Reputation: 11711
So, I have a Java app on Heroku that uses RedisCloud addon. The addon clearly states that the free version comes with a maximum of 30 Connections:
The problem is that Im getting this error:
ERR max number of clients reached
So the first thing I did obviously was check the RedisCloud monitor and to my surprise, It establishes a limit of 10 Connections:
The question: Why are we getting a connection limit of 10 on RedisCloud when the limit on the Heroku addon says it should be 30?
Upvotes: 2
Views: 723
Reputation: 50062
It appears that your add-on is using an old version of the plan from before we launched our Bigger and Imporved XXXL Free plan earlier this year.
The easiest way to resolve that is to use the Heroku toolkit belt and run the command:
heroku addons:upgrade rediscloud:30 -a <your app's name>
Upvotes: 3