我可以在两个位置看到相同的文件 -
/ usr / lib中/火花/ CONF
和
的/ etc /火花/ CONF
(我正在使用Cloudera VM)
为什么火花配置有两个不同的位置?
他们是如何相关的?
答案 0 :(得分:2)
默认情况下,Spark 1.6.0附带Cloudera VM
installation directory of your spark is /usr/lib/spark
configuration directory for your spark is /etc/spark/conf.dist
/ usr / lib / spark / conf是指向/ etc / spark / conf的符号链接
/ etc / spark / conf再次是一个指向/etc/spark/conf.dist的符号链接(这是你的实际配置目录)
' / usr / lib / spark / conf' & ' / etc / spark / conf' 最终指向相同的路径
If you wish to upgrade your spark to a higher version say 2.2.0
希望这有帮助!