X Tutup
The Wayback Machine - https://web.archive.org/web/20200503115511/https://github.com/apache/spark/tree/master/python
Skip to content
Branch: master
Find file History

Latest commit

Fetching latest commit…
Cannot retrieve the latest commit at this time.

Files

Permalink
Type Name Latest commit message Commit time
..
Failed to load latest commit information.
docs [SPARK-30880][DOCS] Delete Sphinx Makefile cruft Feb 21, 2020
lib [SPARK-30884][PYSPARK] Upgrade to Py4J 0.10.9 Feb 20, 2020
pyspark [SPARK-31549][PYSPARK] Add a develop API invoking collect on Python R… May 1, 2020
test_coverage [SPARK-7721][PYTHON][TESTS] Adds PySpark coverage generation script Jan 22, 2018
test_support [SPARK-23094][SPARK-23723][SPARK-23724][SQL] Support custom encoding … Apr 29, 2018
.coveragerc [SPARK-7721][PYTHON][TESTS] Adds PySpark coverage generation script Jan 22, 2018
.gitignore [SPARK-3946] gitignore in /python includes wrong directory Oct 14, 2014
MANIFEST.in [SPARK-26803][PYTHON] Add sbin subdirectory to pyspark Feb 27, 2019
README.md [SPARK-30884][PYSPARK] Upgrade to Py4J 0.10.9 Feb 20, 2020
pylintrc [SPARK-13596][BUILD] Move misc top-level build files into appropriate… Mar 7, 2016
run-tests [SPARK-29672][PYSPARK] update spark testing framework to use python3 Nov 14, 2019
run-tests-with-coverage [SPARK-26252][PYTHON] Add support to run specific unittests and/or do… Dec 5, 2018
run-tests.py [SPARK-30480][PYTHON][TESTS] Increases the memory limit being tested … Jan 13, 2020
setup.cfg [SPARK-1267][SPARK-18129] Allow PySpark to be pip installed Nov 16, 2016
setup.py [SPARK-29641][PYTHON][CORE] Stage Level Sched: Add python api's and t… Apr 23, 2020

README.md

Apache Spark

Spark is a unified analytics engine for large-scale data processing. It provides high-level APIs in Scala, Java, Python, and R, and an optimized engine that supports general computation graphs for data analysis. It also supports a rich set of higher-level tools including Spark SQL for SQL and DataFrames, MLlib for machine learning, GraphX for graph processing, and Structured Streaming for stream processing.

https://spark.apache.org/

Online Documentation

You can find the latest Spark documentation, including a programming guide, on the project web page

Python Packaging

This README file only contains basic information related to pip installed PySpark. This packaging is currently experimental and may change in future versions (although we will do our best to keep compatibility). Using PySpark requires the Spark JARs, and if you are building this from source please see the builder instructions at "Building Spark".

The Python packaging for Spark is not intended to replace all of the other use cases. This Python packaged version of Spark is suitable for interacting with an existing cluster (be it Spark standalone, YARN, or Mesos) - but does not contain the tools required to set up your own standalone Spark cluster. You can download the full version of Spark from the Apache Spark downloads page.

NOTE: If you are using this with a Spark standalone cluster you must ensure that the version (including minor version) matches or you may experience odd errors.

Python Requirements

At its core PySpark depends on Py4J, but some additional sub-packages have their own extra requirements for some features (including numpy, pandas, and pyarrow).

You can’t perform that action at this time.
X Tutup