aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [SPARK-15263][CORE] Make shuffle service dir cleanup faster by using `rm -rf`Tejas Patil2016-05-183-16/+61
* [SPARK-15346][MLLIB] Reduce duplicate computation in picking initial pointsDLucky2016-05-181-6/+10
* [SPARK-15334][SQL][HOTFIX] Fixes compilation error for Scala 2.10Cheng Lian2016-05-181-1/+1
* [MINOR][SQL] Remove unused pattern matching variables in Optimizers.Dongjoon Hyun2016-05-181-17/+16
* [SPARK-15322][MLLIB][CORE][SQL] update deprecate accumulator usage into accum...WeichenXu2016-05-187-26/+28
* [SPARK-15307][SQL] speed up listing files for data sourceDavies Liu2016-05-182-14/+33
* [SPARK-15334][SQL] HiveClient facade not compatible with Hive 0.12Sean Zhong2016-05-183-123/+545
* [SPARK-14978][PYSPARK] PySpark TrainValidationSplitModel should support valid...Takuya Kuwahara2016-05-182-10/+53
* [SPARK-14346] Fix scala-2.10 buildYin Huai2016-05-171-1/+1
* [SPARK-15171][SQL] Remove the references to deprecated method dataset.registe...Sean Zhong2016-05-1874-401/+407
* [SPARK-14346][SQL] Native SHOW CREATE TABLE for Hive tables/viewsCheng Lian2016-05-174-58/+333
* [SPARK-11735][CORE][SQL] Add a check in the constructor of SQLContext/SparkSe...Shixiong Zhu2016-05-173-1/+4
* [SPARK-15244] [PYTHON] Type of column name created with createDataFrame is no...Dongjoon Hyun2016-05-172-0/+9
* [SPARK-14615][ML] Use the new ML Vector and Matrix in the ML pipeline based a...DB Tsai2016-05-17182-484/+1176
* [MINOR][DOCS] Replace remaining 'sqlContext' in ScalaDoc/JavaDoc.Dongjoon Hyun2016-05-176-15/+15
* [SPARK-15182][ML] Copy MLlib doc to ML: ml.feature.tf, idfYuhao Yang2016-05-172-9/+45
* [SPARK-10216][SQL] Avoid creating empty files during overwriting with group b...hyukjinkwon2016-05-174-126/+182
* [SPARK-14346][SQL][FOLLOW-UP] add tests for CREAT TABLE USING with partition ...Wenchen Fan2016-05-173-2/+106
* [SPARK-15165] [SQL] Codegen can break because toCommentSafeString is not actu...Kousuke Saruta2016-05-173-1/+320
* [SPARK-15318][ML][EXAMPLE] spark.ml Collaborative Filtering example does not ...wm624@hotmail.com2016-05-171-7/+12
* [SPARK-15333][DOCS] Reorganize building-spark.md; rationalize vs wikiSean Owen2016-05-171-139/+156
* [SPARK-14434][ML] User guide doc and examples for GaussianMixture in spark.mlwm624@hotmail.com2016-05-174-0/+252
* [SPARK-15351][SQL] RowEncoder should support array as the external type for A...Wenchen Fan2016-05-175-55/+92
* [SPARK-15290][BUILD] Move annotations, like @Since / @DeveloperApi, into spar...Sean Owen2016-05-1735-41/+59
* [SPARK-14906][ML] Copy linalg in PySpark to new ML packageXiangrui Meng2016-05-173-45/+1564
* [SPARK-14942][SQL][STREAMING] Reduce delay between batch construction and exe...Liwei Lin2016-05-164-19/+99
* [SPARK-12972][CORE][TEST-MAVEN][TEST-HADOOP2.2] Update org.apache.httpcompone...Sean Owen2016-05-162-1/+7
* [SPARK-14979][ML][PYSPARK] Add examples for GeneralizedLinearRegressionYanbo Liang2016-05-163-0/+227
* [SPARK-15305][ML][DOC] spark.ml document Bisectiong k-means has the incorrect...wm624@hotmail.com2016-05-161-3/+1
* [SPARK-15253][SQL] Support old table schema config key "spark.sql.sources.sch...Sean Zhong2016-05-162-11/+21
* [MINOR] Fix TyposZheng RuiFeng2016-05-156-41/+42
* [SPARK-12972][CORE] Update org.apache.httpcomponents.httpclientSean Owen2016-05-1510-63/+40
* [SPARK-15096][ML] LogisticRegression MultiClassSummarizer numClasses can fail...wm624@hotmail.com2016-05-142-1/+5
* [SPARK-15197][DOCS] Added Scaladoc for countApprox and countByValueApprox par...Nicholas Tietz2016-05-143-2/+53
* [TRIVIAL] Add () to SparkSession's builder functionTejas Patil2016-05-131-1/+1
* [SPARK-15267][SQL] Refactor options for JDBC and ORC data sources and change ...hyukjinkwon2016-05-138-63/+135
* Revert "[SPARK-12972][CORE] Update org.apache.httpcomponents.httpclient"Sean Owen2016-05-137-17/+50
* [SPARK-12972][CORE] Update org.apache.httpcomponents.httpclientSean Owen2016-05-137-50/+17
* [SPARK-15061][PYSPARK] Upgrade to Py4J 0.10.1Holden Karau2016-05-1316-15/+15
* [SPARK-14900][ML] spark.ml classification metrics should include accuracywm624@hotmail.com2016-05-133-17/+24
* [SPARK-15310][SQL] Rename HiveTypeCoercion -> TypeCoercionReynold Xin2016-05-136-54/+50
* [SPARK-13961][ML] spark.ml ChiSqSelector and RFormula should support other nu...BenFradet2016-05-1319-27/+53
* [SPARK-15181][ML][PYSPARK] Python API for GLR summaries.sethah2016-05-133-11/+247
* [MINOR][PYSPARK] update _shared_params_code_gen.pyZheng RuiFeng2016-05-133-10/+10
* [SPARK-15188] Add missing thresholds param to NaiveBayes in PySparkHolden Karau2016-05-131-5/+10
* [SPARK-13866] [SQL] Handle decimal type in CSV inference at CSV data source.hyukjinkwon2016-05-124-4/+81
* [SPARK-14541][SQL] Support IFNULL, NULLIF, NVL and NVL2Reynold Xin2016-05-128-9/+194
* [SPARK-15306][SQL] Move object expressions into expressions.objects packageReynold Xin2016-05-1213-3/+16
* [SPARK-15202][SPARKR] add dapplyCollect() method for DataFrame in SparkR.Sun Rui2016-05-124-17/+95
* [SPARK-10605][SQL] Create native collect_list/collect_set aggregatesHerman van Hovell2016-05-126-37/+149