as a newbie with Oozie, I tried to run some tutorials by command line. My stepByStep:
- upload my Oozie project (workflow xml file, job.properties file, jar and data) to HDFS via HUE interface. In my job.properties files, I've indicated every information like data name node, path to my application, ...
- running via HUE interface, simply, I check on check box of workflow xml file and submit
I would like to run my Oozie project by command line:
- with job.properties file in local, I run: oozie job -oozie http://localhost:11000/oozie -config examples/apps/map-reduce/job.properties -run
How can I run my Oozie project instead of with the job.properties in local (instead of the config file in local, I want to run my job with the configuration file in HDFS)?
Thanks for any suggestion and feel free to comment if my question is not clear!