-
Notifications
You must be signed in to change notification settings - Fork 28.7k
[SPARK-4277] Support external shuffle service on Standalone Worker #3142
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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.deploy.worker | ||
|
||
import org.apache.spark.{Logging, SparkConf, SecurityManager} | ||
import org.apache.spark.network.TransportContext | ||
import org.apache.spark.network.netty.SparkTransportConf | ||
import org.apache.spark.network.sasl.SaslRpcHandler | ||
import org.apache.spark.network.server.TransportServer | ||
import org.apache.spark.network.shuffle.ExternalShuffleBlockHandler | ||
|
||
/** | ||
* Provides a server from which Executors can read shuffle files (rather than reading directly from | ||
* each other), to provide uninterrupted access to the files in the face of executors being turned | ||
* off or killed. | ||
* | ||
* Optionally requires SASL authentication in order to read. See [[SecurityManager]]. | ||
*/ | ||
private[worker] | ||
class StandaloneWorkerShuffleService(sparkConf: SparkConf, securityManager: SecurityManager) | ||
extends Logging { | ||
|
||
private val enabled = sparkConf.getBoolean("spark.shuffle.service.enabled", false) | ||
private val port = sparkConf.getInt("spark.shuffle.service.port", 7337) | ||
private val useSasl: Boolean = securityManager.isAuthenticationEnabled() | ||
|
||
private val transportConf = SparkTransportConf.fromSparkConf(sparkConf) | ||
private val blockHandler = new ExternalShuffleBlockHandler() | ||
private val transportContext: TransportContext = { | ||
val handler = if (useSasl) new SaslRpcHandler(blockHandler, securityManager) else blockHandler | ||
new TransportContext(transportConf, handler) | ||
} | ||
|
||
private var server: TransportServer = _ | ||
|
||
/** Starts the external shuffle service if the user has configured us to. */ | ||
def startIfEnabled() { | ||
if (enabled) { | ||
require(server == null, "Shuffle server already started") | ||
logInfo(s"Starting shuffle service on port $port with useSasl = $useSasl") | ||
server = transportContext.createServer(port) | ||
} | ||
} | ||
|
||
def stop() { | ||
if (enabled && server != null) { | ||
server.close() | ||
server = null | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,7 +92,7 @@ final class ShuffleBlockFetcherIterator( | |
* Current [[FetchResult]] being processed. We track this so we can release the current buffer | ||
* in case of a runtime exception when processing the current buffer. | ||
*/ | ||
private[this] var currentResult: FetchResult = null | ||
@volatile private[this] var currentResult: FetchResult = null | ||
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. This was supposed to go into #3128 as we check this nullness of this parameter in multiple threads. |
||
|
||
/** | ||
* Queue of fetch requests to issue; we'll pull requests off this gradually to make sure that | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,8 @@ public void encode(ByteBuf buf) { | |
|
||
public static SaslMessage decode(ByteBuf buf) { | ||
if (buf.readByte() != TAG_BYTE) { | ||
throw new IllegalStateException("Expected SaslMessage, received something else"); | ||
throw new IllegalStateException("Expected SaslMessage, received something else" | ||
+ " (maybe your client does not have SASL enabled?)"); | ||
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. Improved error message requested by @andrewor14 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. looks good |
||
} | ||
|
||
int idLength = buf.readInt(); | ||
|
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.
I realized that these checks were not useful (since the secret key is already doing the security checks). Additionally, it doesn't make sense on the Worker.