Open mpalomera opened 4 years ago
More over we enable debugging, here is an example when the error happens (Split due to to comment size limit)
@timestamp | @message |
---|---|
2020-08-17 14:43:10.383 | |
2020-08-17 14:43:10.384 |
@timestamp | @message |
---|---|
2020-08-17 14:43:10.394 | |
2020-08-17 14:44:23.059 |
@timestamp | @message |
---|---|
2020-08-17 14:44:26.863 | |
2020-08-17 14:44:26.863 | |
2020-08-17 14:44:26.865 |
Same "ETIMEDOUT" happening for us on a few thousand provisioned lambdas, it seems to disconnect after about 10 minutes after being provisioned, reconnection slows down the lambda execution of about 5 seconds, so our lambdas are all stuck...
Saw this error happens randomly in lambdas also version, "ioredis": "^4.16.2" connecting to an Elasicache Redis cluster's primary node endpoint
Same issue during heroku redis addon failover. The issue happens randomly.
Same happens in our Lambda. Most of the time it works fine but time to time randomly happens connection timeout
Seeing this in our lambda that's configured in a vpc. The failure rate seems correlated to the concurrent executions...concurrency high = timeouts high. I did switch to standard node-redis and saw the same random timeouts so I'm not sure it has anything to do with ioredis, but would appreciate any report backs of anyone figuring this out.
I'm also seeing this same issue.
Same issue
Same issue here.
hey guys, I am facing the same issue in v5.2.3. Is there any workaround or suggestion to switch to an other Redis client? Thanks
I'm seeing this one too occasionally, commenting here to get notified if someone happens to find out why
Does anyone ever got a fix for this?
We are using ioredis with elastic redis cache, most of the time it works fine, however from time to time lambda functions fail with the following error:
main problem is that since this is an Uncaught Exception the lambda is terminated without calling to the retry strategy, neither to the reconnect in error. Here is our setting:
Notice that the 'error' event is called without problem however neither the reconnectOnError or the retryStrategy are called. Looks like the error occurs asynchronously in the TLS package.
Expected behavior: The exception must be catch and the reconnectOnError be called.