You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Youngjoon Kim (JIRA)" <ji...@apache.org> on 2016/05/27 00:29:13 UTC

[jira] [Created] (HBASE-15897) Fix a wrong comment about QOS order

Youngjoon Kim created HBASE-15897:
-------------------------------------

             Summary: Fix a wrong comment about QOS order
                 Key: HBASE-15897
                 URL: https://issues.apache.org/jira/browse/HBASE-15897
             Project: HBase
          Issue Type: Bug
            Reporter: Youngjoon Kim
            Priority: Trivial


The following comment is wrong.
It should be 'normal_QOS < replication_QOS < replay_QOS < QOS_threshold < admin_QOS < high_QOS'

{code:title=hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java}
// normal_QOS < QOS_threshold < replication_QOS < replay_QOS < admin_QOS < high_QOS
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 REPLAY_QOS = 6;
public static final int ADMIN_QOS = 100;
public static final int SYSTEMTABLE_QOS = HIGH_QOS;
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)