从这里开始
最后更新于:2022-04-01 22:18:40
# 从这里开始
你能够从spark官方网站查看一些[spark运行例子](http://spark.apache.org/examples.html)。另外,Spark的example目录包含几个Spark例子,你能够通过如下方式运行Java或者scala例子:
~~~
./bin/run-example SparkPi
~~~
为了优化你的项目, [configuration](https://spark.apache.org/docs/latest/configuration.html)和[tuning](https://spark.apache.org/docs/latest/tuning.html)指南提高了最佳实践的信息。保证你保存在内存中的数据是有效的格式是非常重要的事情。为了给部署操作提高帮助,[集群模式概述](https://spark.apache.org/docs/latest/cluster-overview.html)介绍了包含分布式操作和支持集群管理的组件。
最后,完整的API文档可以在后面链接[scala](https://spark.apache.org/docs/latest/api/scala/#org.apache.spark.package),[java](https://spark.apache.org/docs/latest/api/java/),[python](https://spark.apache.org/docs/latest/api/python/)中查看。
';