Russell Owen

Results 17 comments of Russell Owen

A standard, documented API would be wonderful. One of my use cases is a unit test to check that all code is formatted with `black`. I would much rather do...

I am running macOS 11.4, XCode 12.5.1, Anaconda python 3.8.8 and a freshly installed version of meson. It is possible that I messed up installing ninja. I thought brew installed...

[kafkit](https://kafkit.lsst.io) is one option for a schema registry interface

I suggest indenting the type spec continuation 8 spaces (a double indent). That clearly distinguishes it from the description and avoids the hassle of having the indent depend on the...

In case it helps, here is my docker-compose file (zipped, since I can't upload plain yaml). I use this command to start my Kafka system: `docker-compose up -d zookeeper broker...

This appears to be https://github.com/confluentinc/confluent-kafka-dotnet/issues/701

I've just run into this with Python using confluent_kafka. @YarinLowe 's solution "manually call producer.metadata() immediately after creating the producer instance" seems to work for me, though Producer has no...

The library is asynchronous in the sense that it is compatible with asyncio. The behavior you show above is standard for a Kafka consumer. If you want to process a...

@mhowlett You were right that constructing the producer after the topic helps immensely. In my tests the initial delay is down to 0.01 seconds in that order. Thank you. (Regarding...