Executor模块是负责运行Task计算任务,并将结果返回给Driver,尽管Spark支持多种资源调度框架,比如mesos,yarn,standalone,这些资源框架在分配资源以后,最后都会让Executor完成最后的计算。
下面主要介绍Standalone模式下Executor模块交互过程:
Executor模块是负责运行Task计算任务,并将结果返回给Driver,尽管Spark支持多种资源调度框架,比如mesos,yarn,standalone,这些资源框架在分配资源以后,最后都会让Executor完成最后的计算。
下面主要介绍Standalone模式下Executor模块交互过程: