在将 XML 数据文件加载到 HIVE 表中时,我收到以下错误消息:
FAILED: SemanticException 7:9 Input format must implement InputFormat. Error encountered near token 'StoresXml'.
我加载 XML 文件的方式如下:
**创建一个表StoresXml
'CREATE EXTERNAL TABLE StoresXml (storexml string)
STORED AS INPUTFORMAT 'org.apache.mahout.classifier.bayes.XmlInputFormat'
OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat'
LOCATION '/user/hive/warehouse/stores';'
** 位置 /user/hive/warehouse/stores 在 HDFS 中。
load data inpath <local path where the xml file is stored> into table StoresXml;
现在,问题是当我从表 StoresXml 中选择任何列时,就会出现上述错误。
请帮帮我。我哪里出错了?