Tanguy Le Barzic
Tanguy Le Barzic
Hi, I've started working on this, the result can be checked at https://github.com/tanguylebarzic/node_redis An example of use: ``` javascript var RedisMetaClient = require("./../node_redis/sentinel").RedisMetaClient; var sentinels = [ {host: "127.0.0.1", port:...
newleafdigital: sorry for the late reply. indeed, I noticed it was not clean to implement this the way I did (too much logic on the client). I've changed it to...
Hi, I missed a lot of the discussions around this... Internally, we've switched to an approach very close to the sentinel clients guidelines (http://redis.io/topics/sentinel-clients), that makes it simpler IMO. It's...
@aovestdipaperino While produce requests can only contain a single RecordBatch per partition, see [here](https://github.com/apache/kafka/blob/24b6fc06b2cb36af5db0184379a920b6d7d7b320/clients/src/main/java/org/apache/kafka/common/requests/ProduceRequest.java#L228-L230), fetch requests can definitely contain multiple batches per partition, and shouldn't be discarded (you can see...