Skip to content
Snippets Groups Projects
Commit 2579948b authored by cafreeman's avatar cafreeman Committed by Shivaram Venkataraman
Browse files

[SPARK-8607] SparkR -- jars not being added to application classpath correctly

Add `getStaticClass` method in SparkR's `RBackendHandler`

This is a fix for the problem referenced in [SPARK-5185](https://issues.apache.org/jira/browse/SPARK-5185).

cc shivaram

Author: cafreeman <cfreeman@alteryx.com>

Closes #7001 from cafreeman/branch-1.4 and squashes the following commits:

8f81194 [cafreeman] Add missing license
31aedcf [cafreeman] Refactor test to call an external R script
2c22073 [cafreeman] Merge branch 'branch-1.4' of github.com:apache/spark into branch-1.4
0bea809 [cafreeman] Fixed relative path issue and added smaller JAR
ee25e60 [cafreeman] Merge branch 'branch-1.4' of github.com:apache/spark into branch-1.4
9a5c362 [cafreeman] test for including JAR when launching sparkContext
9101223 [cafreeman] Merge branch 'branch-1.4' of github.com:apache/spark into branch-1.4
5a80844 [cafreeman] Fix style nits
7c6bd0c [cafreeman] [SPARK-8607] SparkR
parent 78b31a2a
No related branches found
No related tags found
No related merge requests found
File added
#
# 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.
#
library(SparkR)
sc <- sparkR.init()
helloTest <- SparkR:::callJStatic("sparkR.test.hello",
"helloWorld",
"Dave")
basicFunction <- SparkR:::callJStatic("sparkR.test.basicFunction",
"addStuff",
2L,
2L)
sparkR.stop()
output <- c(helloTest, basicFunction)
writeLines(output)
#
# 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.
#
context("include an external JAR in SparkContext")
runScript <- function() {
sparkHome <- Sys.getenv("SPARK_HOME")
jarPath <- paste("--jars",
shQuote(file.path(sparkHome, "R/lib/SparkR/test_support/sparktestjar_2.10-1.0.jar")))
scriptPath <- file.path(sparkHome, "R/lib/SparkR/tests/jarTest.R")
submitPath <- file.path(sparkHome, "bin/spark-submit")
res <- system2(command = submitPath,
args = c(jarPath, scriptPath),
stdout = TRUE)
tail(res, 2)
}
test_that("sparkJars tag in SparkContext", {
testOutput <- runScript()
helloTest <- testOutput[1]
expect_true(helloTest == "Hello, Dave")
basicFunction <- testOutput[2]
expect_true(basicFunction == 4L)
})
...@@ -88,6 +88,21 @@ private[r] class RBackendHandler(server: RBackend) ...@@ -88,6 +88,21 @@ private[r] class RBackendHandler(server: RBackend)
ctx.close() ctx.close()
} }
// Looks up a class given a class name. This function first checks the
// current class loader and if a class is not found, it looks up the class
// in the context class loader. Address [SPARK-5185]
def getStaticClass(objId: String): Class[_] = {
try {
val clsCurrent = Class.forName(objId)
clsCurrent
} catch {
// Use contextLoader if we can't find the JAR in the system class loader
case e: ClassNotFoundException =>
val clsContext = Class.forName(objId, true, Thread.currentThread().getContextClassLoader)
clsContext
}
}
def handleMethodCall( def handleMethodCall(
isStatic: Boolean, isStatic: Boolean,
objId: String, objId: String,
...@@ -98,7 +113,7 @@ private[r] class RBackendHandler(server: RBackend) ...@@ -98,7 +113,7 @@ private[r] class RBackendHandler(server: RBackend)
var obj: Object = null var obj: Object = null
try { try {
val cls = if (isStatic) { val cls = if (isStatic) {
Class.forName(objId) getStaticClass(objId)
} else { } else {
JVMObjectTracker.get(objId) match { JVMObjectTracker.get(objId) match {
case None => throw new IllegalArgumentException("Object not found " + objId) case None => throw new IllegalArgumentException("Object not found " + objId)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment