# 从这里开始
你能够从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/)中查看。
- Introduction
- 快速上手
- Spark Shell
- 独立应用程序
- 开始翻滚吧!
- 编程指南
- 引入 Spark
- 初始化 Spark
- Spark RDDs
- 并行集合
- 外部数据集
- RDD 操作
- RDD持久化
- 共享变量
- 从这里开始
- Spark Streaming
- 一个快速的例子
- 基本概念
- 关联
- 初始化StreamingContext
- 离散流
- 输入DStreams
- DStream中的转换
- DStream的输出操作
- 缓存或持久化
- Checkpointing
- 部署应用程序
- 监控应用程序
- 性能调优
- 减少批数据的执行时间
- 设置正确的批容量
- 内存调优
- 容错语义
- Spark SQL
- 开始
- 数据源
- RDDs
- parquet文件
- JSON数据集
- Hive表
- 性能调优
- 其它SQL接口
- 编写语言集成(Language-Integrated)的相关查询
- Spark SQL数据类型
- GraphX编程指南
- 开始
- 属性图
- 图操作符
- Pregel API
- 图构造者
- 顶点和边RDDs
- 图算法
- 例子
- 提交应用程序
- 独立运行Spark
- 在yarn上运行Spark
- Spark配置