Created 02-01-2018 01:28 PM
I think hadoop and spark both are big data framework, so why Spark is killing Hadoop? what is the the difference between hadoop and spark.
Created 02-01-2018 06:39 PM
Hadoop and spark are two different frameworks. On a very high level. Hadoop is a storage layer and Spark is a processing engine.
You can store the data in HDFS and run the aggregations using spark on top of that data.
Created 02-01-2018 07:47 PM
@Pritam Pal, Hadoop is a combination of HDFS ( data storage), YARN (app execution framework) And Mapreduce ( data processing engine). Thus, it is not fair to compare Hadoop and Spark. Mapreduce and Spark can be comparable because both of them are data processing engine.
Here is a good link which compares Mapreduce and Spark in detail
https://www.xplenty.com/blog/apache-spark-vs-hadoop-mapreduce/
Created 10-19-2018 09:33 AM