-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-27677][Core] Serve local disk persisted blocks by the external service after releasing executor by dynamic allocation #24499
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 all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
ed2f7d4
Initial version
attilapiros c6d81ec
applying review comments 1.0
attilapiros 528b05a
java checkstyle fix
attilapiros 98d2cbc
java checkstyle fix 2.0
attilapiros d5a3149
java checkstyle fix 3.0
attilapiros 00d456a
SyncBlockTransferClient
attilapiros 37ca716
Handling of deleted files
attilapiros fd0b107
mostly indentation fixes
attilapiros e7e0539
cleanup of non shuffle service served files
attilapiros 7f2fc12
fix line length
attilapiros 6b08379
applying review comments
attilapiros 767f5f7
Applying review comments (from Imran)
attilapiros 2aa2097
adding back MEMORY_AND_DISK
attilapiros 928be2c
applying review comments of Imran v2.0
attilapiros 79ed69a
applying review comments of Imran v3.0
attilapiros f8beff1
extend External Shuffle Service with remove blocks
attilapiros d42eeeb
fix
attilapiros d6ca9c8
fix2
attilapiros 39c9914
introduce spark.shuffle.service.fetch.rdd.enabled
attilapiros 16ab64f
fix checkstyle
attilapiros 43fac8b
keep the old logic: sending RemoveRdd to every live executor
attilapiros 5a1a15a
javastyle fix
attilapiros e3adc05
applying review comments of Vanzin
attilapiros bf9ec92
applying review comments
attilapiros faa583f
fixing: test NITs
attilapiros 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
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
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
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
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
24 changes: 24 additions & 0 deletions
24
common/network-shuffle/src/main/java/org/apache/spark/network/shuffle/Constants.java
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 |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package org.apache.spark.network.shuffle; | ||
|
|
||
| public class Constants { | ||
|
|
||
| public static final String SHUFFLE_SERVICE_FETCH_RDD_ENABLED = | ||
| "spark.shuffle.service.fetch.rdd.enabled"; | ||
| } |
Oops, something went wrong.
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.