Sahil Kang
Sahil Kang
Set `client.software.name` and `client.software.version` as described in the [librdkafka language binding recommendations](https://github.com/edenhill/librdkafka/wiki/Language-bindings-development#reporting-client-software-name-and-version-to-broker).
`librdkafka` supports Windows so it's a shame that `cl-rdkafka` does not. Right now, the only thing preventing `cl-rdkafka` from running on Windows is the posix stuff in [event-io](https://github.com/SahilKang/cl-rdkafka/tree/master/src/high-level/event-io).
Something like this signals a `partition-error` from the [producer's send method](https://github.com/SahilKang/cl-rdkafka/blob/9119880aa85382ce815d7ee0dd404f29ec4b6136/src/high-level/producer.lisp#L210): ```lisp (ql:quickload '(cl-rdkafka babel)) (let ((producer (make-instance 'kf:producer :conf '("bootstrap.servers" "127.0.0.1:9092") :serde #'babel:string-to-octets))) (loop repeat 500000 do (kf:send producer...
[AVRO-2773](https://issues.apache.org/jira/browse/AVRO-2773) ## What is the purpose of the change These two commits add decimal logical schema support for C: the first commit adds the base layer and the second commit...
## What is the purpose of the change This integrates https://github.com/SahilKang/cl-avro ## Verifying this change This change adds a new implementation, with its own tests. See the readme in this...