You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by gu...@apache.org on 2020/07/27 08:51:08 UTC

[spark] branch master updated (99f33ec -> 6ab29b3)

This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git.


    from 99f33ec  [SPARK-32234][FOLLOWUP][SQL] Update the description of utility method
     add 6ab29b3  [SPARK-32179][SPARK-32188][PYTHON][DOCS] Replace and redesign the documentation base

No new revisions were added by this update.

Summary of changes:
 .github/workflows/master.yml                       |   8 +-
 .gitignore                                         |   1 +
 LICENSE                                            |   2 +-
 dev/create-release/spark-rm/Dockerfile             |   5 +-
 dev/lint-python                                    |  18 +-
 dev/requirements.txt                               |   1 +
 dev/tox.ini                                        |   2 +-
 docs/README.md                                     |   7 +-
 docs/_plugins/copy_api_dirs.rb                     |   4 +-
 docs/img/spark-logo-reverse.png                    | Bin 0 -> 21547 bytes
 python/docs/Makefile                               |   4 +-
 python/docs/_static/pyspark.css                    |  90 ----
 python/docs/_static/pyspark.js                     |  99 ----
 python/docs/_templates/layout.html                 |   6 -
 python/docs/index.rst                              |  53 --
 python/docs/make2.bat                              |   4 +-
 python/docs/pyspark.ml.rst                         | 122 -----
 python/docs/pyspark.mllib.rst                      |  99 ----
 python/docs/pyspark.resource.rst                   |  11 -
 python/docs/pyspark.rst                            |  21 -
 python/docs/pyspark.sql.rst                        |  37 --
 python/docs/pyspark.streaming.rst                  |  17 -
 python/docs/{ => source}/_static/copybutton.js     |   0
 python/docs/source/_static/css/pyspark.css         |  94 ++++
 python/docs/source/_templates/class_with_docs.rst  |  79 +++
 python/docs/{ => source}/conf.py                   |  51 +-
 python/docs/source/development/index.rst           |  21 +
 python/docs/source/getting_started/index.rst       |  22 +
 python/docs/source/index.rst                       |  32 ++
 python/docs/source/migration_guide/index.rst       |  22 +
 python/docs/source/reference/index.rst             |  34 ++
 python/docs/source/reference/pyspark.ml.rst        | 363 ++++++++++++++
 python/docs/source/reference/pyspark.mllib.rst     | 253 ++++++++++
 python/docs/source/reference/pyspark.resource.rst  |  38 ++
 python/docs/source/reference/pyspark.rst           | 275 +++++++++++
 python/docs/source/reference/pyspark.sql.rst       | 542 +++++++++++++++++++++
 python/docs/source/reference/pyspark.ss.rst        |  90 ++++
 python/docs/source/reference/pyspark.streaming.rst | 130 +++++
 python/docs/source/user_guide/index.rst            |  22 +
 python/pyspark/sql/functions.py                    |   4 +
 python/pyspark/sql/readwriter.py                   |  17 +
 python/pyspark/sql/streaming.py                    |  13 +
 42 files changed, 2129 insertions(+), 584 deletions(-)
 create mode 100644 docs/img/spark-logo-reverse.png
 delete mode 100644 python/docs/_static/pyspark.css
 delete mode 100644 python/docs/_static/pyspark.js
 delete mode 100644 python/docs/_templates/layout.html
 delete mode 100644 python/docs/index.rst
 delete mode 100644 python/docs/pyspark.ml.rst
 delete mode 100644 python/docs/pyspark.mllib.rst
 delete mode 100644 python/docs/pyspark.resource.rst
 delete mode 100644 python/docs/pyspark.rst
 delete mode 100644 python/docs/pyspark.sql.rst
 delete mode 100644 python/docs/pyspark.streaming.rst
 rename python/docs/{ => source}/_static/copybutton.js (100%)
 create mode 100644 python/docs/source/_static/css/pyspark.css
 create mode 100644 python/docs/source/_templates/class_with_docs.rst
 rename python/docs/{ => source}/conf.py (89%)
 create mode 100644 python/docs/source/development/index.rst
 create mode 100644 python/docs/source/getting_started/index.rst
 create mode 100644 python/docs/source/index.rst
 create mode 100644 python/docs/source/migration_guide/index.rst
 create mode 100644 python/docs/source/reference/index.rst
 create mode 100644 python/docs/source/reference/pyspark.ml.rst
 create mode 100644 python/docs/source/reference/pyspark.mllib.rst
 create mode 100644 python/docs/source/reference/pyspark.resource.rst
 create mode 100644 python/docs/source/reference/pyspark.rst
 create mode 100644 python/docs/source/reference/pyspark.sql.rst
 create mode 100644 python/docs/source/reference/pyspark.ss.rst
 create mode 100644 python/docs/source/reference/pyspark.streaming.rst
 create mode 100644 python/docs/source/user_guide/index.rst


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org