标签:应用 storm cut job ESS manage gets exec 类型
http://spark.apache.org/docs/latest/cluster-overview.html Component章节
1 Each application gets its own executor processes,所以各application间是独立的。
2 spark可以使用多种 cluster manager,包括 Spark’s own standalone cluster manager, Mesos or YARN。
3 driver program 需要监听和接收its executors,所以driver对于各executers必须是网络可达的。
4 因为driver调度tasks on the cluster, 所以driver节点和worker节点最好在一个局域网中。
另:spark各组件定义:https://blog.csdn.net/minge_se/article/details/79137085
yarn最基本的思想是分离资源管理和job调度/监管。
yarn与运行的用户程序完全解耦,意味着yarn上可以运行各种类型的分布式运算程序,比如 mapreduce、storm,spark,
https://blog.csdn.net/qq_33624952/article/details/79341034
标签:应用 storm cut job ESS manage gets exec 类型
原文地址:https://www.cnblogs.com/coding-gaga/p/11623337.html