Phoenix CSV导入数据错误:Inconsistent namespace mapping properites

命令:

hadoop jar phoenix-4.8.0-cdh5.8.0-client.jar org.apache.phoenix.mapreduce.CsvBulkLoadTool --schema PHOENIX0000 \

--table tableName--input /user/hdfs/dataDemo.csv -delimiter '$' --ignore-errors

错误:

Exception in thread "main" java.sql.SQLException: ERROR 726 (43M10):  

Inconsistent namespace mapping properites.. Cannot initiate connection as SYSTEM:CATALOG is found but client does not have phoenix.schema.isNamespaceMappingEnabled enabled

原因:

    客户端的 hbase-site.xml 没有配置: phoenix.schema.isNamespaceMappingEnabled 属性

解决办法:

    第一步:修改 /etc/hbase/conf/hbase-site.xml

    第二步:删除 phoenix-4.8.0-cdh5.8.0/bin/hbase-site.xml, 最好是删除phoenix/bin/目录下的所有有关hbase的xml配置文件, bin目录下找不到, 它会自动到/etc/hbase/conf/目录下找

    在两个hbase-site.xml中添加如下属性

 
    phoenix.schema.isNamespaceMappingEnabled
    true
 

 

如果上面两步还是不行, 可能是你的环境变量设置的有问题, 手动指定一下HADOOP_CLASSPATH, 命令如下

HADOOP_CLASSPATH=/etc/hbase/conf/ hadoop jar phoenix-4.8.0-cdh5.8.0-client.jar org.apache.phoenix.mapreduce.CsvBulkLoadTool --schema PHOENIX0000 --table tableName--input /user/hdfs/dataDemo.csv -delimiter '$' --ignore-errors

注意:

  --ignore-errors 这个参数生产上绝对不能用, 很容易丢数的, 那就搞大了

你可能感兴趣的:(Phoenix)