我正在尝试将 xml 文件加载到配置单元表中。我在这里使用 xml serde 。我能够加载简单的平面 xml 文件。但是当 xml 中有嵌套元素时,我使用 hive 复杂数据类型来存储它们(例如,array<struct>
)。下面是我尝试加载的示例 xml。我的目标是将所有元素、属性和内容加载到配置单元表中。
<description action="up">
<name action="aorup" ln="te">
this is name1
</name>
<name action="aorup" ln="tm">
this is name2
</name>
<name action="aorup" ln="hi">
this is name2
</name>
</description>
我试图获得的 Hive 输出是......
{action:"up", name:[{action:"aorup", ln:"te", content:"this is name1"}, {action:"aorup", ln:"tm", content:"this is name2"}, {action:"aorup", ln:"hi", content:"this is name3"}]}
我想将整个 xml 加载到单个配置单元列中。我尝试了以下方法:
CREATE TABLE description(
description STRUCT<
Action:STRING,
name:ARRAY<STRUCT<
Action:STRING, ln:STRING, content:STRING
>>
>)
ROW FORMAT SERDE 'com.ibm.spss.hive.serde2.xml.XmlSerDe'
WITH SERDEPROPERTIES (
"xml.processor.class"="com.ximpleware.hive.serde2.xml.vtd.XmlProcessor",
"column.xpath.description"="/description")
STORED AS INPUTFORMAT 'com.ibm.spss.hive.serde2.xml.XmlInputFormat'
OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.IgnoreKeyTextOutputFormat'
TBLPROPERTIES ("xmlinput.start"="<description ","xmlinput.end"= "</description>");
但是我得到了Label
字段的空值。有人能帮我吗?
谢谢