You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix example config for Pulsar exporter, units are nanoseconds (open-telemetry#2185)
- setting partitions_auto_discovery_interval to 1 causes a storm of
CommandPartitionedTopicMetadata requests to brokers. The broker doesn't log these
requests and it's hard to detect the issue.
The default value in the client is 1 minute which is 60*10^9.
Set the example value to the default.
- setting batching_max_publish_delay to 10 will make batching uneffective
since the unit is nanoseconds. The default value in the client is 10 milliseconds
which is 10^7. Set the example value to the default.
0 commit comments