
Spark
ylzhjlinux
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Spark: Cluster Mode Overview
https://spark.apache.org/docs/latest/cluster-overview.html This document gives a short overview of how Spark runs on clusters, to make it easier to understand the components involved. Read throug...原创 2015-04-20 10:15:03 · 144 阅读 · 0 评论 -
Spark: deploy cluster in standlone mode
Host: 192.168.0.135 192.168.0.136 192.168.0.137 master: 137 workers:135 136 1.Install spark on all hosts in /opt dir 2.Install SSH Remote Access 137#ssh-keygen 137#ssh-copy-id -i ~/.s...原创 2015-04-20 12:32:56 · 136 阅读 · 0 评论 -
Spark: cluters architecture
In distributed mode, Spark uses a master/slave architecture with one central coordinator and many distributed workers. The central coordinator is called the driver.The driver communicates with a p...原创 2015-04-22 10:51:33 · 159 阅读 · 0 评论 -
Spark: Spark Streaming
Spark Streaming uses a “micro-batch” architecture, where the streaming computation is treated as a continuous series of batch computations on small batches of data. Spark Streaming receives data fro...原创 2015-04-22 16:02:40 · 147 阅读 · 0 评论