Skip to content

Commit e413043

Browse files
committed
Merge remote-tracking branch 'upstream/master' into reduce-expr-code-for-wholestage
2 parents f35974e + f81fa47 commit e413043

File tree

1,707 files changed

+109466
-27934
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,707 files changed

+109466
-27934
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ project/plugins/src_managed/
6262
project/plugins/target/
6363
python/lib/pyspark.zip
6464
python/deps
65+
python/test_coverage/coverage_data
66+
python/test_coverage/htmlcov
6567
python/pyspark/python
6668
reports/
6769
scalastyle-on-compile.generated.xml
@@ -74,6 +76,7 @@ streaming-tests.log
7476
target/
7577
unit-tests.log
7678
work/
79+
docs/.jekyll-metadata
7780

7881
# For Hive
7982
TempStatsStore/

.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:

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",
@@ -148,6 +151,7 @@ exportMethods("arrange",
148151
"registerTempTable",
149152
"rename",
150153
"repartition",
154+
"repartitionByRange",
151155
"rollup",
152156
"sample",
153157
"sample_frac",
@@ -176,6 +180,7 @@ exportMethods("arrange",
176180
"with",
177181
"withColumn",
178182
"withColumnRenamed",
183+
"withWatermark",
179184
"write.df",
180185
"write.jdbc",
181186
"write.json",
@@ -225,11 +230,14 @@ exportMethods("%<=>%",
225230
"crc32",
226231
"create_array",
227232
"create_map",
233+
"current_date",
234+
"current_timestamp",
228235
"hash",
229236
"cume_dist",
230237
"date_add",
231238
"date_format",
232239
"date_sub",
240+
"date_trunc",
233241
"datediff",
234242
"dayofmonth",
235243
"dayofweek",

0 commit comments

Comments
 (0)