Skip to content
Snippets Groups Projects
Commit 41145447 authored by Dongjoon Hyun's avatar Dongjoon Hyun Committed by Davies Liu
Browse files

[SPARK-14780] [R] Add `setLogLevel` to SparkR

## What changes were proposed in this pull request?

This PR aims to add `setLogLevel` function to SparkR shell.

**Spark Shell**
```scala
scala> sc.setLogLevel("ERROR")
```

**PySpark**
```python
>>> sc.setLogLevel("ERROR")
```

**SparkR (this PR)**
```r
> setLogLevel(sc, "ERROR")
NULL
```

## How was this patch tested?

Pass the Jenkins tests including a new R testcase.

Author: Dongjoon Hyun <dongjoon@apache.org>

Closes #12547 from dongjoon-hyun/SPARK-14780.
parent f82aa824
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,9 @@ export("setJobGroup", ...@@ -24,6 +24,9 @@ export("setJobGroup",
"clearJobGroup", "clearJobGroup",
"cancelJobGroup") "cancelJobGroup")
# Export Utility methods
export("setLogLevel")
exportClasses("DataFrame") exportClasses("DataFrame")
exportMethods("arrange", exportMethods("arrange",
......
...@@ -225,3 +225,20 @@ broadcast <- function(sc, object) { ...@@ -225,3 +225,20 @@ broadcast <- function(sc, object) {
setCheckpointDir <- function(sc, dirName) { setCheckpointDir <- function(sc, dirName) {
invisible(callJMethod(sc, "setCheckpointDir", suppressWarnings(normalizePath(dirName)))) invisible(callJMethod(sc, "setCheckpointDir", suppressWarnings(normalizePath(dirName))))
} }
#' Set new log level
#'
#' Set new log level: "ALL", "DEBUG", "ERROR", "FATAL", "INFO", "OFF", "TRACE", "WARN"
#'
#' @rdname setLogLevel
#' @param sc Spark Context to use
#' @param level New log level
#' @export
#' @examples
#'\dontrun{
#' setLogLevel(sc, "ERROR")
#'}
setLogLevel <- function(sc, level) {
callJMethod(sc, "setLogLevel", level)
}
...@@ -90,6 +90,11 @@ test_that("job group functions can be called", { ...@@ -90,6 +90,11 @@ test_that("job group functions can be called", {
clearJobGroup(sc) clearJobGroup(sc)
}) })
test_that("utility function can be called", {
sc <- sparkR.init()
setLogLevel(sc, "ERROR")
})
test_that("getClientModeSparkSubmitOpts() returns spark-submit args from whitelist", { test_that("getClientModeSparkSubmitOpts() returns spark-submit args from whitelist", {
e <- new.env() e <- new.env()
e[["spark.driver.memory"]] <- "512m" e[["spark.driver.memory"]] <- "512m"
......
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