Reputation: 1495
In dataproc serverless, the underlying vm is hidden. How to change log level in dataproc serverless spark?
--properties ^@^spark.executor.extraJavaOptions=-Dlog4j.configuration=spark-log4j2.properties \
--files spark-log4j2.properties \
Upvotes: 0
Views: 205
Reputation: 1495
Adding file:
prefix worked.
--properties ^@^spark.executor.extraJavaOptions=-Dlog4j.configuration=file:spark-log4j2.properties \
--files spark-log4j2.properties \
Upvotes: 0