From d039c71fa9b0823b870d4483ace73a1d660a61d2 Mon Sep 17 00:00:00 2001 From: Biju Nair Date: Tue, 28 May 2019 22:06:36 -0400 Subject: [PATCH] HBASE-12169 Document IPC binding options --- .../src/main/resources/hbase-default.xml | 6 +++++ src/main/asciidoc/_chapters/ops_mgt.adoc | 22 +++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git hbase-common/src/main/resources/hbase-default.xml hbase-common/src/main/resources/hbase-default.xml index 10eb47b543..ee123f989b 100644 --- hbase-common/src/main/resources/hbase-default.xml +++ hbase-common/src/main/resources/hbase-default.xml @@ -332,6 +332,12 @@ possible configurations would overwhelm and obscure the important. Default 1 hour. Set it to 0 to disable automatic flushing. + + hbase.master.dns.interface + default + The name of the Network Interface from which a master + should report its IP address. + hbase.regionserver.dns.interface default diff --git src/main/asciidoc/_chapters/ops_mgt.adoc src/main/asciidoc/_chapters/ops_mgt.adoc index 9cbe3d359b..a7ea7d5d53 100644 --- src/main/asciidoc/_chapters/ops_mgt.adoc +++ src/main/asciidoc/_chapters/ops_mgt.adoc @@ -30,6 +30,28 @@ This chapter will cover operational tools and practices required of a running Apache HBase cluster. The subject of operations is related to the topics of <>, <>, and <> but is a distinct topic in itself. +== Binding HBase processes to specific address + +The following properties can be used to bind HBase processes to specific address. + +[[hbase.master.ipc.address]] +*`hbase.master.ipc.address`*:: + +.Description +The bind address for master IPC. Specify to 0.0.0.0 for all interfaces. + +.Default +`default` + +[[hbase.regionserver.ipc.address]] +*`hbase.regionserver.ipc.address`*:: + +.Description +The bind address for region server IPC. Specify to 0.0.0.0 for all interfaces. + +.Default +`default` + [[tools]] == HBase Tools and Utilities -- 2.20.1 (Apple Git-117)