-
Notifications
You must be signed in to change notification settings - Fork 29.3k
[SPARK-31651][CORE] Improve handling the case where different barrier sync types in a single sync #28462
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
Closed
Closed
[SPARK-31651][CORE] Improve handling the case where different barrier sync types in a single sync #28462
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,7 +21,7 @@ import java.util.{Timer, TimerTask} | |
| import java.util.concurrent.ConcurrentHashMap | ||
| import java.util.function.Consumer | ||
|
|
||
| import scala.collection.mutable.ArrayBuffer | ||
| import scala.collection.mutable.{ArrayBuffer, HashSet} | ||
|
|
||
| import org.apache.spark.internal.Logging | ||
| import org.apache.spark.rpc.{RpcCallContext, RpcEnv, ThreadSafeRpcEndpoint} | ||
|
|
@@ -108,7 +108,7 @@ private[spark] class BarrierCoordinator( | |
|
|
||
| // The request method which is called inside this barrier sync. All tasks should make sure | ||
| // that they're calling the same method within the same barrier sync phase. | ||
| private var requestMethod: RequestMethod.Value = _ | ||
| private val requestMethods = new HashSet[RequestMethod.Value] | ||
|
|
||
| // A timer task that ensures we may timeout for a barrier() call. | ||
| private var timerTask: TimerTask = null | ||
|
|
@@ -141,17 +141,14 @@ private[spark] class BarrierCoordinator( | |
| val taskId = request.taskAttemptId | ||
| val epoch = request.barrierEpoch | ||
| val curReqMethod = request.requestMethod | ||
|
|
||
| if (requesters.isEmpty) { | ||
| requestMethod = curReqMethod | ||
| } else if (requestMethod != curReqMethod) { | ||
| requesters.foreach( | ||
| _.sendFailure(new SparkException(s"$barrierId tried to use requestMethod " + | ||
| s"`$curReqMethod` during barrier epoch $barrierEpoch, which does not match " + | ||
| s"the current synchronized requestMethod `$requestMethod`" | ||
| )) | ||
| ) | ||
| cleanupBarrierStage(barrierId) | ||
| requestMethods.add(curReqMethod) | ||
| if (requestMethods.size > 1) { | ||
| val error = new SparkException(s"Different barrier sync types found for the " + | ||
| s"sync $barrierId: ${requestMethods.mkString(", ")}. Please use the " + | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I intentionally ignored barrier epoch here because it ( |
||
| s"same barrier sync type within a single sync.") | ||
| (requesters :+ requester).foreach(_.sendFailure(error)) | ||
| clear() | ||
| return | ||
| } | ||
|
|
||
| // Require the number of tasks is correctly set from the BarrierTaskContext. | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
@Ngone51 Super Nit: Perhaps change the comment here to reflect the change ?
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.
Sure, thanks.