Uh oh!
There was an error while loading. Please reload this page.
[SPARK-19937] Collect metrics for remote bytes read to disk during shuffle. - #18249
Closed
jinxing64 wants to merge 2 commits into
Closed
[SPARK-19937] Collect metrics for remote bytes read to disk during shuffle.#18249jinxing64 wants to merge 2 commits into
jinxing64 wants to merge 2 commits into
Conversation
SparkQA
commented
Jun 9, 2017
Test build #77840 has finished for PR 18249 at commit
|
vanzin
reviewed
Jun 15, 2017
vanzin
left a comment
Contributor
There was a problem hiding this comment.
Looks ok. At first I wasn't really sold on the name but can't think of something better either.
| lazy val v23excludes = v22excludes ++ Seq( | ||
| // [SPARK-20495][SQL] Add StorageLevel to cacheTable API | ||
| ProblemFilters.exclude[ReversedMissingMethodProblem]("org.apache.spark.sql.catalog.Catalog.cacheTable") | ||
| ) ++ Seq( |
Contributor
There was a problem hiding this comment.
Could you follow the same style as v22excludes, which avoids this extra line?
SparkQA
commented
Jun 16, 2017
Test build #78140 has finished for PR 18249 at commit
|
jinxing64
commented
Jun 21, 2017
Author
@vanzin |
vanzin
commented
Jun 22, 2017
Contributor
I was just waiting in case anyone else wanted to comment. LGTM, merging to master. |
robert3005 pushed a commit
to palantir/spark
that referenced
this pull request
Jun 29, 2017
…uffle. In current code(apache#16989), big blocks are shuffled to disk. This pr proposes to collect metrics for remote bytes fetched to disk. Author: jinxing <jinxing6042@126.com> Closesapache#18249 from jinxing64/SPARK-19937.
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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
In current code(#16989), big blocks are shuffled to disk.
This pr proposes to collect metrics for remote bytes fetched to disk.