HBASE-17631 Changed Canary interval to 60 seconds
This commit is contained in:
parent
5a00279c92
commit
97b3a04019
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
----
|
||||
|
|
Loading…
Reference in New Issue