Hi,
I’m trying to run the following command
hailctl dataproc submit \
--files=${my_files} \
${cluster_name} \
${script.py} \
${jobarg1} \
...
which results in this gcloud
command being run:
gcloud dataproc jobs submit pyspark ${my_script.py} \
--files=${my_files} \
--py-files=/tmp/pyscripts_3bv_9tw7.zip \
--properties= \
-- \
${jobarg1}
My issue is that I also want to run gcloud dataproc submit
with the --driver-log-levels root=WARN
parameter to get something like this:
gcloud dataproc jobs submit pyspark ${my_script.py} \
--files=${my_files} \
--driver-log-levels root=WARN \
--py-files=/tmp/pyscripts_3bv_9tw7.zip \
--properties= \
-- \
${jobarg1}
I cannot figure out the hailctl dataproc submit
command which would successfully pass the --driver-log-levels root=WARN
paramter to gcloud dataproc