2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 package org
.apache
.hadoop
.hbase
;
20 import static org
.apache
.hadoop
.hbase
.io
.hfile
.BlockType
.MAGIC_LENGTH
;
22 import java
.nio
.ByteBuffer
;
23 import java
.nio
.charset
.Charset
;
24 import java
.util
.Arrays
;
25 import java
.util
.Collections
;
26 import java
.util
.List
;
27 import java
.util
.UUID
;
28 import java
.util
.regex
.Pattern
;
29 import org
.apache
.hadoop
.hbase
.util
.Bytes
;
30 import org
.apache
.yetus
.audience
.InterfaceAudience
;
33 * HConstants holds a bunch of HBase-related constants
35 @InterfaceAudience.Public
36 public final class HConstants
{
37 // NOTICE!!!! Please do not add a constants here, unless they are referenced by a lot of classes.
39 //Bytes.UTF8_ENCODING should be updated if this changed
40 /** When we encode strings, we always specify UTF8 encoding */
41 public static final String UTF8_ENCODING
= "UTF-8";
43 //Bytes.UTF8_CHARSET should be updated if this changed
44 /** When we encode strings, we always specify UTF8 encoding */
45 public static final Charset UTF8_CHARSET
= Charset
.forName(UTF8_ENCODING
);
47 * Default block size for an HFile.
49 public final static int DEFAULT_BLOCKSIZE
= 64 * 1024;
51 /** Used as a magic return value while optimized index key feature enabled(HBASE-7845) */
52 public final static int INDEX_KEY_MAGIC
= -2;
55 * Name of directory that holds recovered edits written by the wal log
56 * splitting code, one per region
58 public static final String RECOVERED_EDITS_DIR
= "recovered.edits";
61 * Name of directory that holds recovered hfiles written by the wal log
62 * splitting code, one per region
64 public static final String RECOVERED_HFILES_DIR
= "recovered.hfiles";
67 * The first four bytes of Hadoop RPC connections
69 public static final byte[] RPC_HEADER
= new byte[] { 'H', 'B', 'a', 's' };
70 public static final byte RPC_CURRENT_VERSION
= 0;
72 // HFileBlock constants. TODO!!!! THESE DEFINES BELONG IN HFILEBLOCK, NOT UP HERE.
73 // Needed down in hbase-common though by encoders but these encoders should not be dealing
74 // in the internals of hfileblocks. Fix encapsulation.
76 /** The size data structures with minor version is 0 */
77 public static final int HFILEBLOCK_HEADER_SIZE_NO_CHECKSUM
= MAGIC_LENGTH
+ 2 * Bytes
.SIZEOF_INT
79 /** The size of a version 2 HFile block header, minor version 1.
80 * There is a 1 byte checksum type, followed by a 4 byte bytesPerChecksum
81 * followed by another 4 byte value to store sizeofDataOnDisk.
83 public static final int HFILEBLOCK_HEADER_SIZE
= HFILEBLOCK_HEADER_SIZE_NO_CHECKSUM
+
84 Bytes
.SIZEOF_BYTE
+ 2 * Bytes
.SIZEOF_INT
;
85 /** Just an array of bytes of the right size. */
86 public static final byte[] HFILEBLOCK_DUMMY_HEADER
= new byte[HFILEBLOCK_HEADER_SIZE
];
88 //End HFileBlockConstants.
91 * Status codes used for return values of bulk operations.
93 @InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience
.COPROC
)
94 public enum OperationStatusCode
{
103 /** long constant for zero */
104 public static final Long ZERO_L
= Long
.valueOf(0L);
105 public static final String NINES
= "99999999999999";
106 public static final String ZEROES
= "00000000000000";
110 /** name of version file */
111 public static final String VERSION_FILE_NAME
= "hbase.version";
114 * Current version of file system.
115 * Version 4 supports only one kind of bloom filter.
116 * Version 5 changes versions in catalog table regions.
117 * Version 6 enables blockcaching on catalog tables.
118 * Version 7 introduces hfile -- hbase 0.19 to 0.20..
119 * Version 8 introduces namespace
121 // public static final String FILE_SYSTEM_VERSION = "6";
122 public static final String FILE_SYSTEM_VERSION
= "8";
124 // Configuration parameters
126 //TODO: Is having HBase homed on port 60k OK?
128 /** Cluster is in distributed mode or not */
129 public static final String CLUSTER_DISTRIBUTED
= "hbase.cluster.distributed";
131 /** Config for pluggable load balancers */
132 public static final String HBASE_MASTER_LOADBALANCER_CLASS
= "hbase.master.loadbalancer.class";
134 /** Config for balancing the cluster by table */
135 public static final String HBASE_MASTER_LOADBALANCE_BYTABLE
= "hbase.master.loadbalance.bytable";
137 /** Config for the max percent of regions in transition */
138 public static final String HBASE_MASTER_BALANCER_MAX_RIT_PERCENT
=
139 "hbase.master.balancer.maxRitPercent";
141 /** Default value for the max percent of regions in transition */
142 public static final double DEFAULT_HBASE_MASTER_BALANCER_MAX_RIT_PERCENT
= 1.0;
144 /** Config for the max balancing time */
145 public static final String HBASE_BALANCER_MAX_BALANCING
= "hbase.balancer.max.balancing";
147 /** Config for the balancer period */
148 public static final String HBASE_BALANCER_PERIOD
= "hbase.balancer.period";
150 /** Default value for the balancer period */
151 public static final int DEFAULT_HBASE_BALANCER_PERIOD
= 300000;
153 /** The name of the ensemble table */
154 public static final TableName ENSEMBLE_TABLE_NAME
= TableName
.valueOf("hbase:ensemble");
156 /** Config for pluggable region normalizer */
157 public static final String HBASE_MASTER_NORMALIZER_CLASS
=
158 "hbase.master.normalizer.class";
160 /** Cluster is standalone or pseudo-distributed */
161 public static final boolean CLUSTER_IS_LOCAL
= false;
163 /** Default value for cluster distributed mode */
164 public static final boolean DEFAULT_CLUSTER_DISTRIBUTED
= CLUSTER_IS_LOCAL
;
166 /** default host address */
167 public static final String DEFAULT_HOST
= "0.0.0.0";
169 /** Parameter name for port master listens on. */
170 public static final String MASTER_PORT
= "hbase.master.port";
172 /** default port that the master listens on */
173 public static final int DEFAULT_MASTER_PORT
= 16000;
175 /** default port for master web api */
176 public static final int DEFAULT_MASTER_INFOPORT
= 16010;
178 /** Configuration key for master web API port */
179 public static final String MASTER_INFO_PORT
= "hbase.master.info.port";
181 /** Configuration key for the list of master host:ports **/
182 public static final String MASTER_ADDRS_KEY
= "hbase.masters";
184 /** Full class name of the Zookeeper based connection registry implementation */
185 public static final String ZK_CONNECTION_REGISTRY_CLASS
=
186 "org.apache.hadoop.hbase.client.ZKConnectionRegistry";
188 /** Configuration to enable hedged reads on master registry **/
189 public static final String MASTER_REGISTRY_ENABLE_HEDGED_READS_KEY
=
190 "hbase.client.master_registry.enable_hedged_reads";
192 /** Default value for enabling hedging reads on master registry **/
193 public static final boolean MASTER_REGISTRY_ENABLE_HEDGED_READS_DEFAULT
= false;
195 /** Parameter name for the master type being backup (waits for primary to go inactive). */
196 public static final String MASTER_TYPE_BACKUP
= "hbase.master.backup";
199 * by default every master is a possible primary master unless the conf explicitly overrides it
201 public static final boolean DEFAULT_MASTER_TYPE_BACKUP
= false;
203 /** Name of ZooKeeper quorum configuration parameter. */
204 public static final String ZOOKEEPER_QUORUM
= "hbase.zookeeper.quorum";
206 /** Name of ZooKeeper quorum configuration parameter for client to locate meta. */
207 public static final String CLIENT_ZOOKEEPER_QUORUM
= "hbase.client.zookeeper.quorum";
209 /** Client port of ZooKeeper for client to locate meta */
210 public static final String CLIENT_ZOOKEEPER_CLIENT_PORT
=
211 "hbase.client.zookeeper.property.clientPort";
213 /** Indicate whether the client ZK are observer nodes of the server ZK */
214 public static final String CLIENT_ZOOKEEPER_OBSERVER_MODE
=
215 "hbase.client.zookeeper.observer.mode";
216 /** Assuming client zk not in observer mode and master need to synchronize information */
217 public static final boolean DEFAULT_CLIENT_ZOOKEEPER_OBSERVER_MODE
= false;
219 /** Common prefix of ZooKeeper configuration properties */
220 public static final String ZK_CFG_PROPERTY_PREFIX
=
221 "hbase.zookeeper.property.";
223 public static final int ZK_CFG_PROPERTY_PREFIX_LEN
=
224 ZK_CFG_PROPERTY_PREFIX
.length();
227 * The ZK client port key in the ZK properties map. The name reflects the
228 * fact that this is not an HBase configuration key.
230 public static final String CLIENT_PORT_STR
= "clientPort";
232 /** Parameter name for the client port that the zookeeper listens on */
233 public static final String ZOOKEEPER_CLIENT_PORT
=
234 ZK_CFG_PROPERTY_PREFIX
+ CLIENT_PORT_STR
;
236 /** Default client port that the zookeeper listens on */
237 public static final int DEFAULT_ZOOKEEPER_CLIENT_PORT
= 2181;
239 /** Parameter name for the root dir in ZK for this cluster */
240 public static final String ZOOKEEPER_ZNODE_PARENT
= "zookeeper.znode.parent";
242 public static final String DEFAULT_ZOOKEEPER_ZNODE_PARENT
= "/hbase";
245 * Parameter name for the limit on concurrent client-side zookeeper
248 public static final String ZOOKEEPER_MAX_CLIENT_CNXNS
=
249 ZK_CFG_PROPERTY_PREFIX
+ "maxClientCnxns";
251 /** Parameter name for the ZK data directory */
252 public static final String ZOOKEEPER_DATA_DIR
=
253 ZK_CFG_PROPERTY_PREFIX
+ "dataDir";
255 /** Parameter name for the ZK tick time */
256 public static final String ZOOKEEPER_TICK_TIME
=
257 ZK_CFG_PROPERTY_PREFIX
+ "tickTime";
259 /** Default limit on concurrent client-side zookeeper connections */
260 public static final int DEFAULT_ZOOKEEPER_MAX_CLIENT_CNXNS
= 300;
262 /** Configuration key for ZooKeeper session timeout */
263 public static final String ZK_SESSION_TIMEOUT
= "zookeeper.session.timeout";
265 /** Default value for ZooKeeper session timeout */
266 public static final int DEFAULT_ZK_SESSION_TIMEOUT
= 90 * 1000;
268 /** Parameter name for port region server listens on. */
269 public static final String REGIONSERVER_PORT
= "hbase.regionserver.port";
271 /** Default port region server listens on. */
272 public static final int DEFAULT_REGIONSERVER_PORT
= 16020;
274 /** default port for region server web api */
275 public static final int DEFAULT_REGIONSERVER_INFOPORT
= 16030;
277 /** A configuration key for regionserver info port */
278 public static final String REGIONSERVER_INFO_PORT
=
279 "hbase.regionserver.info.port";
281 /** A flag that enables automatic selection of regionserver info port */
282 public static final String REGIONSERVER_INFO_PORT_AUTO
=
283 REGIONSERVER_INFO_PORT
+ ".auto";
285 /** Parameter name for what region server implementation to use. */
286 public static final String REGION_SERVER_IMPL
= "hbase.regionserver.impl";
288 /** Parameter name for what master implementation to use. */
289 public static final String MASTER_IMPL
= "hbase.master.impl";
291 /** Parameter name for how often threads should wake up */
292 public static final String THREAD_WAKE_FREQUENCY
= "hbase.server.thread.wakefrequency";
294 /** Default value for thread wake frequency */
295 public static final int DEFAULT_THREAD_WAKE_FREQUENCY
= 10 * 1000;
297 /** Parameter name for how often we should try to write a version file, before failing */
298 public static final String VERSION_FILE_WRITE_ATTEMPTS
= "hbase.server.versionfile.writeattempts";
300 /** Parameter name for how often we should try to write a version file, before failing */
301 public static final int DEFAULT_VERSION_FILE_WRITE_ATTEMPTS
= 3;
303 /** Parameter name and default value for how often a region should perform a major compaction */
304 public static final String MAJOR_COMPACTION_PERIOD
= "hbase.hregion.majorcompaction";
305 public static final long DEFAULT_MAJOR_COMPACTION_PERIOD
= 1000 * 60 * 60 * 24 * 7; // 7 days
308 * Parameter name and default value for major compaction jitter.
309 * Used as a multiplier applied to {@link HConstants#MAJOR_COMPACTION_PERIOD}
310 * to cause compaction to occur a given amount of time either side of
311 * {@link HConstants#MAJOR_COMPACTION_PERIOD}.
312 * Default to 0.5 so jitter has us fall evenly either side of when the compaction should run.
314 public static final String MAJOR_COMPACTION_JITTER
= "hbase.hregion.majorcompaction.jitter";
315 public static final float DEFAULT_MAJOR_COMPACTION_JITTER
= 0.50F
;
317 /** Parameter name for the maximum batch of KVs to be used in flushes and compactions */
318 public static final String COMPACTION_KV_MAX
= "hbase.hstore.compaction.kv.max";
319 public static final int COMPACTION_KV_MAX_DEFAULT
= 10;
321 /** Parameter name for HBase instance root directory */
322 public static final String HBASE_DIR
= "hbase.rootdir";
324 /** Parameter name for HBase client IPC pool type */
325 public static final String HBASE_CLIENT_IPC_POOL_TYPE
= "hbase.client.ipc.pool.type";
327 /** Parameter name for HBase client IPC pool size */
328 public static final String HBASE_CLIENT_IPC_POOL_SIZE
= "hbase.client.ipc.pool.size";
330 /** Parameter name for HBase client operation timeout. */
331 public static final String HBASE_CLIENT_OPERATION_TIMEOUT
= "hbase.client.operation.timeout";
333 /** Parameter name for HBase client meta operation timeout. */
334 public static final String HBASE_CLIENT_META_OPERATION_TIMEOUT
=
335 "hbase.client.meta.operation.timeout";
337 /** Default HBase client operation timeout, which is tantamount to a blocking call */
338 public static final int DEFAULT_HBASE_CLIENT_OPERATION_TIMEOUT
= 1200000;
340 /** Parameter name for HBase client meta replica scan call timeout. */
341 public static final String HBASE_CLIENT_META_REPLICA_SCAN_TIMEOUT
=
342 "hbase.client.meta.replica.scan.timeout";
344 /** Default HBase client meta replica scan call timeout, 1 second */
345 public static final int HBASE_CLIENT_META_REPLICA_SCAN_TIMEOUT_DEFAULT
= 1000000;
347 /** Used to construct the name of the log directory for a region server */
348 public static final String HREGION_LOGDIR_NAME
= "WALs";
350 /** Used to construct the name of the splitlog directory for a region server */
351 public static final String SPLIT_LOGDIR_NAME
= "splitWAL";
353 /** Like the previous, but for old logs that are about to be deleted */
354 public static final String HREGION_OLDLOGDIR_NAME
= "oldWALs";
356 /** Staging dir used by bulk load */
357 public static final String BULKLOAD_STAGING_DIR_NAME
= "staging";
359 public static final String CORRUPT_DIR_NAME
= "corrupt";
361 /** Used by HBCK to sideline backup data */
362 public static final String HBCK_SIDELINEDIR_NAME
= ".hbck";
364 /** Any artifacts left from migration can be moved here */
365 public static final String MIGRATION_NAME
= ".migration";
367 /** Used to construct the name of the compaction directory during compaction */
368 public static final String HREGION_COMPACTIONDIR_NAME
= "compaction.dir";
370 /** Conf key for the max file size after which we split the region */
371 public static final String HREGION_MAX_FILESIZE
=
372 "hbase.hregion.max.filesize";
374 /** Default maximum file size */
375 public static final long DEFAULT_MAX_FILE_SIZE
= 10 * 1024 * 1024 * 1024L;
378 * Max size of single row for Get's or Scan's without in-row scanning flag set.
380 public static final String TABLE_MAX_ROWSIZE_KEY
= "hbase.table.max.rowsize";
383 * Default max row size (1 Gb).
385 public static final long TABLE_MAX_ROWSIZE_DEFAULT
= 1024 * 1024 * 1024L;
388 * The max number of threads used for opening and closing stores or store
391 public static final String HSTORE_OPEN_AND_CLOSE_THREADS_MAX
=
392 "hbase.hstore.open.and.close.threads.max";
395 * The default number for the max number of threads used for opening and
396 * closing stores or store files in parallel
398 public static final int DEFAULT_HSTORE_OPEN_AND_CLOSE_THREADS_MAX
= 1;
401 * Block updates if memstore has hbase.hregion.memstore.block.multiplier
402 * times hbase.hregion.memstore.flush.size bytes. Useful preventing
403 * runaway memstore during spikes in update traffic.
405 public static final String HREGION_MEMSTORE_BLOCK_MULTIPLIER
=
406 "hbase.hregion.memstore.block.multiplier";
409 * Default value for hbase.hregion.memstore.block.multiplier
411 public static final int DEFAULT_HREGION_MEMSTORE_BLOCK_MULTIPLIER
= 4;
413 /** Conf key for the memstore size at which we flush the memstore */
414 public static final String HREGION_MEMSTORE_FLUSH_SIZE
=
415 "hbase.hregion.memstore.flush.size";
417 public static final String HREGION_EDITS_REPLAY_SKIP_ERRORS
=
418 "hbase.hregion.edits.replay.skip.errors";
420 public static final boolean DEFAULT_HREGION_EDITS_REPLAY_SKIP_ERRORS
=
423 /** Maximum value length, enforced on KeyValue construction */
424 public static final int MAXIMUM_VALUE_LENGTH
= Integer
.MAX_VALUE
- 1;
426 /** name of the file for unique cluster ID */
427 public static final String CLUSTER_ID_FILE_NAME
= "hbase.id";
429 /** Default value for cluster ID */
430 public static final String CLUSTER_ID_DEFAULT
= "default-cluster";
432 /** Parameter name for # days to keep MVCC values during a major compaction */
433 public static final String KEEP_SEQID_PERIOD
= "hbase.hstore.compaction.keep.seqId.period";
434 /** At least to keep MVCC values in hfiles for 5 days */
435 public static final int MIN_KEEP_SEQID_PERIOD
= 5;
437 // Always store the location of the root table's HRegion.
438 // This HRegion is never split.
440 // region name = table + startkey + regionid. This is the row key.
441 // each row in the root and meta tables describes exactly 1 region
442 // Do we ever need to know all the information that we are storing?
444 // Note that the name of the root table starts with "-" and the name of the
445 // meta table starts with "." Why? it's a trick. It turns out that when we
446 // store region names in memory, we use a SortedMap. Since "-" sorts before
447 // "." (and since no other table name can start with either of these
448 // characters, the root region will always be the first entry in such a Map,
449 // followed by all the meta regions (which will be ordered by their starting
450 // row key as well), followed by all user tables. So when the Master is
451 // choosing regions to assign, it will always choose the root region first,
452 // followed by the meta regions, followed by user regions. Since the root
453 // and meta regions always need to be on-line, this ensures that they will
454 // be the first to be reassigned if the server(s) they are being served by
457 public static final String BASE_NAMESPACE_DIR
= "data";
459 /** delimiter used between portions of a region name */
460 public static final int META_ROW_DELIMITER
= ',';
462 /** The catalog family as a string*/
463 public static final String CATALOG_FAMILY_STR
= "info";
465 /** The catalog family */
466 public static final byte [] CATALOG_FAMILY
= Bytes
.toBytes(CATALOG_FAMILY_STR
);
468 /** The RegionInfo qualifier as a string */
469 public static final String REGIONINFO_QUALIFIER_STR
= "regioninfo";
471 /** The regioninfo column qualifier */
472 public static final byte [] REGIONINFO_QUALIFIER
= Bytes
.toBytes(REGIONINFO_QUALIFIER_STR
);
474 /** The server column qualifier */
475 public static final String SERVER_QUALIFIER_STR
= "server";
476 /** The server column qualifier */
477 public static final byte [] SERVER_QUALIFIER
= Bytes
.toBytes(SERVER_QUALIFIER_STR
);
479 /** The startcode column qualifier */
480 public static final String STARTCODE_QUALIFIER_STR
= "serverstartcode";
481 /** The startcode column qualifier */
482 public static final byte [] STARTCODE_QUALIFIER
= Bytes
.toBytes(STARTCODE_QUALIFIER_STR
);
484 /** The open seqnum column qualifier */
485 public static final String SEQNUM_QUALIFIER_STR
= "seqnumDuringOpen";
486 /** The open seqnum column qualifier */
487 public static final byte [] SEQNUM_QUALIFIER
= Bytes
.toBytes(SEQNUM_QUALIFIER_STR
);
489 /** The state column qualifier */
490 public static final String STATE_QUALIFIER_STR
= "state";
492 public static final byte [] STATE_QUALIFIER
= Bytes
.toBytes(STATE_QUALIFIER_STR
);
495 * The serverName column qualifier. Its the server where the region is
496 * transitioning on, while column server is the server where the region is
497 * opened on. They are the same when the region is in state OPEN.
499 public static final String SERVERNAME_QUALIFIER_STR
= "sn";
501 public static final byte [] SERVERNAME_QUALIFIER
= Bytes
.toBytes(SERVERNAME_QUALIFIER_STR
);
503 /** The lower-half split region column qualifier */
504 public static final byte [] SPLITA_QUALIFIER
= Bytes
.toBytes("splitA");
506 /** The upper-half split region column qualifier */
507 public static final byte [] SPLITB_QUALIFIER
= Bytes
.toBytes("splitB");
510 * Merge qualifier prefix.
511 * We used to only allow two regions merge; mergeA and mergeB.
512 * Now we allow many to merge. Each region to merge will be referenced
513 * in a column whose qualifier starts with this define.
515 public static final String MERGE_QUALIFIER_PREFIX_STR
= "merge";
516 public static final byte [] MERGE_QUALIFIER_PREFIX
=
517 Bytes
.toBytes(MERGE_QUALIFIER_PREFIX_STR
);
520 * The lower-half merge region column qualifier
521 * @deprecated Since 2.3.0 and 2.2.1. Not used anymore. Instead we look for
522 * the {@link #MERGE_QUALIFIER_PREFIX_STR} prefix.
525 public static final byte[] MERGEA_QUALIFIER
= Bytes
.toBytes(MERGE_QUALIFIER_PREFIX_STR
+ "A");
528 * The upper-half merge region column qualifier
529 * @deprecated Since 2.3.0 and 2.2.1. Not used anymore. Instead we look for
530 * the {@link #MERGE_QUALIFIER_PREFIX_STR} prefix.
533 public static final byte[] MERGEB_QUALIFIER
= Bytes
.toBytes(MERGE_QUALIFIER_PREFIX_STR
+ "B");
535 /** The catalog family as a string*/
536 public static final String TABLE_FAMILY_STR
= "table";
538 /** The catalog family */
539 public static final byte [] TABLE_FAMILY
= Bytes
.toBytes(TABLE_FAMILY_STR
);
541 /** The serialized table state qualifier */
542 public static final byte[] TABLE_STATE_QUALIFIER
= Bytes
.toBytes("state");
544 /** The replication barrier family as a string*/
545 public static final String REPLICATION_BARRIER_FAMILY_STR
= "rep_barrier";
547 /** The replication barrier family */
548 public static final byte[] REPLICATION_BARRIER_FAMILY
=
549 Bytes
.toBytes(REPLICATION_BARRIER_FAMILY_STR
);
551 /** The namespace family as a string */
552 public static final String NAMESPACE_FAMILY_STR
= "ns";
554 /** The namespace family */
555 public static final byte[] NAMESPACE_FAMILY
= Bytes
.toBytes(NAMESPACE_FAMILY_STR
);
557 public static final byte[] NAMESPACE_COL_DESC_QUALIFIER
= Bytes
.toBytes("d");
559 * The meta table version column qualifier.
560 * We keep current version of the meta table in this column in <code>-ROOT-</code>
561 * table: i.e. in the 'info:v' column.
563 public static final byte [] META_VERSION_QUALIFIER
= Bytes
.toBytes("v");
566 * The current version of the meta table.
567 * - pre-hbase 0.92. There is no META_VERSION column in the root table
568 * in this case. The meta has HTableDescriptor serialized into the HRegionInfo;
569 * - version 0 is 0.92 and 0.94. Meta data has serialized HRegionInfo's using
570 * Writable serialization, and HRegionInfo's does not contain HTableDescriptors.
571 * - version 1 for 0.96+ keeps HRegionInfo data structures, but changes the
572 * byte[] serialization from Writables to Protobuf.
573 * See HRegionInfo.VERSION
575 public static final short META_VERSION
= 1;
580 * An empty byte array instance.
582 public static final byte [] EMPTY_BYTE_ARRAY
= new byte [0];
585 * An empty string instance.
587 public static final String EMPTY_STRING
= "";
589 public static final ByteBuffer EMPTY_BYTE_BUFFER
= ByteBuffer
.wrap(EMPTY_BYTE_ARRAY
);
592 * Used by scanners, etc when they want to start at the beginning of a region
594 public static final byte [] EMPTY_START_ROW
= EMPTY_BYTE_ARRAY
;
597 * Last row in a table.
599 public static final byte [] EMPTY_END_ROW
= EMPTY_START_ROW
;
602 * Used by scanners and others when they're trying to detect the end of a
605 public static final byte [] LAST_ROW
= EMPTY_BYTE_ARRAY
;
608 * Max length a row can have because of the limitation in TFile.
610 public static final int MAX_ROW_LENGTH
= Short
.MAX_VALUE
;
613 * Timestamp to use when we want to refer to the latest cell.
615 * On client side, this is the timestamp set by default when no timestamp is specified,
616 * to refer to the latest.
617 * On server side, this acts as a notation.
618 * (1) For a cell of Put, which has this notation,
619 * its timestamp will be replaced with server's current time.
620 * (2) For a cell of Delete, which has this notation,
621 * A. If the cell is of {@link KeyValue.Type#Delete}, HBase issues a Get operation firstly.
622 * a. When the count of cell it gets is less than the count of cell to delete,
623 * the timestamp of Delete cell will be replaced with server's current time.
624 * b. When the count of cell it gets is equal to the count of cell to delete,
625 * the timestamp of Delete cell will be replaced with the latest timestamp of cell it
627 * (c. It is invalid and an exception will be thrown,
628 * if the count of cell it gets is greater than the count of cell to delete,
629 * as the max version of Get is set to the count of cell to delete.)
630 * B. If the cell is of other Delete types, like {@link KeyValue.Type#DeleteFamilyVersion},
631 * {@link KeyValue.Type#DeleteColumn}, or {@link KeyValue.Type#DeleteFamily},
632 * the timestamp of Delete cell will be replaced with server's current time.
634 * So that is why it is named as "latest" but assigned as the max value of Long.
636 public static final long LATEST_TIMESTAMP
= Long
.MAX_VALUE
;
639 * Timestamp to use when we want to refer to the oldest cell.
640 * Special! Used in fake Cells only. Should never be the timestamp on an actual Cell returned to
642 * @deprecated Should not be public since hbase-1.3.0. For internal use only. Move internal to
643 * Scanners flagged as special timestamp value never to be returned as timestamp on a Cell.
646 public static final long OLDEST_TIMESTAMP
= Long
.MIN_VALUE
;
649 * LATEST_TIMESTAMP in bytes form
651 public static final byte [] LATEST_TIMESTAMP_BYTES
= {
653 (byte) (LATEST_TIMESTAMP
>>> 56),
654 (byte) (LATEST_TIMESTAMP
>>> 48),
655 (byte) (LATEST_TIMESTAMP
>>> 40),
656 (byte) (LATEST_TIMESTAMP
>>> 32),
657 (byte) (LATEST_TIMESTAMP
>>> 24),
658 (byte) (LATEST_TIMESTAMP
>>> 16),
659 (byte) (LATEST_TIMESTAMP
>>> 8),
660 (byte) LATEST_TIMESTAMP
,
664 * Define for 'return-all-versions'.
666 public static final int ALL_VERSIONS
= Integer
.MAX_VALUE
;
669 * Unlimited time-to-live.
671 // public static final int FOREVER = -1;
672 public static final int FOREVER
= Integer
.MAX_VALUE
;
675 * Seconds in a day, hour and minute
677 public static final int DAY_IN_SECONDS
= 24 * 60 * 60;
678 public static final int HOUR_IN_SECONDS
= 60 * 60;
679 public static final int MINUTE_IN_SECONDS
= 60;
681 //TODO: although the following are referenced widely to format strings for
682 // the shell. They really aren't a part of the public API. It would be
683 // nice if we could put them somewhere where they did not need to be
684 // public. They could have package visibility
685 public static final String NAME
= "NAME";
686 public static final String VERSIONS
= "VERSIONS";
687 public static final String IN_MEMORY
= "IN_MEMORY";
688 public static final String METADATA
= "METADATA";
689 public static final String CONFIGURATION
= "CONFIGURATION";
692 * Retrying we multiply hbase.client.pause setting by what we have in this array until we
693 * run out of array items. Retries beyond this use the last number in the array. So, for
694 * example, if hbase.client.pause is 1 second, and maximum retries count
695 * hbase.client.retries.number is 10, we will retry at the following intervals:
696 * 1, 2, 3, 5, 10, 20, 40, 100, 100, 100.
697 * With 100ms, a back-off of 200 means 20s
699 public static final int [] RETRY_BACKOFF
= {1, 2, 3, 5, 10, 20, 40, 100, 100, 100, 100, 200, 200};
701 public static final String REGION_IMPL
= "hbase.hregion.impl";
704 * Scope tag for locally scoped data.
705 * This data will not be replicated.
707 public static final int REPLICATION_SCOPE_LOCAL
= 0;
710 * Scope tag for globally scoped data.
711 * This data will be replicated to all peers.
713 public static final int REPLICATION_SCOPE_GLOBAL
= 1;
716 * Default cluster ID, cannot be used to identify a cluster so a key with
717 * this value means it wasn't meant for replication.
719 public static final UUID DEFAULT_CLUSTER_ID
= new UUID(0L,0L);
722 * Parameter name for maximum number of bytes returned when calling a scanner's next method.
723 * Controlled by the client.
725 public static final String HBASE_CLIENT_SCANNER_MAX_RESULT_SIZE_KEY
=
726 "hbase.client.scanner.max.result.size";
729 * Parameter name for maximum number of bytes returned when calling a scanner's next method.
730 * Controlled by the server.
732 public static final String HBASE_SERVER_SCANNER_MAX_RESULT_SIZE_KEY
=
733 "hbase.server.scanner.max.result.size";
736 * Maximum number of bytes returned when calling a scanner's next method.
737 * Note that when a single row is larger than this limit the row is still
738 * returned completely.
740 * The default value is 2MB.
742 public static final long DEFAULT_HBASE_CLIENT_SCANNER_MAX_RESULT_SIZE
= 2 * 1024 * 1024;
745 * Maximum number of bytes returned when calling a scanner's next method.
746 * Note that when a single row is larger than this limit the row is still
747 * returned completely.
748 * Safety setting to protect the region server.
750 * The default value is 100MB. (a client would rarely request larger chunks on purpose)
752 public static final long DEFAULT_HBASE_SERVER_SCANNER_MAX_RESULT_SIZE
= 100 * 1024 * 1024;
755 * Parameter name for client pause value, used mostly as value to wait
756 * before running a retry of a failed get, region lookup, etc.
758 public static final String HBASE_CLIENT_PAUSE
= "hbase.client.pause";
761 * Default value of {@link #HBASE_CLIENT_PAUSE}.
763 public static final long DEFAULT_HBASE_CLIENT_PAUSE
= 100;
766 * Parameter name for client pause value for special case such as call queue too big, etc.
768 public static final String HBASE_CLIENT_PAUSE_FOR_CQTBE
= "hbase.client.pause.cqtbe";
771 * The maximum number of concurrent connections the client will maintain.
773 public static final String HBASE_CLIENT_MAX_TOTAL_TASKS
= "hbase.client.max.total.tasks";
776 * Default value of {@link #HBASE_CLIENT_MAX_TOTAL_TASKS}.
778 public static final int DEFAULT_HBASE_CLIENT_MAX_TOTAL_TASKS
= 100;
781 * The maximum number of concurrent connections the client will maintain to a single
784 public static final String HBASE_CLIENT_MAX_PERSERVER_TASKS
= "hbase.client.max.perserver.tasks";
787 * Default value of {@link #HBASE_CLIENT_MAX_PERSERVER_TASKS}.
789 public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS
= 2;
792 * The maximum number of concurrent connections the client will maintain to a single
795 public static final String HBASE_CLIENT_MAX_PERREGION_TASKS
= "hbase.client.max.perregion.tasks";
798 * Default value of {@link #HBASE_CLIENT_MAX_PERREGION_TASKS}.
800 public static final int DEFAULT_HBASE_CLIENT_MAX_PERREGION_TASKS
= 1;
803 * The maximum number of concurrent pending RPC requests for one server in process level.
805 public static final String HBASE_CLIENT_PERSERVER_REQUESTS_THRESHOLD
=
806 "hbase.client.perserver.requests.threshold";
809 * Default value of {@link #HBASE_CLIENT_PERSERVER_REQUESTS_THRESHOLD}.
811 public static final int DEFAULT_HBASE_CLIENT_PERSERVER_REQUESTS_THRESHOLD
= Integer
.MAX_VALUE
;
815 * Parameter name for server pause value, used mostly as value to wait before
816 * running a retry of a failed operation.
818 public static final String HBASE_SERVER_PAUSE
= "hbase.server.pause";
821 * Default value of {@link #HBASE_SERVER_PAUSE}.
823 public static final int DEFAULT_HBASE_SERVER_PAUSE
= 1000;
826 * Parameter name for maximum retries, used as maximum for all retryable
827 * operations such as fetching of the root region from root region server,
828 * getting a cell's value, starting a row update, etc.
830 public static final String HBASE_CLIENT_RETRIES_NUMBER
= "hbase.client.retries.number";
833 * Default value of {@link #HBASE_CLIENT_RETRIES_NUMBER}.
835 public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER
= 15;
837 public static final String HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER
=
838 "hbase.client.serverside.retries.multiplier";
840 public static final int DEFAULT_HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER
= 3;
843 * Parameter name to set the default scanner caching for all clients.
845 public static final String HBASE_CLIENT_SCANNER_CACHING
= "hbase.client.scanner.caching";
848 * Default value for {@link #HBASE_CLIENT_SCANNER_CACHING}
850 public static final int DEFAULT_HBASE_CLIENT_SCANNER_CACHING
= Integer
.MAX_VALUE
;
853 * Parameter name for number of rows that will be fetched when calling next on
854 * a scanner if it is not served from memory. Higher caching values will
855 * enable faster scanners but will eat up more memory and some calls of next
856 * may take longer and longer times when the cache is empty.
858 public static final String HBASE_META_SCANNER_CACHING
= "hbase.meta.scanner.caching";
861 * Default value of {@link #HBASE_META_SCANNER_CACHING}.
863 public static final int DEFAULT_HBASE_META_SCANNER_CACHING
= 100;
866 * Parameter name for number of versions, kept by meta table.
868 public static final String HBASE_META_VERSIONS
= "hbase.meta.versions";
871 * Default value of {@link #HBASE_META_VERSIONS}.
873 public static final int DEFAULT_HBASE_META_VERSIONS
= 3;
876 * Parameter name for number of versions, kept by meta table.
878 public static final String HBASE_META_BLOCK_SIZE
= "hbase.meta.blocksize";
881 * Default value of {@link #HBASE_META_BLOCK_SIZE}.
883 public static final int DEFAULT_HBASE_META_BLOCK_SIZE
= 8 * 1024;
886 * Parameter name for unique identifier for this {@link org.apache.hadoop.conf.Configuration}
887 * instance. If there are two or more {@link org.apache.hadoop.conf.Configuration} instances that,
888 * for all intents and purposes, are the same except for their instance ids, then they will not be
889 * able to share the same org.apache.hadoop.hbase.client.HConnection instance. On the other hand,
890 * even if the instance ids are the same, it could result in non-shared
891 * org.apache.hadoop.hbase.client.HConnection instances if some of the other connection parameters
894 public static final String HBASE_CLIENT_INSTANCE_ID
= "hbase.client.instance.id";
897 * The client scanner timeout period in milliseconds.
899 public static final String HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD
=
900 "hbase.client.scanner.timeout.period";
903 * Use {@link #HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD} instead.
904 * @deprecated This config option is deprecated. Will be removed at later releases after 0.96.
907 public static final String HBASE_REGIONSERVER_LEASE_PERIOD_KEY
=
908 "hbase.regionserver.lease.period";
911 * Default value of {@link #HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD}.
913 public static final int DEFAULT_HBASE_CLIENT_SCANNER_TIMEOUT_PERIOD
= 60000;
916 * timeout for each RPC
918 public static final String HBASE_RPC_TIMEOUT_KEY
= "hbase.rpc.timeout";
920 /** Configuration key that controls the fan out of requests in hedged channel implementation. **/
921 public static final String HBASE_RPCS_HEDGED_REQS_FANOUT_KEY
= "hbase.rpc.hedged.fanout";
923 /** Default value for the fan out of hedged requests. **/
924 public static final int HBASE_RPCS_HEDGED_REQS_FANOUT_DEFAULT
= 2;
927 * timeout for each read RPC
929 public static final String HBASE_RPC_READ_TIMEOUT_KEY
= "hbase.rpc.read.timeout";
932 * timeout for each write RPC
934 public static final String HBASE_RPC_WRITE_TIMEOUT_KEY
= "hbase.rpc.write.timeout";
937 * Default value of {@link #HBASE_RPC_TIMEOUT_KEY}
939 public static final int DEFAULT_HBASE_RPC_TIMEOUT
= 60000;
942 * timeout for short operation RPC
944 public static final String HBASE_RPC_SHORTOPERATION_TIMEOUT_KEY
=
945 "hbase.rpc.shortoperation.timeout";
948 * Default value of {@link #HBASE_RPC_SHORTOPERATION_TIMEOUT_KEY}
950 public static final int DEFAULT_HBASE_RPC_SHORTOPERATION_TIMEOUT
= 10000;
953 * Value indicating the server name was saved with no sequence number.
955 public static final long NO_SEQNUM
= -1;
958 * Registry implementation to be used on the client side.
960 public static final String CLIENT_CONNECTION_REGISTRY_IMPL_CONF_KEY
=
961 "hbase.client.registry.impl";
964 * cluster replication constants.
966 public static final String
967 REPLICATION_SOURCE_SERVICE_CLASSNAME
= "hbase.replication.source.service";
968 public static final String
969 REPLICATION_SINK_SERVICE_CLASSNAME
= "hbase.replication.sink.service";
970 public static final String REPLICATION_SERVICE_CLASSNAME_DEFAULT
=
971 "org.apache.hadoop.hbase.replication.regionserver.Replication";
972 public static final String REPLICATION_BULKLOAD_ENABLE_KEY
= "hbase.replication.bulkload.enabled";
973 public static final boolean REPLICATION_BULKLOAD_ENABLE_DEFAULT
= false;
974 /** Replication cluster id of source cluster which uniquely identifies itself with peer cluster */
975 public static final String REPLICATION_CLUSTER_ID
= "hbase.replication.cluster.id";
977 * Max total size of buffered entries in all replication peers. It will prevent server getting
978 * OOM if there are many peers. Default value is 256MB which is four times to default
979 * replication.source.size.capacity.
981 public static final String REPLICATION_SOURCE_TOTAL_BUFFER_KEY
= "replication.total.buffer.quota";
983 public static final int REPLICATION_SOURCE_TOTAL_BUFFER_DFAULT
= 256 * 1024 * 1024;
985 /** Configuration key for ReplicationSource shipeEdits timeout */
986 public static final String REPLICATION_SOURCE_SHIPEDITS_TIMEOUT
=
987 "replication.source.shipedits.timeout";
988 public static final int REPLICATION_SOURCE_SHIPEDITS_TIMEOUT_DFAULT
= 60000;
991 * Directory where the source cluster file system client configuration are placed which is used by
992 * sink cluster to copy HFiles from source cluster file system
994 public static final String REPLICATION_CONF_DIR
= "hbase.replication.conf.dir";
996 /** Maximum time to retry for a failed bulk load request */
997 public static final String BULKLOAD_MAX_RETRIES_NUMBER
= "hbase.bulkload.retries.number";
999 public static final String KEY_FOR_HOSTNAME_SEEN_BY_MASTER
=
1000 "hbase.regionserver.hostname.seen.by.master";
1002 public static final String HBASE_MASTER_LOGCLEANER_PLUGINS
=
1003 "hbase.master.logcleaner.plugins";
1005 public static final String HBASE_REGION_SPLIT_POLICY_KEY
=
1006 "hbase.regionserver.region.split.policy";
1008 /** Whether nonces are enabled; default is true. */
1009 public static final String HBASE_RS_NONCES_ENABLED
= "hbase.regionserver.nonces.enabled";
1012 * Configuration key for the size of the block cache
1014 public static final String HFILE_BLOCK_CACHE_SIZE_KEY
=
1015 "hfile.block.cache.size";
1017 public static final float HFILE_BLOCK_CACHE_SIZE_DEFAULT
= 0.4f
;
1020 * Minimum percentage of free heap necessary for a successful cluster startup.
1022 public static final float HBASE_CLUSTER_MINIMUM_MEMORY_THRESHOLD
= 0.2f
;
1025 * @deprecated It is used internally. As of release 2.0.0, this will be removed in HBase 3.0.0.
1028 public static final Pattern CP_HTD_ATTR_KEY_PATTERN
=
1029 Pattern
.compile("^coprocessor\\$([0-9]+)$", Pattern
.CASE_INSENSITIVE
);
1033 * Pattern that matches a coprocessor specification. Form is:
1034 * {@code <coprocessor jar file location> '|' <class name> ['|' <priority> ['|' <arguments>]]}
1035 * where arguments are {@code <KEY> '=' <VALUE> [,...]}
1036 * For example: {@code hdfs:///foo.jar|com.foo.FooRegionObserver|1001|arg1=1,arg2=2}
1038 * @deprecated It is used internally. As of release 2.0.0, this will be removed in HBase 3.0.0.
1041 public static final Pattern CP_HTD_ATTR_VALUE_PATTERN
=
1042 Pattern
.compile("(^[^\\|]*)\\|([^\\|]+)\\|[\\s]*([\\d]*)[\\s]*(\\|.*)?$");
1044 * @deprecated It is used internally. As of release 2.0.0, this will be removed in HBase 3.0.0.
1047 public static final String CP_HTD_ATTR_VALUE_PARAM_KEY_PATTERN
= "[^=,]+";
1049 * @deprecated It is used internally. As of release 2.0.0, this will be removed in HBase 3.0.0.
1052 public static final String CP_HTD_ATTR_VALUE_PARAM_VALUE_PATTERN
= "[^,]+";
1054 * @deprecated It is used internally. As of release 2.0.0, this will be removed in HBase 3.0.0.
1057 public static final Pattern CP_HTD_ATTR_VALUE_PARAM_PATTERN
= Pattern
.compile(
1058 "(" + CP_HTD_ATTR_VALUE_PARAM_KEY_PATTERN
+ ")=(" +
1059 CP_HTD_ATTR_VALUE_PARAM_VALUE_PATTERN
+ "),?");
1060 public static final String CP_HTD_ATTR_INCLUSION_KEY
=
1061 "hbase.coprocessor.classloader.included.classes";
1063 /** The delay when re-trying a socket operation in a loop (HBASE-4712) */
1064 public static final int SOCKET_RETRY_WAIT_MS
= 200;
1066 /** Host name of the local machine */
1067 public static final String LOCALHOST
= "localhost";
1070 * If this parameter is set to true, then hbase will read
1071 * data and then verify checksums. Checksum verification
1072 * inside hdfs will be switched off. However, if the hbase-checksum
1073 * verification fails, then it will switch back to using
1074 * hdfs checksums for verifiying data that is being read from storage.
1076 * If this parameter is set to false, then hbase will not
1077 * verify any checksums, instead it will depend on checksum verification
1078 * being done in the hdfs client.
1080 public static final String HBASE_CHECKSUM_VERIFICATION
=
1081 "hbase.regionserver.checksum.verify";
1083 public static final String LOCALHOST_IP
= "127.0.0.1";
1085 public static final String REGION_SERVER_HANDLER_COUNT
= "hbase.regionserver.handler.count";
1086 public static final int DEFAULT_REGION_SERVER_HANDLER_COUNT
= 30;
1089 * REGION_SERVER_HANDLER_ABORT_ON_ERROR_PERCENT:
1090 * -1 => Disable aborting
1091 * 0 => Abort if even a single handler has died
1092 * 0.x => Abort only when this percent of handlers have died
1093 * 1 => Abort only all of the handers have died
1095 public static final String REGION_SERVER_HANDLER_ABORT_ON_ERROR_PERCENT
=
1096 "hbase.regionserver.handler.abort.on.error.percent";
1097 public static final double DEFAULT_REGION_SERVER_HANDLER_ABORT_ON_ERROR_PERCENT
= 0.5;
1099 //High priority handlers to deal with admin requests and system table operation requests
1100 public static final String REGION_SERVER_HIGH_PRIORITY_HANDLER_COUNT
=
1101 "hbase.regionserver.metahandler.count";
1102 public static final int DEFAULT_REGION_SERVER_HIGH_PRIORITY_HANDLER_COUNT
= 20;
1104 public static final String REGION_SERVER_REPLICATION_HANDLER_COUNT
=
1105 "hbase.regionserver.replication.handler.count";
1106 public static final int DEFAULT_REGION_SERVER_REPLICATION_HANDLER_COUNT
= 3;
1107 // Meta Transition handlers to deal with meta ReportRegionStateTransitionRequest. Meta transition
1108 // should be dealt with in a separate handler in case blocking other region's transition.
1109 public static final String MASTER_META_TRANSITION_HANDLER_COUNT
=
1110 "hbase.master.meta.transition.handler.count";
1111 public static final int MASTER__META_TRANSITION_HANDLER_COUNT_DEFAULT
= 1;
1113 /** Conf key for enabling meta replication */
1114 public static final String USE_META_REPLICAS
= "hbase.meta.replicas.use";
1115 public static final boolean DEFAULT_USE_META_REPLICAS
= false;
1116 public static final String META_REPLICAS_NUM
= "hbase.meta.replica.count";
1117 public static final int DEFAULT_META_REPLICA_NUM
= 1;
1120 * The name of the configuration parameter that specifies
1121 * the number of bytes in a newly created checksum chunk.
1123 public static final String BYTES_PER_CHECKSUM
=
1124 "hbase.hstore.bytes.per.checksum";
1127 * The name of the configuration parameter that specifies
1128 * the name of an algorithm that is used to compute checksums
1129 * for newly created blocks.
1131 public static final String CHECKSUM_TYPE_NAME
=
1132 "hbase.hstore.checksum.algorithm";
1134 /** Enable file permission modification from standard hbase */
1135 public static final String ENABLE_DATA_FILE_UMASK
= "hbase.data.umask.enable";
1136 /** File permission umask to use when creating hbase data files */
1137 public static final String DATA_FILE_UMASK_KEY
= "hbase.data.umask";
1139 /** Configuration name of WAL Compression */
1140 public static final String ENABLE_WAL_COMPRESSION
=
1141 "hbase.regionserver.wal.enablecompression";
1143 /** Configuration name of WAL storage policy
1144 * Valid values are: HOT, COLD, WARM, ALL_SSD, ONE_SSD, LAZY_PERSIST
1145 * See http://hadoop.apache.org/docs/r2.7.3/hadoop-project-dist/hadoop-hdfs/ArchivalStorage.html*/
1146 public static final String WAL_STORAGE_POLICY
= "hbase.wal.storage.policy";
1148 * "NONE" is not a valid storage policy and means we defer the policy to HDFS. @see
1149 * <a href="https://issues.apache.org/jira/browse/HBASE-20691">HBASE-20691</a>
1151 public static final String DEFER_TO_HDFS_STORAGE_POLICY
= "NONE";
1152 /** By default we defer the WAL storage policy to HDFS */
1153 public static final String DEFAULT_WAL_STORAGE_POLICY
= DEFER_TO_HDFS_STORAGE_POLICY
;
1155 /** Region in Transition metrics threshold time */
1156 public static final String METRICS_RIT_STUCK_WARNING_THRESHOLD
=
1157 "hbase.metrics.rit.stuck.warning.threshold";
1159 public static final String LOAD_BALANCER_SLOP_KEY
= "hbase.regions.slop";
1161 /** delimiter used between portions of a region name */
1162 public static final int DELIMITER
= ',';
1165 * QOS attributes: these attributes are used to demarcate RPC call processing
1166 * by different set of handlers. For example, HIGH_QOS tagged methods are
1167 * handled by high priority handlers.
1169 // normal_QOS < replication_QOS < replay_QOS < QOS_threshold < admin_QOS < high_QOS < meta_QOS
1170 public static final int PRIORITY_UNSET
= -1;
1171 public static final int NORMAL_QOS
= 0;
1172 public static final int REPLICATION_QOS
= 5;
1173 public static final int REPLAY_QOS
= 6;
1174 public static final int QOS_THRESHOLD
= 10;
1175 public static final int ADMIN_QOS
= 100;
1176 public static final int HIGH_QOS
= 200;
1177 public static final int SYSTEMTABLE_QOS
= HIGH_QOS
;
1179 * @deprecated the name "META_QOS" is a bit ambiguous, actually only meta region transition can
1180 * use this priority, and you should not use this directly. Will be removed in 3.0.0.
1183 public static final int META_QOS
= 300;
1185 /** Directory under /hbase where archived hfiles are stored */
1186 public static final String HFILE_ARCHIVE_DIRECTORY
= "archive";
1189 * Name of the directory to store all snapshots. See SnapshotDescriptionUtils for
1190 * remaining snapshot constants; this is here to keep HConstants dependencies at a minimum and
1193 public static final String SNAPSHOT_DIR_NAME
= ".hbase-snapshot";
1195 /* Name of old snapshot directory. See HBASE-8352 for details on why it needs to be renamed */
1196 public static final String OLD_SNAPSHOT_DIR_NAME
= ".snapshot";
1198 /** Temporary directory used for table creation and deletion */
1199 public static final String HBASE_TEMP_DIRECTORY
= ".tmp";
1201 * The period (in milliseconds) between computing region server point in time metrics
1203 public static final String REGIONSERVER_METRICS_PERIOD
= "hbase.regionserver.metrics.period";
1204 public static final long DEFAULT_REGIONSERVER_METRICS_PERIOD
= 5000;
1205 /** Directories that are not HBase table directories */
1206 public static final List
<String
> HBASE_NON_TABLE_DIRS
=
1207 Collections
.unmodifiableList(Arrays
.asList(new String
[] {
1208 HBCK_SIDELINEDIR_NAME
, HBASE_TEMP_DIRECTORY
, MIGRATION_NAME
1211 /** Health script related settings. */
1212 public static final String HEALTH_SCRIPT_LOC
= "hbase.node.health.script.location";
1213 public static final String HEALTH_SCRIPT_TIMEOUT
= "hbase.node.health.script.timeout";
1214 public static final String HEALTH_CHORE_WAKE_FREQ
=
1215 "hbase.node.health.script.frequency";
1216 public static final long DEFAULT_HEALTH_SCRIPT_TIMEOUT
= 60000;
1218 * The maximum number of health check failures a server can encounter consecutively.
1220 public static final String HEALTH_FAILURE_THRESHOLD
=
1221 "hbase.node.health.failure.threshold";
1222 public static final int DEFAULT_HEALTH_FAILURE_THRESHOLD
= 3;
1224 public static final String EXECUTOR_STATUS_COLLECT_ENABLED
=
1225 "hbase.executors.status.collect.enabled";
1226 public static final boolean DEFAULT_EXECUTOR_STATUS_COLLECT_ENABLED
= true;
1229 * Setting to activate, or not, the publication of the status by the master. Default
1230 * notification is by a multicast message.
1232 public static final String STATUS_PUBLISHED
= "hbase.status.published";
1233 public static final boolean STATUS_PUBLISHED_DEFAULT
= false;
1236 * IP to use for the multicast status messages between the master and the clients.
1237 * The default address is chosen as one among others within the ones suitable for multicast
1240 public static final String STATUS_MULTICAST_ADDRESS
= "hbase.status.multicast.address.ip";
1241 public static final String DEFAULT_STATUS_MULTICAST_ADDRESS
= "226.1.1.3";
1244 * The address to use for binding the local socket for receiving multicast. Defaults to
1246 * @see <a href="https://issues.apache.org/jira/browse/HBASE-9961">HBASE-9961</a>
1248 public static final String STATUS_MULTICAST_BIND_ADDRESS
=
1249 "hbase.status.multicast.bind.address.ip";
1250 public static final String DEFAULT_STATUS_MULTICAST_BIND_ADDRESS
= "0.0.0.0";
1253 * The port to use for the multicast messages.
1255 public static final String STATUS_MULTICAST_PORT
= "hbase.status.multicast.address.port";
1256 public static final int DEFAULT_STATUS_MULTICAST_PORT
= 16100;
1259 * The network interface name to use for the multicast messages.
1261 public static final String STATUS_MULTICAST_NI_NAME
= "hbase.status.multicast.ni.name";
1264 * The address to use for binding the local socket for sending multicast. Defaults to 0.0.0.0.
1266 public static final String STATUS_MULTICAST_PUBLISHER_BIND_ADDRESS
=
1267 "hbase.status.multicast.publisher.bind.address.ip";
1268 public static final String DEFAULT_STATUS_MULTICAST_PUBLISHER_BIND_ADDRESS
= "0.0.0.0";
1270 public static final long NO_NONCE
= 0;
1272 /** Default cipher for encryption */
1273 public static final String CIPHER_AES
= "AES";
1275 /** Configuration key for the crypto algorithm provider, a class name */
1276 public static final String CRYPTO_CIPHERPROVIDER_CONF_KEY
= "hbase.crypto.cipherprovider";
1278 /** Configuration key for the crypto key provider, a class name */
1279 public static final String CRYPTO_KEYPROVIDER_CONF_KEY
= "hbase.crypto.keyprovider";
1281 /** Configuration key for the crypto key provider parameters */
1282 public static final String CRYPTO_KEYPROVIDER_PARAMETERS_KEY
=
1283 "hbase.crypto.keyprovider.parameters";
1285 /** Configuration key for the name of the master key for the cluster, a string */
1286 public static final String CRYPTO_MASTERKEY_NAME_CONF_KEY
= "hbase.crypto.master.key.name";
1288 /** Configuration key for the name of the alternate master key for the cluster, a string */
1289 public static final String CRYPTO_MASTERKEY_ALTERNATE_NAME_CONF_KEY
=
1290 "hbase.crypto.master.alternate.key.name";
1292 /** Configuration key for the algorithm to use when encrypting the WAL, a string */
1293 public static final String CRYPTO_WAL_ALGORITHM_CONF_KEY
= "hbase.crypto.wal.algorithm";
1295 /** Configuration key for the name of the master WAL encryption key for the cluster, a string */
1296 public static final String CRYPTO_WAL_KEY_NAME_CONF_KEY
= "hbase.crypto.wal.key.name";
1298 /** Configuration key for the algorithm used for creating jks key, a string */
1299 public static final String CRYPTO_KEY_ALGORITHM_CONF_KEY
= "hbase.crypto.key.algorithm";
1301 /** Configuration key for the name of the alternate cipher algorithm for the cluster, a string */
1302 public static final String CRYPTO_ALTERNATE_KEY_ALGORITHM_CONF_KEY
=
1303 "hbase.crypto.alternate.key.algorithm";
1305 /** Configuration key for enabling WAL encryption, a boolean */
1306 public static final String ENABLE_WAL_ENCRYPTION
= "hbase.regionserver.wal.encryption";
1308 /** Configuration key for setting RPC codec class name */
1309 public static final String RPC_CODEC_CONF_KEY
= "hbase.client.rpc.codec";
1311 /** Configuration key for setting replication codec class name */
1312 public static final String REPLICATION_CODEC_CONF_KEY
= "hbase.replication.rpc.codec";
1314 /** Maximum number of threads used by the replication source for shipping edits to the sinks */
1315 public static final String REPLICATION_SOURCE_MAXTHREADS_KEY
=
1316 "hbase.replication.source.maxthreads";
1318 /** Drop edits for tables that been deleted from the replication source and target */
1319 public static final String REPLICATION_DROP_ON_DELETED_TABLE_KEY
=
1320 "hbase.replication.drop.on.deleted.table";
1322 /** Maximum number of threads used by the replication source for shipping edits to the sinks */
1323 public static final int REPLICATION_SOURCE_MAXTHREADS_DEFAULT
= 10;
1325 /** Configuration key for SplitLog manager timeout */
1326 public static final String HBASE_SPLITLOG_MANAGER_TIMEOUT
= "hbase.splitlog.manager.timeout";
1329 * Configuration keys for Bucket cache
1331 // TODO moving these bucket cache implementation specific configs to this level is violation of
1332 // encapsulation. But as these has to be referred from hbase-common and bucket cache
1333 // sits in hbase-server, there were no other go! Can we move the cache implementation to
1337 * Current ioengine options in include: heap, offheap and file:PATH (where PATH is the path
1338 * to the file that will host the file-based cache. See BucketCache#getIOEngineFromName() for
1339 * list of supported ioengine options.
1340 * <p>Set this option and a non-zero {@link #BUCKET_CACHE_SIZE_KEY} to enable bucket cache.
1342 public static final String BUCKET_CACHE_IOENGINE_KEY
= "hbase.bucketcache.ioengine";
1345 * When using bucket cache, this is a float that EITHER represents a percentage of total heap
1346 * memory size to give to the cache (if < 1.0) OR, it is the capacity in
1347 * megabytes of the cache.
1349 public static final String BUCKET_CACHE_SIZE_KEY
= "hbase.bucketcache.size";
1352 * HConstants for fast fail on the client side follow
1355 * Config for enabling/disabling the fast fail mode.
1356 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1357 * this value will have no effect. The constants itself will be removed in 4.0.0.
1360 public static final String HBASE_CLIENT_FAST_FAIL_MODE_ENABLED
=
1361 "hbase.client.fast.fail.mode.enabled";
1364 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1365 * this value will have no effect. The constants itself will be removed in 4.0.0.
1368 public static final boolean HBASE_CLIENT_ENABLE_FAST_FAIL_MODE_DEFAULT
= false;
1371 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1372 * this value will have no effect. The constants itself will be removed in 4.0.0.
1375 public static final String HBASE_CLIENT_FAST_FAIL_THREASHOLD_MS
=
1376 "hbase.client.fastfail.threshold";
1379 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1380 * this value will have no effect. The constants itself will be removed in 4.0.0.
1383 public static final long HBASE_CLIENT_FAST_FAIL_THREASHOLD_MS_DEFAULT
= 60000;
1386 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1387 * this value will have no effect. The constants itself will be removed in 4.0.0.
1390 public static final String HBASE_CLIENT_FAILURE_MAP_CLEANUP_INTERVAL_MS
=
1391 "hbase.client.failure.map.cleanup.interval";
1394 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1395 * this value will have no effect. The constants itself will be removed in 4.0.0.
1398 public static final long HBASE_CLIENT_FAILURE_MAP_CLEANUP_INTERVAL_MS_DEFAULT
= 600000;
1401 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1402 * this value will have no effect. The constants itself will be removed in 4.0.0.
1405 public static final String HBASE_CLIENT_FAST_FAIL_CLEANUP_MS_DURATION_MS
=
1406 "hbase.client.fast.fail.cleanup.duration";
1409 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1410 * this value will have no effect. The constants itself will be removed in 4.0.0.
1413 public static final long HBASE_CLIENT_FAST_FAIL_CLEANUP_DURATION_MS_DEFAULT
= 600000;
1416 * @deprecated since 2.3.0, and in 3.0.0 the actually implementation will be removed so config
1417 * this value will have no effect. The constants itself will be removed in 4.0.0.
1420 public static final String HBASE_CLIENT_FAST_FAIL_INTERCEPTOR_IMPL
=
1421 "hbase.client.fast.fail.interceptor.impl";
1423 public static final String HBASE_SPLIT_WAL_COORDINATED_BY_ZK
= "hbase.split.wal.zk.coordinated";
1425 public static final boolean DEFAULT_HBASE_SPLIT_COORDINATED_BY_ZK
= true;
1427 public static final String HBASE_SPLIT_WAL_MAX_SPLITTER
= "hbase.regionserver.wal.max.splitters";
1429 public static final int DEFAULT_HBASE_SPLIT_WAL_MAX_SPLITTER
= 2;
1431 /** Config key for if the server should send backpressure and if the client should listen to
1432 * that backpressure from the server */
1433 public static final String ENABLE_CLIENT_BACKPRESSURE
= "hbase.client.backpressure.enabled";
1434 public static final boolean DEFAULT_ENABLE_CLIENT_BACKPRESSURE
= false;
1436 public static final String HEAP_OCCUPANCY_LOW_WATERMARK_KEY
=
1437 "hbase.heap.occupancy.low_water_mark";
1438 public static final float DEFAULT_HEAP_OCCUPANCY_LOW_WATERMARK
= 0.95f
;
1439 public static final String HEAP_OCCUPANCY_HIGH_WATERMARK_KEY
=
1440 "hbase.heap.occupancy.high_water_mark";
1441 public static final float DEFAULT_HEAP_OCCUPANCY_HIGH_WATERMARK
= 0.98f
;
1444 * The max number of threads used for splitting storefiles in parallel during
1445 * the region split process.
1447 public static final String REGION_SPLIT_THREADS_MAX
=
1448 "hbase.regionserver.region.split.threads.max";
1450 /** Canary config keys */
1451 // TODO: Move these defines to Canary Class
1452 public static final String HBASE_CANARY_WRITE_DATA_TTL_KEY
= "hbase.canary.write.data.ttl";
1454 public static final String HBASE_CANARY_WRITE_PERSERVER_REGIONS_LOWERLIMIT_KEY
=
1455 "hbase.canary.write.perserver.regions.lowerLimit";
1457 public static final String HBASE_CANARY_WRITE_PERSERVER_REGIONS_UPPERLIMIT_KEY
=
1458 "hbase.canary.write.perserver.regions.upperLimit";
1460 public static final String HBASE_CANARY_WRITE_VALUE_SIZE_KEY
= "hbase.canary.write.value.size";
1462 public static final String HBASE_CANARY_WRITE_TABLE_CHECK_PERIOD_KEY
=
1463 "hbase.canary.write.table.check.period";
1465 public static final String HBASE_CANARY_READ_RAW_SCAN_KEY
= "hbase.canary.read.raw.enabled";
1468 * Configuration keys for programmatic JAAS configuration for secured ZK interaction
1470 public static final String ZK_CLIENT_KEYTAB_FILE
= "hbase.zookeeper.client.keytab.file";
1471 public static final String ZK_CLIENT_KERBEROS_PRINCIPAL
=
1472 "hbase.zookeeper.client.kerberos.principal";
1473 public static final String ZK_SERVER_KEYTAB_FILE
= "hbase.zookeeper.server.keytab.file";
1474 public static final String ZK_SERVER_KERBEROS_PRINCIPAL
=
1475 "hbase.zookeeper.server.kerberos.principal";
1477 /** Config key for hbase temporary directory in hdfs */
1478 public static final String TEMPORARY_FS_DIRECTORY_KEY
= "hbase.fs.tmp.dir";
1481 * Don't use it! This'll get you the wrong path in a secure cluster.
1482 * Use FileSystem.getHomeDirectory() or
1483 * "/user/" + UserGroupInformation.getCurrentUser().getShortUserName()
1485 public static final String DEFAULT_TEMPORARY_HDFS_DIRECTORY
= "/user/"
1486 + System
.getProperty("user.name") + "/hbase-staging";
1488 public static final String SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT
=
1489 "hbase.snapshot.restore.take.failsafe.snapshot";
1490 public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT
= true;
1492 public static final String SNAPSHOT_RESTORE_FAILSAFE_NAME
=
1493 "hbase.snapshot.restore.failsafe.name";
1494 public static final String DEFAULT_SNAPSHOT_RESTORE_FAILSAFE_NAME
=
1495 "hbase-failsafe-{snapshot.name}-{restore.timestamp}";
1497 public static final String DEFAULT_LOSSY_COUNTING_ERROR_RATE
=
1498 "hbase.util.default.lossycounting.errorrate";
1499 public static final String NOT_IMPLEMENTED
= "Not implemented";
1501 // Default TTL - FOREVER
1502 public static final long DEFAULT_SNAPSHOT_TTL
= 0;
1504 // User defined Default TTL config key
1505 public static final String DEFAULT_SNAPSHOT_TTL_CONFIG_KEY
= "hbase.master.snapshot.ttl";
1507 // Regions Recovery based on high storeFileRefCount threshold value
1508 public static final String STORE_FILE_REF_COUNT_THRESHOLD
=
1509 "hbase.regions.recovery.store.file.ref.count";
1511 // default -1 indicates there is no threshold on high storeRefCount
1512 public static final int DEFAULT_STORE_FILE_REF_COUNT_THRESHOLD
= -1;
1514 public static final String REGIONS_RECOVERY_INTERVAL
=
1515 "hbase.master.regions.recovery.check.interval";
1517 public static final int DEFAULT_REGIONS_RECOVERY_INTERVAL
= 1200 * 1000; // Default 20 min
1520 * Configurations for master executor services.
1522 public static final String MASTER_OPEN_REGION_THREADS
=
1523 "hbase.master.executor.openregion.threads";
1524 public static final int MASTER_OPEN_REGION_THREADS_DEFAULT
= 5;
1526 public static final String MASTER_CLOSE_REGION_THREADS
=
1527 "hbase.master.executor.closeregion.threads";
1528 public static final int MASTER_CLOSE_REGION_THREADS_DEFAULT
= 5;
1530 public static final String MASTER_SERVER_OPERATIONS_THREADS
=
1531 "hbase.master.executor.serverops.threads";
1532 public static final int MASTER_SERVER_OPERATIONS_THREADS_DEFAULT
= 5;
1534 public static final String MASTER_META_SERVER_OPERATIONS_THREADS
=
1535 "hbase.master.executor.meta.serverops.threads";
1536 public static final int MASTER_META_SERVER_OPERATIONS_THREADS_DEFAULT
= 5;
1538 public static final String MASTER_LOG_REPLAY_OPS_THREADS
=
1539 "hbase.master.executor.logreplayops.threads";
1540 public static final int MASTER_LOG_REPLAY_OPS_THREADS_DEFAULT
= 10;
1542 public static final int DEFAULT_SLOW_LOG_RING_BUFFER_SIZE
= 256;
1544 public static final String SLOW_LOG_BUFFER_ENABLED_KEY
=
1545 "hbase.regionserver.slowlog.buffer.enabled";
1546 public static final boolean DEFAULT_ONLINE_LOG_PROVIDER_ENABLED
= false;
1548 private HConstants() {
1549 // Can't be instantiated with this ctor.