Mike Perham

Results 387 comments of Mike Perham
trafficstars

Kudos, I'm seeing very few errors now: 1. Sharding test errors due to missing support for database indices (the tests use db indexes as a proxy for different Redis shards)...

The Faktory Pro OSX binary available with [each release](https://github.com/contribsys/faktory/releases) can be used to test it live if necessary (or at least prove it works once manually).

Unfortunately I can't provide the Linux binary necessary for most CI environments.

`Job not found` is returned if a worker calls `FAIL ` for a job but Faktory does not have an existing reservation for that JID. That can happen if the...

@cjbottaro Faktory uses the RESP protocol. You should handle any `-ERR` response as a protocol error.

https://redis.io/topics/protocol#resp-errors

`-ERR` indicates a generic error, there can be more specific error codes which indicate specific conditions which the worker might want to respond to, one example is `-NOTUNIQUE` when pushing...

I have a 7.3 milestone targeting a summer release. 7.2.3 will be out very soon.

I'd probably go with: ```ruby class SomeJob include Sidekiq::Job include Sidekiq::Job::Iterable sidekiq_options iteration: { whatever: 123 } end ``` Unlike Rails, I dislike top-level class methods like `throttle_on` as they...

Having optimized support for a few well known types/libraries is useful but we should have generic Enumerable support too.