-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Confluent Schema Registry in Kafka Receiver #28745
Comments
Pinging code owners for receiver/kafka: @pavolloffay @MovieStoreGuy. See Adding Labels via Comments if you do not have permissions to add labels yourself. |
Hello @muaft, I apologize for the delayed response here, but I believe this is a valid request. It should be pretty simple to implement this. We'd want to add a new option for the |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
This issue has been closed as inactive because it has been stale for 120 days with no activity. |
Is your feature request related to a problem? Please describe.
We are using the Kafka Receiver to read metrics data from a Confluent Cloud Kafka topic. The topic is schema validated and integrated with Confluent Cloud Schema Registry. The Kafka topic is using the official Protobuf metrics schema. However, I get the error
illegal tag 0 (wire type 0)
when I start OTEL collector:It seems the error is encountered due to extra bytes appended by Confluent Schema Registry to the beginning of the Protobuf message as describe here. OTEL collector doesn't expect the extra bytes and, therefore, throws the error
Describe the solution you'd like
Add official support for Confluent Schema Registry in Kafka Receiver.
Describe alternatives you've considered
Currently, we are reading data from the source topic, discard the extra 6 bytes at the beginning, and write remaining bytes to a new topic. OTEL collector can then successfully read from the new topic, but this is temporary workaround.
Additional context
Here is the OTEL config
The text was updated successfully, but these errors were encountered: