Ted Yu created FLINK-3998:
-----------------------------

             Summary: Access to gauges and counters in StatsDReporter#report() 
is not properly synchronized
                 Key: FLINK-3998
                 URL: https://issues.apache.org/jira/browse/FLINK-3998
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu


{code}
    for (Map.Entry<Gauge<?>, String> entry : gauges.entrySet()) {
      reportGauge(entry.getValue(), entry.getKey());
    }

    for (Map.Entry<Counter, String> entry : counters.entrySet()) {
      reportCounter(entry.getValue(), entry.getKey());
{code}
Access to gauges and counters should be protected by lock on 
AbstractReporter.this



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to