Fix inconsistent spark driver and executor image #3996
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The Spark driver and executor image version can be inconsistent in a Tron action run when a job is already scheduled before the image is updated, which causes an InvalidClassException if the image's Spark version was changed.
Behavior:
META
section, thePAASTA_DOCKER_IMAGE
used is the latest version in theConfig command
Solution
Set
spark.kubernetes.container.image
to$PAASTA_DOCKER_IMAGE
when generating the spark-submit command, to read the environment variable set by Tron, which is the image that Spark driver uses.Test
Checking the environment variable we are referencing for Tron in this PR
and
spark.kubernetes.container.image
should be something like:docker-paasta.yelpcorp.com:443/services-spark:<iamge_tag>
Release Plan
Pin the paasta version everywhere except pnw-devc, to test in devc first.