親愛的讀者,恭喜你運行了你的第一個Spark應用程序!
你肯定不僅僅滿足于此,以下是更多的深入學習的資料:
* 深度學習API和其它組件, 請參照[Spark開發指南](https://spark.apache.org/docs/latest/programming-guide.html)
* 學習在集群中運行程序,訪問?[發布概覽](https://spark.apache.org/docs/latest/cluster-overview.html).
* 最后, Spark發布包中的examples文件夾下包含幾個例子 ([Scala](https://github.com/apache/spark/tree/master/examples/src/main/scala/org/apache/spark/examples),?[Java](https://github.com/apache/spark/tree/master/examples/src/main/java/org/apache/spark/examples),?[Python](https://github.com/apache/spark/tree/master/examples/src/main/python)). 你可以運行它們:
~~~
# For Scala and Java, use run-example:
./bin/run-example SparkPi
# For Python examples, use spark-submit directly:
./bin/spark-submit examples/src/main/python/pi.py
~~~
翻譯自?[Quick Start](https://spark.apache.org/docs/latest/quick-start.html)