-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-27622][Core] Avoiding the network when block manager fetches disk persisted RDD blocks from the same host #24554
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
11 commits
Select commit
Hold shift + click to select a range
ff8e8bb
initial version
attilapiros e4b8ca2
remove the remote location of the block manager to which localDirs be…
attilapiros 1b9c523
applying review comments 1.0
attilapiros b2cff9e
applying review comments 1.1
attilapiros 8543b93
introduce getAndMapRemoteManagedBuf and open the block file early
attilapiros 847afc2
make test windows compatible
attilapiros c048eca
applying review comments
attilapiros 02c213e
store different values in test data
attilapiros 78e360c
fix tests
attilapiros 49f9508
applying fixes for Vanzin's comment
attilapiros 261fc76
fixes
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
66 changes: 66 additions & 0 deletions
66
common/network-shuffle/src/main/java/org/apache/spark/network/shuffle/ExecutorDiskUtils.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,66 @@ | ||
| /* | ||
| * 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; | ||
|
|
||
| import java.io.File; | ||
| import java.util.regex.Matcher; | ||
| import java.util.regex.Pattern; | ||
|
|
||
| import com.google.common.annotations.VisibleForTesting; | ||
|
|
||
| import org.apache.spark.network.util.JavaUtils; | ||
|
|
||
| public class ExecutorDiskUtils { | ||
|
|
||
| private static final Pattern MULTIPLE_SEPARATORS = Pattern.compile(File.separator + "{2,}"); | ||
|
|
||
| /** | ||
| * Hashes a filename into the corresponding local directory, in a manner consistent with | ||
| * Spark's DiskBlockManager.getFile(). | ||
| */ | ||
| public static File getFile(String[] localDirs, int subDirsPerLocalDir, String filename) { | ||
| int hash = JavaUtils.nonNegativeHash(filename); | ||
| String localDir = localDirs[hash % localDirs.length]; | ||
| int subDirId = (hash / localDirs.length) % subDirsPerLocalDir; | ||
| return new File(createNormalizedInternedPathname( | ||
| localDir, String.format("%02x", subDirId), filename)); | ||
| } | ||
|
|
||
| /** | ||
| * This method is needed to avoid the situation when multiple File instances for the | ||
| * same pathname "foo/bar" are created, each with a separate copy of the "foo/bar" String. | ||
| * According to measurements, in some scenarios such duplicate strings may waste a lot | ||
| * of memory (~ 10% of the heap). To avoid that, we intern the pathname, and before that | ||
| * we make sure that it's in a normalized form (contains no "//", "///" etc.) Otherwise, | ||
| * the internal code in java.io.File would normalize it later, creating a new "foo/bar" | ||
| * String copy. Unfortunately, we cannot just reuse the normalization code that java.io.File | ||
| * uses, since it is in the package-private class java.io.FileSystem. | ||
| */ | ||
| @VisibleForTesting | ||
| static String createNormalizedInternedPathname(String dir1, String dir2, String fname) { | ||
| String pathname = dir1 + File.separator + dir2 + File.separator + fname; | ||
| Matcher m = MULTIPLE_SEPARATORS.matcher(pathname); | ||
| pathname = m.replaceAll("/"); | ||
| // A single trailing slash needs to be taken care of separately | ||
| if (pathname.length() > 1 && pathname.endsWith("/")) { | ||
| pathname = pathname.substring(0, pathname.length() - 1); | ||
| } | ||
| return pathname.intern(); | ||
| } | ||
|
|
||
| } |
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
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.