Milind L
Milind L
Hey - I repro'd this issue, but I'm not sure of the cause yet. The confluent-kafka-javascript.node is different at the start and at the end after running `npx node-pre-gyp install...
Also, since there is the pre-compiled binary now, the dockerfile can be trimmed to a great extent, something like: ```dockerfile FROM node:20-alpine COPY ./dist /app/ WORKDIR /app RUN rm -rf...
I have a fix in mind, changing the npm install script to `node-pre-gyp install --fallback-to-build --update-binary` rather than `node-pre-gyp install --fallback-to-build`, however, that will incur the download of a remote...
Closing this out - using `node-pre-gyp install --fallback-to-build --update-binary` has a big enough impact as it affects every installation, and at the moment, we're not considering just changing this particular...
The right way would be to use the latter ``` ssl.ca.pem: ${secret.kafka.ca} ssl.key.pem: ${secret.kafka.key} ssl.key.password: ${secret.kafka.passphrase} ssl.certificate.pem: ${secret.kafka.cert} ``` Additionally, this: ``` enable.ssl.certificate.verification -> this should be set to false...
It is not round robin. It is instead sent at random (if the key is not specified). If the key is specified, then a hash of the key is taken,...
Thanks for the feedback! We don't yet plan to implement the `on` stuff in the near future. Using `await` on the connect method is identical to consumer.on('ready' ...), since internally,...
Hey @SeanReece, we're generally very slow to expose any public interface because it means that we'll have to support it forever (we go as far as to deprecate something, but...
Yes, that's right, I'll change this and check other functions, too, we shouldn't be mutating arguments.
Closing with release 0.1.17-devel