hbase-common/src/main/resources/hbase-default.xml | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/hbase-common/src/main/resources/hbase-default.xml b/hbase-common/src/main/resources/hbase-default.xml
index 43723f8..0a0d37e 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -700,7 +700,8 @@ possible configurations would overwhelm and obscure the important.
3
The HFile format version to use for new files.
Version 3 adds support for tags in hfiles (See http://hbase.apache.org/book.html#hbase.tags).
- Distributed Log Replay requires that tags are enabled.
+ Distributed Log Replay requires that tags are enabled. Also see the configuration
+ 'hbase.replication.rpc.codec'.
@@ -1254,6 +1255,17 @@ possible configurations would overwhelm and obscure the important.
ThreadPool.
+
+ hbase.replication.rpc.codec
+ org.apache.hadoop.hbase.codec.KeyValueCodecWithTags
+
+ The codec that is to be used when replication is enabled so that
+ the tags are also replicated. This is used along with HFileV3 which
+ supports tags in them. If tags are not used or if the hfile version used
+ is HFileV2 then KeyValueCodec can be used as the replication codec. Note that
+ using KeyValueCodecWithTags for replication when there are no tags causes no harm.
+
+