HBASE-17631 Changed Canary interval to 60 seconds

This commit is contained in:
Jan Hentschel 2017-02-13 00:24:31 +01:00
parent 5a00279c92
commit 97b3a04019
2 changed files with 2 additions and 2 deletions

View File

@ -565,7 +565,7 @@ public final class Canary implements Tool {
private static final int ERROR_EXIT_CODE = 4;
private static final int FAILURE_EXIT_CODE = 5;
private static final long DEFAULT_INTERVAL = 6000;
private static final long DEFAULT_INTERVAL = 60000;
private static final long DEFAULT_TIMEOUT = 600000; // 10 mins
private static final int MAX_THREADS_NUM = 16; // #threads to contact regions

View File

@ -185,7 +185,7 @@ $ ${HBASE_HOME}/bin/hbase canary -e test-0[1-2]
==== Run canary test as daemon mode
Run repeatedly with interval defined in option `-interval` whose default value is 6 seconds.
Run repeatedly with interval defined in option `-interval` whose default value is 60 seconds.
This daemon will stop itself and return non-zero error code if any error occurs, due to the default value of option -f is true.
----