I have a spark application, that I run with the command
/usr/hdp/spark2-client/bin/spark-submit \
--name 'App' \
--class 'someFolder.SomeApp \
--master "yarn" \
--deploy-mode "cluster" \
--num-executors 4 \
--executor-cores 3 \
--executor-memory 4g \
--conf spark.sql.shuffle.partitions=10 \
--conf spark.default.parallelism=10 \
--files 'hdfs:///file1','hdfs:///file2' \
'assembly-0.25.0-3-ge05360d.jar' \
'param1' 'param2'
but now I want to run it in oozie. My question is - how I can represent such params as --files
that is a list of files, in job.properties
file?