-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-13979][Core] Killed executor is re spawned without AWS key… #14601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
9efc140
89e7c97
ab6ab9b
9765dc9
dee4e6d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
added comment with jira number
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -107,6 +107,7 @@ class SparkHadoopUtil extends Logging { | |
| if (key.startsWith("spark.hadoop.")) { | ||
| hadoopConf.set(key.substring("spark.hadoop.".length), value) | ||
| } | ||
| // fix added for SPARK-13979 | ||
| // Copy any "fs.swift2d.foo=bar" or "fs.swift.foo=bar" properties into conf | ||
| else if (key.startsWith("fs.swift")){ | ||
| hadoopConf.set(key, value) | ||
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the comment above does not apply for the whole loop anymore and should be moved to this if statement
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.