Skip to content
Snippets Groups Projects
  1. Jun 03, 2015
  2. Jun 02, 2015
    • Mike Dusenberry's avatar
      [SPARK-7985] [ML] [MLlib] [Docs] Remove "fittingParamMap" references. Updating... · ad06727f
      Mike Dusenberry authored
      [SPARK-7985] [ML] [MLlib] [Docs] Remove "fittingParamMap" references. Updating ML Doc "Estimator, Transformer, and Param" examples.
      
      Updating ML Doc's *"Estimator, Transformer, and Param"* example to use `model.extractParamMap` instead of `model.fittingParamMap`, which no longer exists.
      
      mengxr, I believe this addresses (part of) the *update documentation* TODO list item from [PR 5820](https://github.com/apache/spark/pull/5820).
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6514 from dusenberrymw/Fix_ML_Doc_Estimator_Transformer_Param_Example and squashes the following commits:
      
      6366e1f [Mike Dusenberry] Updating instances of model.extractParamMap to model.parent.extractParamMap, since the Params of the parent Estimator could possibly differ from thos of the Model.
      d850e0e [Mike Dusenberry] Removing all references to "fittingParamMap" throughout Spark, since it has been removed.
      0480304 [Mike Dusenberry] Updating the ML Doc "Estimator, Transformer, and Param" Java example to use model.extractParamMap() instead of model.fittingParamMap(), which no longer exists.
      7d34939 [Mike Dusenberry] Updating ML Doc "Estimator, Transformer, and Param" example to use model.extractParamMap instead of model.fittingParamMap, which no longer exists.
      ad06727f
    • Xiangrui Meng's avatar
      [SPARK-7582] [MLLIB] user guide for StringIndexer · 0221c7f0
      Xiangrui Meng authored
      This PR adds a Java unit test and user guide for `StringIndexer`. I put it before `OneHotEncoder` because they are closely related. jkbradley
      
      Author: Xiangrui Meng <meng@databricks.com>
      
      Closes #6561 from mengxr/SPARK-7582 and squashes the following commits:
      
      4bba4f1 [Xiangrui Meng] fix example
      ba1cd1b [Xiangrui Meng] fix style
      7fa18d1 [Xiangrui Meng] add user guide for StringIndexer
      136cb93 [Xiangrui Meng] add a Java unit test for StringIndexer
      0221c7f0
  3. Jun 01, 2015
    • Xiangrui Meng's avatar
      [SPARK-7584] [MLLIB] User guide for VectorAssembler · 90c60692
      Xiangrui Meng authored
      This PR adds a section in the user guide for `VectorAssembler` with code examples in Python/Java/Scala. It also adds a unit test in Java.
      
      jkbradley
      
      Author: Xiangrui Meng <meng@databricks.com>
      
      Closes #6556 from mengxr/SPARK-7584 and squashes the following commits:
      
      11313f6 [Xiangrui Meng] simplify Java example
      0cd47f3 [Xiangrui Meng] update user guide
      fd36292 [Xiangrui Meng] update Java unit test
      ce61ca0 [Xiangrui Meng] add Java unit test for VectorAssembler
      e399942 [Xiangrui Meng] scala/python example code
      90c60692
    • Nishkam Ravi's avatar
      [DOC] Minor modification to Streaming docs with regards to parallel data receiving · e7c7e51f
      Nishkam Ravi authored
      pwendell tdas
      
      Author: Nishkam Ravi <nravi@cloudera.com>
      Author: nishkamravi2 <nishkamravi@gmail.com>
      Author: nravi <nravi@c1704.halxg.cloudera.com>
      
      Closes #6544 from nishkamravi2/master_nravi and squashes the following commits:
      
      46e8c03 [Nishkam Ravi] Slight modification to streaming docs
      e7c7e51f
  4. May 31, 2015
    • Yuhao Yang's avatar
      [SPARK-7949] [MLLIB] [DOC] update document with some missing save/load · 06747003
      Yuhao Yang authored
      add save load for examples:
      KMeansModel
      PowerIterationClusteringModel
      Word2VecModel
      IsotonicRegressionModel
      
      Author: Yuhao Yang <hhbyyh@gmail.com>
      
      Closes #6498 from hhbyyh/docSaveLoad and squashes the following commits:
      
      7f9f06d [Yuhao Yang] add missing imports
      c604cad [Yuhao Yang] Merge remote-tracking branch 'upstream/master' into docSaveLoad
      1dd77cc [Yuhao Yang] update document with some missing save/load
      06747003
  5. May 30, 2015
    • Reynold Xin's avatar
      Update documentation for the new DataFrame reader/writer interface. · 00a71379
      Reynold Xin authored
      Author: Reynold Xin <rxin@databricks.com>
      
      Closes #6522 from rxin/sql-doc-1.4 and squashes the following commits:
      
      c227be7 [Reynold Xin] Updated link.
      040b6d7 [Reynold Xin] Update documentation for the new DataFrame reader/writer interface.
      00a71379
    • Mike Dusenberry's avatar
      [SPARK-7920] [MLLIB] Make MLlib ChiSqSelector Serializable (& Fix Related Documentation Example). · 1281a351
      Mike Dusenberry authored
      The MLlib ChiSqSelector class is not serializable, and so the example in the ChiSqSelector documentation fails. Also, that example is missing the import of ChiSqSelector.
      
      This PR makes ChiSqSelector extend Serializable in MLlib, and adds the ChiSqSelector import statement to the associated example in the documentation.
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6462 from dusenberrymw/Make_ChiSqSelector_Serializable_and_Fix_Related_Docs_Example and squashes the following commits:
      
      9cb2f94 [Mike Dusenberry] Make MLlib ChiSqSelector Serializable.
      d9003bf [Mike Dusenberry] Add missing import in MLlib ChiSqSelector Docs Scala example.
      1281a351
    • Reynold Xin's avatar
    • Cheng Lian's avatar
      [SPARK-7849] [SQL] [Docs] Updates SQL programming guide for 1.4 · 6e3f0c78
      Cheng Lian authored
      Author: Cheng Lian <lian@databricks.com>
      
      Closes #6520 from liancheng/spark-7849 and squashes the following commits:
      
      705264b [Cheng Lian] Updates SQL programming guide for 1.4
      6e3f0c78
    • Taka Shinagawa's avatar
      [DOCS] [MINOR] Update for the Hadoop versions table with hadoop-2.6 · 3ab71eb9
      Taka Shinagawa authored
      Updated the doc for the hadoop-2.6 profile, which is new to Spark 1.4
      
      Author: Taka Shinagawa <taka.epsilon@gmail.com>
      
      Closes #6450 from mrt/docfix2 and squashes the following commits:
      
      db1c43b [Taka Shinagawa] Updated the hadoop versions for hadoop-2.6 profile
      323710e [Taka Shinagawa] The hadoop-2.6 profile is added to the Hadoop versions table
      3ab71eb9
    • Sean Owen's avatar
      [SPARK-7890] [DOCS] Document that Spark 2.11 now supports Kafka · 8c8de3ed
      Sean Owen authored
      Remove caveat about Kafka / JDBC not being supported for Scala 2.11
      
      Author: Sean Owen <sowen@cloudera.com>
      
      Closes #6470 from srowen/SPARK-7890 and squashes the following commits:
      
      4652634 [Sean Owen] One more rewording
      7b7f3c8 [Sean Owen] Restore note about JDBC component
      126744d [Sean Owen] Remove caveat about Kafka / JDBC not being supported for Scala 2.11
      8c8de3ed
    • Octavian Geagla's avatar
      [SPARK-7459] [MLLIB] ElementwiseProduct Java example · e3a43748
      Octavian Geagla authored
      Author: Octavian Geagla <ogeagla@gmail.com>
      
      Closes #6008 from ogeagla/elementwise-prod-doc and squashes the following commits:
      
      72e6dc0 [Octavian Geagla] [SPARK-7459] [MLLIB] Java example import.
      cf2afbd [Octavian Geagla] [SPARK-7459] [MLLIB] Update description of example.
      b66431b [Octavian Geagla] [SPARK-7459] [MLLIB] Add override annotation to java example, make scala example use same data as java.
      6b26b03 [Octavian Geagla] [SPARK-7459] [MLLIB] Fix line which is too long.
      79af020 [Octavian Geagla] [SPARK-7459] [MLLIB] Actually don't use Java 8.
      9d5b31a [Octavian Geagla] [SPARK-7459] [MLLIB] Don't use Java 8
      4f0c92f [Octavian Geagla] [SPARK-7459] [MLLIB] ElementwiseProduct Java example.
      e3a43748
    • Octavian Geagla's avatar
      [SPARK-7576] [MLLIB] Add spark.ml user guide doc/example for ElementwiseProduct · da2112ae
      Octavian Geagla authored
      Author: Octavian Geagla <ogeagla@gmail.com>
      
      Closes #6501 from ogeagla/ml-guide-elemwiseprod and squashes the following commits:
      
      4ad93d5 [Octavian Geagla] [SPARK-7576] [MLLIB] Incorporate code review feedback.
      f7be7ad [Octavian Geagla] [SPARK-7576] [MLLIB] Add spark.ml user guide doc/example for ElementwiseProduct.
      da2112ae
  6. May 29, 2015
    • Taka Shinagawa's avatar
      [DOCS][Tiny] Added a missing dash(-) in docs/configuration.md · 3792d258
      Taka Shinagawa authored
      The first line had only two dashes (--) instead of three(---). Because of this missing dash(-), 'jekyll build' command was not converting configuration.md to _site/configuration.html
      
      Author: Taka Shinagawa <taka.epsilon@gmail.com>
      
      Closes #6513 from mrt/docfix3 and squashes the following commits:
      
      c470e2c [Taka Shinagawa] Added a missing dash(-) preventing jekyll from converting configuration.md to html format
      3792d258
    • Shivaram Venkataraman's avatar
      [SPARK-6806] [SPARKR] [DOCS] Add a new SparkR programming guide · 5f48e5c3
      Shivaram Venkataraman authored
      This PR adds a new SparkR programming guide at the top-level. This will be useful for R users as our APIs don't directly match the Scala/Python APIs and as we need to explain SparkR without using RDDs as examples etc.
      
      cc rxin davies pwendell
      
      cc cafreeman -- Would be great if you could also take a look at this !
      
      Author: Shivaram Venkataraman <shivaram@cs.berkeley.edu>
      
      Closes #6490 from shivaram/sparkr-guide and squashes the following commits:
      
      d5ff360 [Shivaram Venkataraman] Add a section on HiveContext, HQL queries
      408dce5 [Shivaram Venkataraman] Fix link
      dbb86e3 [Shivaram Venkataraman] Fix minor typo
      9aff5e0 [Shivaram Venkataraman] Address comments, use dplyr-like syntax in example
      d09703c [Shivaram Venkataraman] Fix default argument in read.df
      ea816a1 [Shivaram Venkataraman] Add a new SparkR programming guide Also update write.df, read.df to handle defaults better
      5f48e5c3
    • WangTaoTheTonic's avatar
      [SPARK-7524] [SPARK-7846] add configs for keytab and principal, pass these two... · a51b133d
      WangTaoTheTonic authored
      [SPARK-7524] [SPARK-7846] add configs for keytab and principal, pass these two configs with different way in different modes
      
      * As spark now supports long running service by updating tokens for namenode, but only accept parameters passed with "--k=v" format which is not very convinient. This patch add spark.* configs in properties file and system property.
      
      *  --principal and --keytabl options are passed to client but when we started thrift server or spark-shell these two are also passed into the Main class (org.apache.spark.sql.hive.thriftserver.HiveThriftServer2 and org.apache.spark.repl.Main).
      In these two main class, arguments passed in will be processed with some 3rd libraries, which will lead to some error: "Invalid option: --principal" or "Unrecgnised option: --principal".
      We should pass these command args in different forms, say system properties.
      
      Author: WangTaoTheTonic <wangtao111@huawei.com>
      
      Closes #6051 from WangTaoTheTonic/SPARK-7524 and squashes the following commits:
      
      e65699a [WangTaoTheTonic] change logic to loadEnvironments
      ebd9ea0 [WangTaoTheTonic] merge master
      ecfe43a [WangTaoTheTonic] pass keytab and principal seperately in different mode
      33a7f40 [WangTaoTheTonic] expand the use of the current configs
      08bb4e8 [WangTaoTheTonic] fix wrong cite
      73afa64 [WangTaoTheTonic] add configs for keytab and principal, move originals to internal
      a51b133d
  7. May 28, 2015
    • Xusen Yin's avatar
      [SPARK-7577] [ML] [DOC] add bucketizer doc · 1bd63e82
      Xusen Yin authored
      CC jkbradley
      
      Author: Xusen Yin <yinxusen@gmail.com>
      
      Closes #6451 from yinxusen/SPARK-7577 and squashes the following commits:
      
      e2dc32e [Xusen Yin] rename colums
      e350e49 [Xusen Yin] add all demos
      006ddf1 [Xusen Yin] add java test
      3238481 [Xusen Yin] add bucketizer
      1bd63e82
    • Mike Dusenberry's avatar
      [DOCS] Fixing broken "IDE setup" link in the Building Spark documentation. · 3e312a5e
      Mike Dusenberry authored
      The location of the IDE setup information has changed, so this just updates the link on the Building Spark page.
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6467 from dusenberrymw/Fix_Broken_Link_On_Building_Spark_Doc and squashes the following commits:
      
      75c533a [Mike Dusenberry] Fixing broken "IDE setup" link in the Building Spark documentation by pointing to new location.
      3e312a5e
    • Matt Wise's avatar
      [DOCS] Fix typo in documentation for Java UDF registration · 35410614
      Matt Wise authored
      This contribution is my original work and I license the work to the project under the project's open source license
      
      Author: Matt Wise <mwise@quixey.com>
      
      Closes #6447 from wisematthew/fix-typo-in-java-udf-registration-doc and squashes the following commits:
      
      e7ef5f7 [Matt Wise] Fix typo in documentation for Java UDF registration
      35410614
  8. May 27, 2015
    • Cheolsoo Park's avatar
      [SPARK-7850][BUILD] Hive 0.12.0 profile in POM should be removed · 6dd64587
      Cheolsoo Park authored
      I grep'ed hive-0.12.0 in the source code and removed all the profiles and doc references.
      
      Author: Cheolsoo Park <cheolsoop@netflix.com>
      
      Closes #6393 from piaozhexiu/SPARK-7850 and squashes the following commits:
      
      fb429ce [Cheolsoo Park] Remove hive-0.13.1 profile
      82bf09a [Cheolsoo Park] Remove hive 0.12.0 shim code
      f3722da [Cheolsoo Park] Remove hive-0.12.0 profile and references from POM and build docs
      6dd64587
  9. May 26, 2015
    • Mike Dusenberry's avatar
      [SPARK-7883] [DOCS] [MLLIB] Fixing broken trainImplicit Scala example in MLlib... · 0463428b
      Mike Dusenberry authored
      [SPARK-7883] [DOCS] [MLLIB] Fixing broken trainImplicit Scala example in MLlib Collaborative Filtering documentation.
      
      Fixing broken trainImplicit Scala example in MLlib Collaborative Filtering documentation to match one of the possible ALS.trainImplicit function signatures.
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6422 from dusenberrymw/Fix_MLlib_Collab_Filtering_trainImplicit_Example and squashes the following commits:
      
      36492f4 [Mike Dusenberry] Fixing broken trainImplicit example in MLlib Collaborative Filtering documentation to match one of the possible ALS.trainImplicit function signatures.
      0463428b
    • Mike Dusenberry's avatar
      [DOCS] [MLLIB] Fixing misformatted links in v1.4 MLlib Naive Bayes... · e5a63a0e
      Mike Dusenberry authored
      [DOCS] [MLLIB] Fixing misformatted links in v1.4 MLlib Naive Bayes documentation by removing space and newline characters.
      
      A couple of links in the MLlib Naive Bayes documentation for v1.4 were broken due to the addition of either space or newline characters between the link title and link URL in the markdown doc.  (Interestingly enough, they are rendered correctly in the GitHub viewer, but not when compiled to HTML by Jekyll.)
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6412 from dusenberrymw/Fix_Broken_Links_In_MLlib_Naive_Bayes_Docs and squashes the following commits:
      
      91a4028 [Mike Dusenberry] Fixing misformatted links by removing space and newline characters.
      e5a63a0e
  10. May 25, 2015
    • Calvin Jia's avatar
      [SPARK-6391][DOCS] Document Tachyon compatibility. · ce0051d6
      Calvin Jia authored
      Adds a section in the RDD persistence section of the programming-guide docs detailing Spark-Tachyon version compatibility as discussed in [[SPARK-6391]](https://issues.apache.org/jira/browse/SPARK-6391).
      
      Author: Calvin Jia <jia.calvin@gmail.com>
      
      Closes #6382 from calvinjia/spark-6391 and squashes the following commits:
      
      113e863 [Calvin Jia] Move compatibility info to the offheap storage level section.
      7942dc5 [Calvin Jia] Add a section in the programming-guide docs for Tachyon compatibility.
      ce0051d6
  11. May 23, 2015
    • Davies Liu's avatar
      [SPARK-6806] [SPARKR] [DOCS] Fill in SparkR examples in programming guide · 7af3818c
      Davies Liu authored
      sqlCtx -> sqlContext
      
      You can check the docs by:
      
      ```
      $ cd docs
      $ SKIP_SCALADOC=1 jekyll serve
      ```
      cc shivaram
      
      Author: Davies Liu <davies@databricks.com>
      
      Closes #5442 from davies/r_docs and squashes the following commits:
      
      7a12ec6 [Davies Liu] remove rdd in R docs
      8496b26 [Davies Liu] remove the docs related to RDD
      e23b9d6 [Davies Liu] delete R docs for RDD API
      222e4ff [Davies Liu] Merge branch 'master' into r_docs
      89684ce [Davies Liu] Merge branch 'r_docs' of github.com:davies/spark into r_docs
      f0a10e1 [Davies Liu] address comments from @shivaram
      f61de71 [Davies Liu] Update pairRDD.R
      3ef7cf3 [Davies Liu] use + instead of function(a,b) a+b
      2f10a77 [Davies Liu] address comments from @cafreeman
      9c2a062 [Davies Liu] mention R api together with Python API
      23f751a [Davies Liu] Fill in SparkR examples in programming guide
      7af3818c
  12. May 22, 2015
    • Mike Dusenberry's avatar
      [SPARK-7830] [DOCS] [MLLIB] Adding logistic regression to the list of... · 63a5ce75
      Mike Dusenberry authored
      [SPARK-7830] [DOCS] [MLLIB] Adding logistic regression to the list of Multiclass Classification Supported Methods documentation
      
      Added logistic regression to the list of Multiclass Classification Supported Methods in the MLlib Classification and Regression documentation, as it was missing.
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6357 from dusenberrymw/Add_LR_To_List_Of_Multiclass_Classification_Methods and squashes the following commits:
      
      7918650 [Mike Dusenberry] Updating broken link due to the "Binary Classification" section on the Linear Methods page being renamed to "Classification".
      3005dc2 [Mike Dusenberry] Adding logistic regression to the list of Multiclass Classification Supported Methods in the MLlib Classification and Regression documentation, as it was missing.
      63a5ce75
    • Andrew Or's avatar
      [SPARK-7771] [SPARK-7779] Dynamic allocation: lower default timeouts further · 3d8760d7
      Andrew Or authored
      The default add time of 5s is still too slow for small jobs. Also, the current default remove time of 10 minutes seem rather high. This patch lowers both and rephrases a few log messages.
      
      Author: Andrew Or <andrew@databricks.com>
      
      Closes #6301 from andrewor14/da-minor and squashes the following commits:
      
      6d614a6 [Andrew Or] Lower log level
      2811492 [Andrew Or] Log information when requests are canceled
      5fcd3eb [Andrew Or] Fix tests
      3320710 [Andrew Or] Lower timeouts + rephrase a few log messages
      3d8760d7
    • Ram Sriharsha's avatar
      [SPARK-7574] [ML] [DOC] User guide for OneVsRest · 509d55ab
      Ram Sriharsha authored
      Including Iris Dataset (after shuffling and relabeling 3 -> 0 to confirm to 0 -> numClasses-1 labeling). Could not find an existing dataset in data/mllib for multiclass classification.
      
      Author: Ram Sriharsha <rsriharsha@hw11853.local>
      
      Closes #6296 from harsha2010/SPARK-7574 and squashes the following commits:
      
      645427c [Ram Sriharsha] cleanup
      46c41b1 [Ram Sriharsha] cleanup
      2f76295 [Ram Sriharsha] Code Review Fixes
      ebdf103 [Ram Sriharsha] Java Example
      c026613 [Ram Sriharsha] Code Review fixes
      4b7d1a6 [Ram Sriharsha] minor cleanup
      13bed9c [Ram Sriharsha] add wikipedia link
      bb9dbfa [Ram Sriharsha] Clean up naming
      6f90db1 [Ram Sriharsha] [SPARK-7574][ml][doc] User guide for OneVsRest
      509d55ab
    • Joseph K. Bradley's avatar
      [SPARK-7578] [ML] [DOC] User guide for spark.ml Normalizer, IDF, StandardScaler · 2728c3df
      Joseph K. Bradley authored
      Added user guide sections with code examples.
      Also added small Java unit tests to test Java example in guide.
      
      CC: mengxr
      
      Author: Joseph K. Bradley <joseph@databricks.com>
      
      Closes #6127 from jkbradley/feature-guide-2 and squashes the following commits:
      
      cd47f4b [Joseph K. Bradley] Updated based on code review
      f16bcec [Joseph K. Bradley] Fixed merge issues and update Python examples print calls for Python 3
      0a862f9 [Joseph K. Bradley] Added Normalizer, StandardScaler to ml-features doc, plus small Java unit tests
      a21c2d6 [Joseph K. Bradley] Updated ml-features.md with IDF
      2728c3df
  13. May 21, 2015
    • Mike Dusenberry's avatar
      [DOCS] [MLLIB] Fixing broken link in MLlib Linear Methods documentation. · e4136ea6
      Mike Dusenberry authored
      Just a small change: fixed a broken link in the MLlib Linear Methods documentation by removing a newline character between the link title and link address.
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6340 from dusenberrymw/Fix_MLlib_Linear_Methods_link and squashes the following commits:
      
      0a57818 [Mike Dusenberry] Fixing broken link in MLlib Linear Methods documentation.
      e4136ea6
    • Joseph K. Bradley's avatar
      [SPARK-7585] [ML] [DOC] VectorIndexer user guide section · 6d75ed7e
      Joseph K. Bradley authored
      Added VectorIndexer section to ML user guide.  Also added javaCategoryMaps() method and Java unit test for it.
      
      CC: mengxr
      
      Author: Joseph K. Bradley <joseph@databricks.com>
      
      Closes #6255 from jkbradley/vector-indexer-guide and squashes the following commits:
      
      dbb8c4c [Joseph K. Bradley] simplified VectorIndexerModel.javaCategoryMaps
      f692084 [Joseph K. Bradley] Added VectorIndexer section to ML user guide.  Also added javaCategoryMaps() method and Java unit test for it.
      6d75ed7e
    • Xiangrui Meng's avatar
      [SPARK-7752] [MLLIB] Use lowercase letters for NaiveBayes.modelType · 13348e21
      Xiangrui Meng authored
      to be consistent with other string names in MLlib. This PR also updates the implementation to use vals instead of hardcoded strings. jkbradley leahmcguire
      
      Author: Xiangrui Meng <meng@databricks.com>
      
      Closes #6277 from mengxr/SPARK-7752 and squashes the following commits:
      
      f38b662 [Xiangrui Meng] add another case _ back in test
      ae5c66a [Xiangrui Meng] model type -> modelType
      711d1c6 [Xiangrui Meng] Merge remote-tracking branch 'apache/master' into SPARK-7752
      40ae53e [Xiangrui Meng] fix Java test suite
      264a814 [Xiangrui Meng] add case _ back
      3c456a8 [Xiangrui Meng] update NB user guide
      17bba53 [Xiangrui Meng] update naive Bayes to use lowercase model type strings
      13348e21
  14. May 20, 2015
    • Hari Shreedharan's avatar
      [SPARK-7750] [WEBUI] Rename endpoints from `json` to `api` to allow fu… · a70bf06b
      Hari Shreedharan authored
      …rther extension to non-json outputs too.
      
      Author: Hari Shreedharan <hshreedharan@apache.org>
      
      Closes #6273 from harishreedharan/json-to-api and squashes the following commits:
      
      e14b73b [Hari Shreedharan] Rename `getJsonServlet` to `getServletHandler` i
      42f8acb [Hari Shreedharan] Import order fixes.
      2ef852f [Hari Shreedharan] [SPARK-7750][WebUI] Rename endpoints from `json` to `api` to allow further extension to non-json outputs too.
      a70bf06b
    • Sandy Ryza's avatar
      [SPARK-7579] [ML] [DOC] User guide update for OneHotEncoder · 829f1d95
      Sandy Ryza authored
      Author: Sandy Ryza <sandy@cloudera.com>
      
      Closes #6126 from sryza/sandy-spark-7579 and squashes the following commits:
      
      5af803d [Sandy Ryza] SPARK-7579 [MLLIB] User guide update for OneHotEncoder
      829f1d95
    • ehnalis's avatar
      [SPARK-7533] [YARN] Decrease spacing between AM-RM heartbeats. · 3ddf051e
      ehnalis authored
      Added faster RM-heartbeats on pending container allocations with multiplicative back-off.
      Also updated related documentations.
      
      Author: ehnalis <zoltan.zvara@gmail.com>
      
      Closes #6082 from ehnalis/yarn and squashes the following commits:
      
      a1d2101 [ehnalis] MIss-spell fixed.
      90f8ba4 [ehnalis] Changed default HB values.
      6120295 [ehnalis] Removed the bug, when allocation heartbeat would not start from initial value.
      08bac63 [ehnalis] Refined style, grammar, removed duplicated code.
      073d283 [ehnalis] [SPARK-7533] [YARN] Decrease spacing between AM-RM heartbeats.
      d4408c9 [ehnalis] [SPARK-7533] [YARN] Decrease spacing between AM-RM heartbeats.
      3ddf051e
  15. May 19, 2015
    • Mike Dusenberry's avatar
      [SPARK-7744] [DOCS] [MLLIB] Distributed matrix" section in MLlib "Data Types"... · 38605206
      Mike Dusenberry authored
      [SPARK-7744] [DOCS] [MLLIB] Distributed matrix" section in MLlib "Data Types" documentation should be reordered.
      
      The documentation for BlockMatrix should come after RowMatrix, IndexedRowMatrix, and CoordinateMatrix, as BlockMatrix references the later three types, and RowMatrix is considered the "basic" distributed matrix.  This will improve comprehensibility of the "Distributed matrix" section, especially for the new reader.
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6270 from dusenberrymw/Reorder_MLlib_Data_Types_Distributed_matrix_docs and squashes the following commits:
      
      6313bab [Mike Dusenberry] The documentation for BlockMatrix should come after RowMatrix, IndexedRowMatrix, and CoordinateMatrix, as BlockMatrix references the later three types, and RowMatrix is considered the "basic" distributed matrix.  This will improve comprehensibility of the "Distributed matrix" section, especially for the new reader.
      38605206
    • Xusen Yin's avatar
      [SPARK-7586] [ML] [DOC] Add docs of Word2Vec in ml package · 68fb2a46
      Xusen Yin authored
      CC jkbradley.
      
      JIRA [issue](https://issues.apache.org/jira/browse/SPARK-7586).
      
      Author: Xusen Yin <yinxusen@gmail.com>
      
      Closes #6181 from yinxusen/SPARK-7586 and squashes the following commits:
      
      77014c5 [Xusen Yin] comment fix
      57a4c07 [Xusen Yin] small fix for docs
      1178c8f [Xusen Yin] remove the correctness check in java suite
      1c3f389 [Xusen Yin] delete sbt commit
      1af152b [Xusen Yin] check python example code
      1b5369e [Xusen Yin] add docs of word2vec
      68fb2a46
    • Dice's avatar
      [SPARK-7704] Updating Programming Guides per SPARK-4397 · 32fa611b
      Dice authored
      The change per SPARK-4397 makes implicit objects in SparkContext to be found by the compiler automatically. So that we don't need to import the o.a.s.SparkContext._ explicitly any more and can remove some statements around the "implicit conversions" from the latest Programming Guides (1.3.0 and higher)
      
      Author: Dice <poleon.kd@gmail.com>
      
      Closes #6234 from daisukebe/patch-1 and squashes the following commits:
      
      b77ecd9 [Dice] fix a typo
      45dfcd3 [Dice] rewording per Sean's advice
      a094bcf [Dice] Adding a note for users on any previous releases
      a29be5f [Dice] Updating Programming Guides per SPARK-4397
      32fa611b
    • Saleem Ansari's avatar
      [SPARK-7723] Fix string interpolation in pipeline examples · df34793a
      Saleem Ansari authored
      https://issues.apache.org/jira/browse/SPARK-7723
      
      Author: Saleem Ansari <tuxdna@gmail.com>
      
      Closes #6258 from tuxdna/master and squashes the following commits:
      
      2bb5a42 [Saleem Ansari] Merge branch 'master' into mllib-pipeline
      e39db9c [Saleem Ansari] Fix string interpolation in pipeline examples
      df34793a
    • Mike Dusenberry's avatar
      Fixing a few basic typos in the Programming Guide. · 61f164d3
      Mike Dusenberry authored
      Just a few minor fixes in the guide, so a new JIRA issue was not created per the guidelines.
      
      Author: Mike Dusenberry <dusenberrymw@gmail.com>
      
      Closes #6240 from dusenberrymw/Fix_Programming_Guide_Typos and squashes the following commits:
      
      ffa76eb [Mike Dusenberry] Fixing a few basic typos in the Programming Guide.
      61f164d3
Loading