-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-20704][SPARKR] change CRAN test to run single thread #17945
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 2 commits
468cef1
92e6bba
a718645
21bea08
25a95a9
5aa7fd4
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 |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ | |
| # | ||
| library(SparkR) | ||
|
|
||
| sc <- sparkR.session() | ||
| sc <- sparkR.session(master = "local[1]") | ||
|
Contributor
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. any specific reason these dont use
Member
Author
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. it's not accessible here - this is a separate R app
Contributor
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. Ah got it. |
||
|
|
||
| helloTest <- SparkR:::callJStatic("sparkrtest.DummyClass", | ||
| "helloWorld", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ | |
|
|
||
| context("SerDe functionality") | ||
|
|
||
| sparkSession <- sparkR.session(enableHiveSupport = FALSE) | ||
| sparkSession <- sparkR.session(master = sparkRMaster, enableHiveSupport = FALSE) | ||
|
||
|
|
||
| test_that("SerDe of primitive types", { | ||
| skip_on_cran() | ||
|
|
||
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.
Can we do this in a separate PR ? It'll be good to track this as a separate JIRA / PR just to lookup why we did this. Also I'll hopefully hear from the winbuilder maintainer if this is something we can avoid doing.
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.
right, I can revert this before merging. I want to have a branch to test devtools install