mikehank96

Results 5 comments of mikehank96

Additional info: Factory creation: ``` var lockFactory = RedLockFactory.Create(new List { new RedLockEndPoint { EndPoint = new DnsEndPoint(redisConfigurationEndpoint, port), Password = secret, Ssl = true, RedisKeyFormat = "MyKey_{0}", } });...

Redis Cluster. We're using terraform and it's all created in one `aws_elasticache_replication_group` resource. As for the configuration I'm using the configuration endpoint which I figured that handles all connections.

So I tried bosting the number of lock requests in my tests from 500 to 700 and now I get the NoQuorum errors from the single node redis instance as...

After some more experimentation I realized if I increase the wait time for the lock creation the errors disappear. Is it possible for NoQuorum statuses to be returned for timeouts?

What's the difference between retries configured by `RedLockRetryConfiguration` and retries configured by `CreateLockAsync`? When setting RedLockRetryConfiguration instead of the CreateLockAsync ones the NoQuorum errors seemed to stop. Looking at the...