eternityzzy 2015-05-26
http://blog.csdn.net/bluishglc/article/details/46005269
这个链接是说 关于oozie系统库systm lib path hdfs设定位置
http://ju.outofmemory.cn/entry/31134
这个链接是说 Oozie 出现 ClassNotFoundException 解决方法
关于在 workflow的job.properties中设置额外引用包做法
就是说:
默认oozie系统库在 oozie.site.xml中 用 <value>/user/${user.name}/share/lib</value>中产生
那么在java调用oozie 并灵活的指定 额外包(非oozie产生的默认系统包) 那么需要在
job.properties中这么写:
oozie.use.system.libpath=true ----> 这个是说明使用oozie的system share lib
oozie.libpath=hdfs://master:9000/user/hdfs/examples/lib ----> 这个是说明使用额外的jar 比如你项目中用到的并且需要放在hdfs 运行时夹在hdfs这些包 如果需要多个hdfs路径 那么中间使用 逗号 分隔
system share lib 是为像 DistCp, Streaming, Pig, Sqoop, and Hive之类Action,需要额外的Jar包才能运行,
它是为上面说的那些特殊的action和他们对应的JARs而准备的。