You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the dump() function in a nodejs script.
I got this warning on stderr:
node_redis: Using .end() without the flush parameter is deprecated and throws from v.3.0.0 on.
Please check the doku (https://github.com/NodeRedis/node_redis) and explictly use flush.
Also it seems each call to dump() does not close the connection.
I'm therefore ending up with a lot of connections opened after many calls to dump() :-(
To the point I'm exhausting redis connections:
Error: Redis connection to 171.40.11.07:6379 failed - connect ETIMEDOUT 171.40.11.07:6379
at Object.exports._errnoException (util.js:837:11)
at exports._exceptionWithHostPort (util.js:860:20)
at TCPConnectWrap.afterConnect as oncomplete
(this depends on your redis and linux tcp settings)
The text was updated successfully, but these errors were encountered:
I'm using the
dump()
function in a nodejs script.I got this warning on stderr:
Also it seems each call to dump() does not close the connection.
I'm therefore ending up with a lot of connections opened after many calls to
dump()
:-(To the point I'm exhausting redis connections:
(this depends on your redis and linux tcp settings)
The text was updated successfully, but these errors were encountered: