[
https://issues.apache.org/jira/browse/GEODE-6334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Kirk Lund resolved GEODE-6334.
------------------------------
Resolution: Fixed
This ticket has been fixed by changes to {{AbstractStatisticsFactory}}. All
{{createIntCounter}} methods now delegate to {{createLongCounter}}:
{noformat}
@Override
public StatisticDescriptor createIntCounter(String name, String description,
String units) {
return createLongCounter(name, description, units);
}
{noformat}
> CachePerfStats operation count stats may wrap to negative values
> ----------------------------------------------------------------
>
> Key: GEODE-6334
> URL: https://issues.apache.org/jira/browse/GEODE-6334
> Project: Geode
> Issue Type: Bug
> Components: statistics
> Reporter: Kirk Lund
> Priority: Major
> Labels: pull-request-available
> Time Spent: 3h 10m
> Remaining Estimate: 0h
>
> Many CachePerfStats operation count stats are implemented as IntCounters
> including puts and gets. They will wrap to negative values when incremented
> beyond Integer.MAX_VALUE.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)