Skip to content
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

Add classloader diagnostics to initShuffleManager error message #10871

Merged
merged 18 commits into from
May 29, 2024
Merged
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,24 @@ object GpuShuffleEnv extends Logging {
// this forces the initialization when we know we are ready in the driver and executor.
//
def initShuffleManager(): Unit = {
SparkEnv.get.shuffleManager match {
val shuffleManager = SparkEnv.get.shuffleManager
shuffleManager match {
case rapidsShuffleManager: RapidsShuffleManagerLike =>
rapidsShuffleManager.initialize
case _ =>
throw new IllegalStateException(s"Cannot initialize the RAPIDS Shuffle Manager")
val caseClassLoader =
classOf[RapidsShuffleManagerLike].getClassLoader
throw new IllegalStateException(s"Cannot initialize the RAPIDS Shuffle Manager: " +
s"RapidsShuffleManagerLike class used class loader: " +
s"${caseClassLoader.toString}, with hash code: ${caseClassLoader.hashCode}. " +
s"ShuffleManager instance contains the following RapidsShuffleManagerLike class loader: " +
s"${shuffleManager.getClass.getSuperclass.getInterfaces
.collect {
case c if c.getName == classOf[RapidsShuffleManagerLike].getName =>
s"${c.getClassLoader} with hash code: ${c.getClassLoader.hashCode}"
}.mkString("Array(", ", ", ")")
}"
)
}
}

Expand Down