Difference between spark standalone and local mode?

与世无争的帅哥 提交于 2019-12-01 14:58:24

Spark standalone is a resource manager which can work on a cluster. It is simply the built in resource manager as opposed to an external one like yarn.

Spark local runs without any resource manager, everything runs in a single jvm (you can decide the number of threads). This is aimed for testing locally.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!