HBase WAL 复制 - 是否支持从 HBase 1.1.2 集群到 HBase 2.0.2 集群的 WAL 复制?
HBase WAL replication - Is WAL replication from cluster with HBase 1.1.2 to cluster with HBase 2.0.2 supported?
是否支持从 HBase 1.1.2 集群到 HBase 2.0.2 集群的 HBase WAL 复制?尝试了一个简单的测试,其中在两个集群
中都创建了以下 table
create 'repl_test', { NAME => 'cf1', REPLICATION_SCOPE => '1'}
发出 enable_table_replication 'repl_test'
以启用复制时出现以下错误消息,这似乎不正确,因为我使用了与上面提到的完全相同的创建语句来创建 tables两个集群。
ERROR: Table repl_test exists in peer cluster 1, but the table
descriptors are not same when comapred with source cluster. Thus can
not enable the table's replication switch.
从Hbase用户论坛得到答案。支持从 hbase1 到 hbase2 的复制。问题是由于 HBASE-24354,已在 2.3.0
中修复
是否支持从 HBase 1.1.2 集群到 HBase 2.0.2 集群的 HBase WAL 复制?尝试了一个简单的测试,其中在两个集群
中都创建了以下 tablecreate 'repl_test', { NAME => 'cf1', REPLICATION_SCOPE => '1'}
发出 enable_table_replication 'repl_test'
以启用复制时出现以下错误消息,这似乎不正确,因为我使用了与上面提到的完全相同的创建语句来创建 tables两个集群。
ERROR: Table repl_test exists in peer cluster 1, but the table descriptors are not same when comapred with source cluster. Thus can not enable the table's replication switch.
从Hbase用户论坛得到答案。支持从 hbase1 到 hbase2 的复制。问题是由于 HBASE-24354,已在 2.3.0
中修复