Ted Yu created HBASE-16045:
------------------------------
Summary: endtime argument for VerifyReplication was incorrectly
specified in usage
Key: HBASE-16045
URL: https://issues.apache.org/jira/browse/HBASE-16045
Project: HBase
Issue Type: Bug
Reporter: Ted Yu
Assignee: Ted Yu
Working on a customer case where the following was given for verifyrep:
{code}
--starttime=1456790400000 \
--stoptime=1456876800000
{code}
Customer complained that the timestamp of a (sample) row reported as
ONLY_IN_PEER_TABLE_ROWS corresponded to time outside the time range.
The code says:
{code}
final String endTimeArgKey = "--endtime=";
{code}
It turns out that usage String was wrong:
{code}
System.err.println("Usage: verifyrep [--starttime=X]" +
" [--stoptime=Y] [--families=A] <peerid> <tablename>");
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)