Robin

Results 8 comments of Robin

Absolutely! Please see below: 1: Multiple values, no columns: ``` const ExcelJS = require('exceljs'); const createWorkbook = async () => { const workbook = new ExcelJS.Workbook(); workbook.calcProperties.fullCalcOnLoad = true; const...

Are you all good with this PR or do you need something else?

I reported the missing kafka_jaas.conf issue separately in #41457

Hi @mwood77! I managed to get it working without ZK using SASL_SSL for everything except the CONTROLLER listener which is SSL only. This is using PLAIN for the SASL mechanism...

OK it *looks* like SCRAM might not be supported in KRaft yet. I created a PR with which I was able to get this working: #42416.

I've got ACLs up and running as well now. The only thing missing is SASL with SCRAM for the Controller listener (I managed to get it working for SASL PLAIN)....

Hi @migruiz4! Thank you for that. If I change the SASL mechanism from PLAIN to SCRAM-SHA-512 I keep getting an authentication error. I tried adding some extra logging and it...

I ended up creating a docker-compose with six nodes: 3 broker, 3 controllers. SASL_SSL enabled on the brokers and controllers using SCRAM on brokers but PLAIN on the controller. Is...