HBASE-15897 Fix a wrong comment about QOS order
Signed-off-by: stack <stack@apache.org>
This commit is contained in:
parent
cdd532da8a
commit
47176049f8
|
@ -1024,13 +1024,13 @@ public final class HConstants {
|
||||||
* by different set of handlers. For example, HIGH_QOS tagged methods are
|
* by different set of handlers. For example, HIGH_QOS tagged methods are
|
||||||
* handled by high priority handlers.
|
* handled by high priority handlers.
|
||||||
*/
|
*/
|
||||||
// normal_QOS < QOS_threshold < replication_QOS < replay_QOS < admin_QOS < high_QOS
|
// normal_QOS < replication_QOS < replay_QOS < QOS_threshold < admin_QOS < high_QOS
|
||||||
public static final int NORMAL_QOS = 0;
|
public static final int NORMAL_QOS = 0;
|
||||||
public static final int QOS_THRESHOLD = 10;
|
|
||||||
public static final int HIGH_QOS = 200;
|
|
||||||
public static final int REPLICATION_QOS = 5;
|
public static final int REPLICATION_QOS = 5;
|
||||||
public static final int REPLAY_QOS = 6;
|
public static final int REPLAY_QOS = 6;
|
||||||
|
public static final int QOS_THRESHOLD = 10;
|
||||||
public static final int ADMIN_QOS = 100;
|
public static final int ADMIN_QOS = 100;
|
||||||
|
public static final int HIGH_QOS = 200;
|
||||||
public static final int SYSTEMTABLE_QOS = HIGH_QOS;
|
public static final int SYSTEMTABLE_QOS = HIGH_QOS;
|
||||||
|
|
||||||
/** Directory under /hbase where archived hfiles are stored */
|
/** Directory under /hbase where archived hfiles are stored */
|
||||||
|
|
Loading…
Reference in New Issue