Tim Perkins
Tim Perkins
I believe that this is already supported via one of the OpenTelemetry gems: https://github.com/open-telemetry/opentelemetry-ruby/tree/4a0d233c663d7ae1c02ed649a2958ebf47b63cb1/instrumentation/ruby_kafka
I just figured out how to get this to work. The credentials from `~/.bundle/config` don't get used. Maybe that is due to bundler not passing them along to the mirror...
With the rebalancing during a rolling restart, could something like this be the issue: https://github.com/edenhill/librdkafka/issues/2782 I have not run the rdkafka based Racecar v2, but from looking at the source...
Does the `extends` method do what you're looking for: https://github.com/salsify/avro-builder#extends This adds the fields from another record. And the source record can be marked as abstract if you don't want...
The terminology used may be confusing but I think it does what you are looking for. It is adding the fields from the record referenced in the `extends` call, to...
Some prototyping on a solution for this was done here: https://github.com/salsify/avromatic/pull/19 It's likely that in a final form the configuration for this will change. Ideally, the renaming or mapping would...
Hi @greyblake, Currently the gem is opinionated about this. If null is a member type within a union then usually people want it as the default, so I think this...
The convention we were using when we developed this registry was to register schemas with the name of the Avro schema, and Avro schema names cannot begin with digits. I...
> Is it supported now and we just don't realize it? I don't think the app callbacks for actors are in gRPC yet: https://docs.dapr.io/reference/api/actors_api/#dapr-calling-to-user-service-code
This would need some additional changes to handle incremental. It would need to look for a `synchronize` action on a PR and trigger an incremental review (only available by arg...