0

我打算将数据从本地 hbase 导出到我的生产 hbase 表,在这里我想将导出的数据附加到生产中。我怎样才能实现?我可以在生产中使用 hbase 导出 shell 命令和导入吗?它会将数据附加到现有表吗?有没有相同的工具?

$ bin/hbase org.apache.hadoop.hbase.mapreduce.Export <tablename> <outputdir> [<versions> [<starttime> [<endtime>]]]

$ bin/hbase org.apache.hadoop.hbase.mapreduce.Import <tablename> <inputdir>
4

1 回答 1

0

copyTable

CopyTable 是一个实用程序,可以将表的一部分或全部复制到同一个集群或另一个集群。

于 2012-12-17T08:16:21.873 回答