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
Hi, thanks a lot for your analysis. I will certainly look into it as soon as time allows. Meanwhile, if you have a proposal how to reduce the number of strings, please post it here for discussion or create a PR.
Hi,
We're using strimzi kafka which uses
jmx_exporter
as a javaagent to export the metrics to/metrics
.And we find out that
Receiver.recordBean
underJmxCollector
injmx_exporter
keeps creating a large amount of String objectsArthas shows that
recordBean
is called about 10k per minuteand
config.rules
in our case is 21 long, which ends up about 210k String per minute.And we can see Young GC moving the memory from 6GB to 500MB happens about 12 minutes a time.
In the heap dump, there are lots of:
which seems to be the content of
matchName
here.Any idea how to fix this problem?
Many Thanks.
The text was updated successfully, but these errors were encountered: