ioredis icon indicating copy to clipboard operation
ioredis copied to clipboard

Utilize `retryStrategy` for connection error

Open nodegin opened this issue 6 months ago • 1 comments

I am hosting my Redis on cloud service which has DDoS prevent mechanism,

Currently I'm using BullMQ as the queue service but it emit tons of request causing my provider throttle my Redis connection.

So I'm getting the following error:

ReplyError: Too many requests. Please try again later.
    at parseError (/Users/user/Desktop/project/node_modules/redis-parser/lib/parser.js:179:12)
    at parseType (/Users/user/Desktop/project/node_modules/redis-parser/lib/parser.js:302:14) {
  command: {
    name: 'auth',
    args: [ 'redis-host', 'password' ]
  }
}

I have added the following to my ioredis connection params:

  reconnectOnError: () => 2 as const,
  retryStrategy(times) {
    const delay = Math.min(times * 50, 2000);
    return delay;
  },

which should fixes the issue, but currently ioredis doesn't utilize retryStrategy for connection event.

So this PR is to provide support for that

nodegin avatar Feb 09 '24 07:02 nodegin