James Beckett
James Beckett
Is this because the sorting is not thread-safe? Wherever `dump_sort` is called, there's a mutex lock/unlock on `lopt.mx_sort` around it, but the same locking is not done for e.g. `dump_add_packet`...
Perhaps wrap the `server_forever` call in a `Thread`, something like ``` server = osc_server.ThreadingOSCUDPServer(("0.0.0.0", 8080), dispatcher) thread = Thread(target=server.serve_forever, daemon=True).start() ``` Use a daemon thread type because there doesn't seem...
Another use case: we want to migrate from one port to another, but can't change all exporters and the Prometheus scrape target list simultaneously; running so as to listen on...
> I vote against a line-based "patch file format" for Yamldiff. > > Instead of `23,24c23,24` you can use a "patch file format" that uses a YAMP Pointer That's exactly...
_[ ah - wrote this before seeing your update above - I'll check out the commit, tyvm ]_ Yes, I'm interested, if you have time to spare on it. I...
I think it's fair to say there's some ambiguity of naming in the Kafka documentation, and maybe this symmetry is something they should consider, but diverging from the documented behaviour...
I'd agree with this, [message.max.bytes](https://kafka.apache.org/documentation/#brokerconfigs_message.max.bytes) is listed in the Kafka documentation only as a **broker** property, not producer config. The producer property relating to limiting the request is [max.request.size](https://kafka.apache.org/documentation/#producerconfigs_max.request.size). (It's...
This has given me some interesting times today. We use Kafka to transport systems metrics and [consume them with Telegraf](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/kafka_consumer) into InfluxDB; We changed one of our metrics producers to...
@dnwe sorry, missed seeing your update; thanks for the pointer, we'll take note in our upgrade plans. I had to do a bit of code and update spelunking to find...
Just bitten by this as well - in our case where a pipeline had a syntax error and repeatedly reloads, logging a long error line until /var/log is full. The...