Can apache spark run without hadoop?

前端 未结 10 2125
长发绾君心
长发绾君心 2020-12-12 10:54

Are there any dependencies between Spark and Hadoop?

If not, are there any features I\'ll miss when I run

相关标签:
10条回答
  • 2020-12-12 11:13

    Yes, Spark can run with or without Hadoop installation for more details you can visit -https://spark.apache.org/docs/latest/

    0 讨论(0)
  • 2020-12-12 11:19

    Yes, of course. Spark is an independent computation framework. Hadoop is a distribution storage system(HDFS) with MapReduce computation framework. Spark can get data from HDFS, as well as any other data source such as traditional database(JDBC), kafka or even local disk.

    0 讨论(0)
  • 2020-12-12 11:22

    Yes spark can run without Hadoop. You can install spark in your local machine with out Hadoop. But Spark lib comes with pre Haddop libraries i.e. are used while installing on your local machine.

    0 讨论(0)
  • 2020-12-12 11:22

    No. It requires full blown Hadoop installation to start working - https://issues.apache.org/jira/browse/SPARK-10944

    0 讨论(0)
提交回复
热议问题