aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/NAMESPACE
diff options
context:
space:
mode:
authorHossein <hossein@databricks.com>2015-06-19 15:47:22 -0700
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-06-19 15:51:59 -0700
commit1fa29c2df2a7846405eed6b409b8deb5329fa7c1 (patch)
tree260a8c9c048f4004ee1729a3a77e19ed3b2bdf9d /R/pkg/NAMESPACE
parent54976e55e36465108b71b40b8a431be9d6d703ce (diff)
downloadspark-1fa29c2df2a7846405eed6b409b8deb5329fa7c1.tar.gz
spark-1fa29c2df2a7846405eed6b409b8deb5329fa7c1.tar.bz2
spark-1fa29c2df2a7846405eed6b409b8deb5329fa7c1.zip
[SPARK-8452] [SPARKR] expose jobGroup API in SparkR
This pull request adds following methods to SparkR: ```R setJobGroup() cancelJobGroup() clearJobGroup() ``` For each method, the spark context is passed as the first argument. There does not seem to be a good way to test these in R. cc shivaram and davies Author: Hossein <hossein@databricks.com> Closes #6889 from falaki/SPARK-8452 and squashes the following commits: 9ce9f1e [Hossein] Added basic tests to verify methods can be called and won't throw errors c706af9 [Hossein] Added examples a2c19af [Hossein] taking spark context as first argument 343ca77 [Hossein] Added setJobGroup, cancelJobGroup and clearJobGroup to SparkR
Diffstat (limited to 'R/pkg/NAMESPACE')
-rw-r--r--R/pkg/NAMESPACE5
1 files changed, 5 insertions, 0 deletions
diff --git a/R/pkg/NAMESPACE b/R/pkg/NAMESPACE
index f9447f6c32..7f85722245 100644
--- a/R/pkg/NAMESPACE
+++ b/R/pkg/NAMESPACE
@@ -10,6 +10,11 @@ export("sparkR.init")
export("sparkR.stop")
export("print.jobj")
+# Job group lifecycle management methods
+export("setJobGroup",
+ "clearJobGroup",
+ "cancelJobGroup")
+
exportClasses("DataFrame")
exportMethods("arrange",