-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-6980] [CORE] Akka timeout exceptions indicate which conf controls them (RPC Layer) #6205
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
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
97523e0
[SPARK-6980] Akka ask timeout description refactored to RPC layer
BryanCutler 78a2c0a
[SPARK-6980] Using RpcTimeout.awaitResult for future in AppClient now
BryanCutler 5b59a44
[SPARK-6980] Added some RpcTimeout unit tests
BryanCutler 49f9f04
[SPARK-6980] Minor cleanup and scala style fix
BryanCutler 23d2f26
[SPARK-6980] Fixed await result not being handled by RpcTimeout
BryanCutler a294569
[SPARK-6980] Added creation of RpcTimeout with Seq of property keys
BryanCutler f74064d
Retrieving properties from property list using iterator and while loo…
0ee5642
Changing the loop condition to halt at the first match in the propert…
4be3a8d
Modifying loop condition to find property match
b7fb99f
Merge pull request #2 from hardmettle/configTimeoutUpdates_6980
BryanCutler c07d05c
Merge branch 'master' into configTimeout-6980-tmp
BryanCutler 235919b
[SPARK-6980] Resolved conflicts after master merge
BryanCutler 2f94095
[SPARK-6980] Added addMessageIfTimeout for when a Future is completed…
BryanCutler 1607a5f
[SPARK-6980] Changed addMessageIfTimeout to PartialFunction, cleanup …
BryanCutler 4351c48
[SPARK-6980] Added UT for addMessageIfTimeout, cleaned up UTs
BryanCutler 7774d56
[SPARK-6980] Cleaned up UT imports
BryanCutler 995d196
[SPARK-6980] Cleaned up import ordering, comments, spacing from PR fe…
BryanCutler d3754d1
[SPARK-6980] Added akkaConf to prevent dead letter logging
BryanCutler 08f5afc
[SPARK-6980] Added UT for constructing RpcTimeout with default value
BryanCutler 1b9beab
[SPARK-6980] Cleaned up import ordering
BryanCutler 2206b4d
[SPARK-6980] Added unit test for ask then immediat awaitReply
BryanCutler 1517721
[SPARK-6980] RpcTimeout object scope should be private[spark]
BryanCutler 1394de6
[SPARK-6980] Moved MessagePrefix to createRpcTimeoutException directly
BryanCutler c6cfd33
[SPARK-6980] Changed UT ask message timeout to explicitly intercept a…
BryanCutler b05d449
[SPARK-6980] Changed constructor to use val duration instead of gette…
BryanCutler fa6ed82
[SPARK-6980] Had to increase timeout on positive test case because a …
BryanCutler fadaf6f
[SPARK-6980] Put back in deprecated RpcUtils askTimeout and lookupTim…
BryanCutler 218aa50
[SPARK-6980] Corrected issues from feedback
BryanCutler 039afed
[SPARK-6980] Corrected import organization
BryanCutler be11c4e
Merge branch 'master' into configTimeout-6980
BryanCutler 7636189
[SPARK-6980] Fixed call to askWithReply in DAGScheduler to use RpcTim…
BryanCutler 3a168c7
[SPARK-6980] Rewrote Akka RpcTimeout UTs in RpcEnvSuite
BryanCutler 3d8b1ff
[SPARK-6980] Cleaned up imports in AkkaRpcEnvSuite
BryanCutler 287059a
[SPARK-6980] Removed extra import in AkkaRpcEnvSuite
BryanCutler 7f4d78e
[SPARK-6980] Fixed scala style checks
BryanCutler 6a1c50d
[SPARK-6980] Minor cleanup of test case
BryanCutler 4e89c75
[SPARK-6980] Missed one usage of deprecated RpcUtils.askTimeout in Ya…
BryanCutler dbd5f73
[SPARK-6980] Changed RpcUtils askRpcTimeout and lookupRpcTimeout scop…
BryanCutler 7bb70f1
Merge branch 'master' into configTimeout-6980
BryanCutler 06afa53
[SPARK-6980] RpcTimeout class extends Serializable, was causing error…
BryanCutler 46c8d48
[SPARK-6980] Changed RpcEnvSuite test to never reply instead of just …
BryanCutler 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
[SPARK-6980] Cleaned up imports in AkkaRpcEnvSuite
- Loading branch information
commit 3d8b1ff9a1924f990ac550a71cd65c40e2adfb5a
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
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.
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.
nit: delete extra newline
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