Skip to content

Commit 2db7cf0

Browse files
authored
Merge branch 'master' into SPARK-22413
2 parents c973bb7 + ba891ec commit 2db7cf0

File tree

1,231 files changed

+80338
-20949
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,231 files changed

+80338
-20949
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ notifications:
4343
# 5. Run maven install before running lint-java.
4444
install:
4545
- export MAVEN_SKIP_RC=1
46-
- build/mvn -T 4 -q -DskipTests -Pmesos -Pyarn -Pkinesis-asl -Phive -Phive-thriftserver install
46+
- build/mvn -T 4 -q -DskipTests -Pkubernetes -Pmesos -Pyarn -Pkinesis-asl -Phive -Phive-thriftserver install
4747

4848
# 6. Run lint-java.
4949
script:

LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,8 @@ The text of each license is also included at licenses/LICENSE-[project].txt.
269269
(BSD 3 Clause) d3.min.js (https://github.com/mbostock/d3/blob/master/LICENSE)
270270
(BSD 3 Clause) DPark (https://github.com/douban/dpark/blob/master/LICENSE)
271271
(BSD 3 Clause) CloudPickle (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)
272+
(BSD 2 Clause) Zstd-jni (https://github.com/luben/zstd-jni/blob/master/LICENSE)
273+
(BSD license) Zstd (https://github.com/facebook/zstd/blob/v1.3.1/LICENSE)
272274

273275
========================================================================
274276
MIT licenses

NOTICE

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,12 @@ Copyright (C) 2011 Google Inc.
448448
Apache Commons Pool
449449
Copyright 1999-2009 The Apache Software Foundation
450450

451+
This product includes/uses Kubernetes & OpenShift 3 Java Client (https://github.com/fabric8io/kubernetes-client)
452+
Copyright (C) 2015 Red Hat, Inc.
453+
454+
This product includes/uses OkHttp (https://github.com/square/okhttp)
455+
Copyright (C) 2012 The Android Open Source Project
456+
451457
=========================================================================
452458
== NOTICE file corresponding to section 4(d) of the Apache License, ==
453459
== Version 2.0, in this case for the DataNucleus distribution. ==

R/pkg/DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: SparkR
22
Type: Package
3-
Version: 2.3.0
3+
Version: 2.4.0
44
Title: R Frontend for Apache Spark
55
Description: Provides an R Frontend for Apache Spark.
66
Authors@R: c(person("Shivaram", "Venkataraman", role = c("aut", "cre"),
@@ -59,3 +59,4 @@ Collate:
5959
'window.R'
6060
RoxygenNote: 5.0.1
6161
VignetteBuilder: knitr
62+
NeedsCompilation: no

R/pkg/NAMESPACE

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ exportMethods("glm",
7676
export("setJobGroup",
7777
"clearJobGroup",
7878
"cancelJobGroup",
79-
"setJobDescription")
79+
"setJobDescription",
80+
"setLocalProperty",
81+
"getLocalProperty")
8082

8183
# Export Utility methods
8284
export("setLogLevel")
@@ -133,6 +135,7 @@ exportMethods("arrange",
133135
"isStreaming",
134136
"join",
135137
"limit",
138+
"localCheckpoint",
136139
"merge",
137140
"mutate",
138141
"na.omit",
@@ -176,6 +179,7 @@ exportMethods("arrange",
176179
"with",
177180
"withColumn",
178181
"withColumnRenamed",
182+
"withWatermark",
179183
"write.df",
180184
"write.jdbc",
181185
"write.json",
@@ -225,13 +229,17 @@ exportMethods("%<=>%",
225229
"crc32",
226230
"create_array",
227231
"create_map",
232+
"current_date",
233+
"current_timestamp",
228234
"hash",
229235
"cume_dist",
230236
"date_add",
231237
"date_format",
232238
"date_sub",
239+
"date_trunc",
233240
"datediff",
234241
"dayofmonth",
242+
"dayofweek",
235243
"dayofyear",
236244
"decode",
237245
"dense_rank",

0 commit comments

Comments
 (0)