You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -197,6 +197,12 @@ public final class HConstants {
18
-
/** Parameter name for port master listens on. */
17
+
@@ -194,18 +194,27 @@ public final class HConstants {
18
+
/** default host address */
19
+
public static final String DEFAULT_HOST = "0.0.0.0";
20
+
21
+
- /** Parameter name for port master listens on. */
22
+
+ /** Parameter name for port master advertises as listening on. */
19
23
public static final String MASTER_PORT = "hbase.master.port";
20
24
21
-
+ /** Parameter name for master IPC address */
25
+
+ /** Parameter name for IPC address that master listens on. (Defaults to hostname.) */
22
26
+ public static final String MASTER_IPC_ADDRESS = "hbase.master.ipc.address";
23
27
+
24
-
+ /** Parameter name for master IPC port */
28
+
+ /** Parameter name for IPC port that master listens on. (Defaults to MASTER_PORT.) */
25
29
+ public static final String MASTER_IPC_PORT = "hbase.master.ipc.port";
26
30
+
27
31
/** default port that the master listens on */
28
32
public static final int DEFAULT_MASTER_PORT = 16000;
29
33
30
-
@@ -206,6 +212,9 @@ public final class HConstants {
31
-
/** Configuration key for master web API port */
34
+
/** default port for master web api */
35
+
public static final int DEFAULT_MASTER_INFOPORT = 16010;
36
+
37
+
- /** Configuration key for master web API port */
38
+
+ /** Configuration key for advertised master web API port */
32
39
public static final String MASTER_INFO_PORT = "hbase.master.info.port";
33
40
34
-
+ /** Configuration key for bound master web API port */
41
+
+ /** Configuration key for bound master web API port. (Defaults to MASTER_INFO_PORT.) */
35
42
+ public static final String MASTER_BOUND_INFO_PORT = "hbase.master.bound.info.port";
36
43
+
37
44
/** Configuration key for the list of master host:ports **/
38
45
public static final String MASTER_ADDRS_KEY = "hbase.masters";
39
46
40
-
@@ -316,6 +325,12 @@ public final class HConstants {
41
-
/** Parameter name for port region server listens on. */
47
+
@@ -313,18 +322,27 @@ public final class HConstants {
48
+
/** Default value for ZooKeeper session timeout */
49
+
public static final int DEFAULT_ZK_SESSION_TIMEOUT = 90 * 1000;
50
+
51
+
- /** Parameter name for port region server listens on. */
52
+
+ /** Parameter name for port region server advertises as listening on. */
42
53
public static final String REGIONSERVER_PORT = "hbase.regionserver.port";
43
54
44
-
+ /** Parameter name for master IPC address */
55
+
+ /** Parameter name for IPC address that region server listens on. (Defaults to hostname.) */
45
56
+ public static final String REGIONSERVER_IPC_ADDRESS = "hbase.regionserver.ipc.address";
46
57
+
47
-
+ /** Parameter name for master IPC port */
58
+
+ /** Parameter name for IPC port that region server listens on. (Defaults to REGIONSERVER_PORT.) */
48
59
+ public static final String REGIONSERVER_IPC_PORT = "hbase.regionserver.ipc.port";
49
60
+
50
61
/** Default port region server listens on. */
51
62
public static final int DEFAULT_REGIONSERVER_PORT = 16020;
52
63
53
-
@@ -325,6 +340,9 @@ public final class HConstants {
54
-
/** A configuration key for regionserver info port */
64
+
/** default port for region server web api */
65
+
public static final int DEFAULT_REGIONSERVER_INFOPORT = 16030;
66
+
67
+
- /** A configuration key for regionserver info port */
68
+
+ /** Configuration key for advertised region server web API port */
55
69
public static final String REGIONSERVER_INFO_PORT = "hbase.regionserver.info.port";
56
70
57
-
+ /** A configuration key for bound regionserver hbase info port */
71
+
+ /** Configuration key for bound region server web API port. (Defaults to REGIONSERVER_INFO_PORT.) */
58
72
+ public static final String REGIONSERVER_BOUND_INFO_PORT = "hbase.regionserver.bound.info.port";
59
73
+
60
74
/** A flag that enables automatic selection of regionserver info port */
@@ -64,8 +78,8 @@ index 3b2a58827f..1ba1feefcb 100644
64
78
/** Configuration key for setting RPC codec class name */
65
79
public static final String RPC_CODEC_CONF_KEY = "hbase.client.rpc.codec";
66
80
67
-
+ /** Configuration key for setting that the RPC client should specify the host */
68
-
+ public static final String RPC_CLIENT_SPECIFY_HOST = "hbase.rpc.client.specify.host";
81
+
+ /** Configuration key for setting that the RPC client should bind the client address. This forces outgoing RPC traffic to happen from the same network interface that the RPC server is bound on. */
82
+
+ public static final String RPC_CLIENT_BIND_ADDRESS = "hbase.client.rpc.bind.address";
69
83
+
70
84
/** Configuration key for setting replication codec class name */
71
85
public static final String REPLICATION_CODEC_CONF_KEY = "hbase.replication.rpc.codec";
@@ -123,7 +137,7 @@ index 3fe5abac27..2f323518da 100644
0 commit comments