Skip to content

Commit

Permalink
Merge branch 'master' into SPARK-6190_largeBB
Browse files Browse the repository at this point in the history
  • Loading branch information
squito committed Nov 4, 2015
2 parents 80c4032 + cd1df66 commit 3f701dc
Show file tree
Hide file tree
Showing 1,589 changed files with 72,810 additions and 29,987 deletions.
12 changes: 0 additions & 12 deletions .rat-excludes
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,8 @@ TAGS
RELEASE
control
docs
docker.properties.template
fairscheduler.xml.template
spark-defaults.conf.template
log4j.properties
log4j.properties.template
metrics.properties
metrics.properties.template
slaves
slaves.template
spark-env.sh
spark-env.cmd
spark-env.sh.template
log4j-defaults.properties
log4j-defaults-repl.properties
bootstrap-tooltip.js
jquery-1.11.1.min.js
d3.min.js
Expand Down
701 changes: 21 additions & 680 deletions LICENSE

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -572,3 +572,38 @@ Copyright 2009-2013 The Apache Software Foundation

Apache Avro IPC
Copyright 2009-2013 The Apache Software Foundation


Vis.js
Copyright 2010-2015 Almende B.V.

Vis.js is dual licensed under both

* The Apache 2.0 License
http://www.apache.org/licenses/LICENSE-2.0

and

* The MIT License
http://opensource.org/licenses/MIT

Vis.js may be distributed under either license.


Vis.js uses and redistributes the following third-party libraries:

- component-emitter
https://github.com/component/emitter
The MIT License

- hammer.js
http://hammerjs.github.io/
The MIT License

- moment.js
http://momentjs.com/
The MIT License

- keycharm
https://github.com/AlexDM0/keycharm
The MIT License
2 changes: 1 addition & 1 deletion R/create-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pushd $FWDIR
mkdir -p pkg/html
pushd pkg/html

Rscript -e 'library(SparkR, lib.loc="../../lib"); library(knitr); knit_rd("SparkR")'
Rscript -e 'libDir <- "../../lib"; library(SparkR, lib.loc=libDir); library(knitr); knit_rd("SparkR", links = tools::findHTMLlinks(paste(libDir, "SparkR", sep="/")))'

popd

Expand Down
3 changes: 2 additions & 1 deletion R/pkg/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: SparkR
Type: Package
Title: R frontend for Spark
Version: 1.5.0
Version: 1.6.0
Date: 2013-09-09
Author: The Apache Software Foundation
Maintainer: Shivaram Venkataraman <[email protected]>
Expand Down Expand Up @@ -33,4 +33,5 @@ Collate:
'mllib.R'
'serialize.R'
'sparkR.R'
'stats.R'
'utils.R'
28 changes: 24 additions & 4 deletions R/pkg/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ export("setJobGroup",
exportClasses("DataFrame")

exportMethods("arrange",
"attach",
"cache",
"collect",
"columns",
"count",
"cov",
"corr",
"crosstab",
"describe",
"dim",
Expand All @@ -38,6 +41,7 @@ exportMethods("arrange",
"fillna",
"filter",
"first",
"freqItems",
"group_by",
"groupBy",
"head",
Expand All @@ -47,12 +51,12 @@ exportMethods("arrange",
"join",
"limit",
"merge",
"mutate",
"na.omit",
"names",
"ncol",
"nrow",
"orderBy",
"mutate",
"names",
"persist",
"printSchema",
"rbind",
Expand All @@ -61,6 +65,7 @@ exportMethods("arrange",
"repartition",
"sample",
"sample_frac",
"sampleBy",
"saveAsParquetFile",
"saveAsTable",
"saveDF",
Expand All @@ -69,9 +74,11 @@ exportMethods("arrange",
"selectExpr",
"show",
"showDF",
"subset",
"summarize",
"summary",
"take",
"transform",
"unionAll",
"unique",
"unpersist",
Expand All @@ -82,7 +89,8 @@ exportMethods("arrange",

exportClasses("Column")

exportMethods("abs",
exportMethods("%in%",
"abs",
"acos",
"add_months",
"alias",
Expand All @@ -101,6 +109,7 @@ exportMethods("abs",
"cbrt",
"ceil",
"ceiling",
"column",
"concat",
"concat_ws",
"contains",
Expand All @@ -110,12 +119,14 @@ exportMethods("abs",
"count",
"countDistinct",
"crc32",
"cumeDist",
"date_add",
"date_format",
"date_sub",
"datediff",
"dayofmonth",
"dayofyear",
"denseRank",
"desc",
"endsWith",
"exp",
Expand All @@ -141,8 +152,10 @@ exportMethods("abs",
"isNaN",
"isNotNull",
"isNull",
"lag",
"last",
"last_day",
"lead",
"least",
"length",
"levenshtein",
Expand All @@ -168,17 +181,21 @@ exportMethods("abs",
"nanvl",
"negate",
"next_day",
"ntile",
"otherwise",
"percentRank",
"pmod",
"quarter",
"rand",
"randn",
"rank",
"regexp_extract",
"regexp_replace",
"reverse",
"rint",
"rlike",
"round",
"rowNumber",
"rpad",
"rtrim",
"second",
Expand Down Expand Up @@ -221,7 +238,8 @@ exportMethods("agg")
export("sparkRSQL.init",
"sparkRHive.init")

export("cacheTable",
export("as.DataFrame",
"cacheTable",
"clearCache",
"createDataFrame",
"createExternalTable",
Expand All @@ -244,3 +262,5 @@ export("structField",
"structType.jobj",
"structType.structField",
"print.structType")

export("as.data.frame")
Loading

0 comments on commit 3f701dc

Please sign in to comment.