-
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
Kafka exporter is not able to keep up to the load being stream to OpenTelemetry collector. #35208
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
Thanks for filing this @Om7771.
Additionally, we use |
@VihasMakwana Thanks a lot for the quick response.
Regarding exporting to Kafka using SyncProducer, we have set exporter.kafka.producer.required_acks=1. As per https://pkg.go.dev/github.com/Shopify/sarama#RequiredAcks, this means that the exporter only waits for responding broker to ack. When we set this to 0 (an unreliable delivery) this effectively becomes async. Do you mean this mode? |
Component(s)
exporter/kafka
What happened?
Description
We had initiated the load of 1700 TPS towards the open telemetry collector and observed that Kafka exporter was not able to consume the whole load and stream it to Kafka topic at the same rate as were generating the load.
To debug we enabled the telemetry metrics level: detailed expecting a detailed metrices level, But observed that very few metrices are shown in the log.
The metrices shown in the logs were less than what we expected for metrices level: Basic
The Kafka exporter use this:
https://gitlabce.tools.aws.vodafone.com/IOT/dsip-opentelemetry.git
The documentation refereed for metrices
https://opentelemetry.io/docs/collector/internal-telemetry/
Steps to Reproduce
Expected Result
Actual Result
Collector version
0.96.0
Environment information
Environment
OS: alpine (Running as a containerized image on EKS)
OpenTelemetry Collector configuration
Log output
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: