我正在尝试使用sqoop将数据从Mysql导入到Hbase.
我正在运行以下命令.
sqoop import –connect jdbc:mysql:// localhost / database –table users –columns“ loginid,email” –username tester -P -m 8 –hbase-table hbaseTable –hbase-row-key user_id- -column-family user_info –hbase-create-table
但我得到以下错误:-
13/05/08 10:42:10 WARN hbase.ToStringPutTransformer: Could not insert
row with null value for row-key column: user_id
请在这里帮助
解决方法:
得到了解决方案.
我没有在列列表中包含我的rowKey即user_id.
包含它之后,它就像一种魅力.
谢谢..