[
https://issues.apache.org/jira/browse/HBASE-8927?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13708042#comment-13708042
]
Ted Yu commented on HBASE-8927:
-------------------------------
I noticed that the size of patch for CASSANDRA-733 is relatively small.
It contains changes in the following form:
{code}
- long startTime = System.currentTimeMillis();
+ long startTime = System.nanoTime();
...
- writeStats.add(System.currentTimeMillis() - startTime);
+ writeStats.addNano(System.nanoTime() - startTime);
{code}
> Use nano time instead of mili time everywhere
> ---------------------------------------------
>
> Key: HBASE-8927
> URL: https://issues.apache.org/jira/browse/HBASE-8927
> Project: HBase
> Issue Type: Bug
> Reporter: stack
> Attachments: 8927.txt
>
>
> Less collisions and we are paying the price of a long anyways so might as
> well fill it.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira