当前位置: 首页 > 工具软件 > OpenX > 使用案例 >

解决Hive json Class org.openx.data.jsonserde.JsonSerDe not found Exception

邴姚石
2023-12-01

向Hive中导入json jar包:把jar包放入$HIVE_HOME/lib/ 目录下(或其他目录中),在hive cli中执行
hive>add jar jar包的存放路径 ,例如:

hive> add jar $HIVE_HOME/lib/json-serde-1.3-jar-with-dependencies.jar;(临时生效)

或者在hive-site.xml中添加属性:配置
 永久生效

<property>

   <name>hive.aux.jars.path</name>
   <value>file:///export/servers/hive-1.1.0-cdh5.14.0/lib/json-serde-1.3.8-jar-with- 
    dependencies.jar</value>
</property>

还要向Hadoop中导入json jar包:直接把jar包放在$HADOOP_HOME/share/hadoop/mapreduce/下即可,注意:一定要放到这个目录中。

OK!

注意:还要添加一个属性配置是将压缩设置为false

<property>
     <name>hive.exec.compress.output</name>
     <value>false</value>
</property>

 

 类似资料: