0
我有一個shell腳本script.sh,它需要一個屬性文件script.properties。Oozie shell腳本作業
我執行該腳本: ./script.sh script.properties
現在我想用Oozie的運行此腳本。
如何將script.properties文件傳遞給script.sh。
我有一個shell腳本script.sh,它需要一個屬性文件script.properties。Oozie shell腳本作業
我執行該腳本: ./script.sh script.properties
現在我想用Oozie的運行此腳本。
如何將script.properties文件傳遞給script.sh。
將屬性文件複製到與script.sh相同的hdfs路徑中,並在workflow.xml中添加爲<file>[FILE-PATH]</file>
。
檢查此鏈接的shell行爲示例http://rogerhosto.com/apache-oozie-shell-script-example/