HadoopMR vs Spark vs Flink 特性对比

看了下flink,然后找到了一篇对比文章,但是这篇文章的作者是偏向于flink的,有些对比,我们就看看,不说话。
个人认为spark是批处理的老大,flink是流式处理的老大。
至于表处理,spark也是不落下,列式存储parquet以及列式数据集dataFrame,以及执行计划的自动优化使得数据的处理性能,和hive2 Tenz / impala有点一拼,但是掌握spark技术栈,可以应付绝大多数大数据问题,其他的问题就细分到各个技术框架了。
下面看看这三者的特性性对比,这里就不做翻译了。
最重要的一句:Flink: It is mainly used for real-time data Analysis Although it also provides fast batch data Processing.

原文链接 :http://data-flair.training/blogs/spark-vs-flink-vs-hadoop-comparison/


1. Objective

In this Spark vs Flink vs Hadoop tutorial, we are going to learn feature wise comparison between Apache Flink vs Spark vs Hadoop.  These are the top 3 Big data technologies that have captured IT market very rapidly with various job roles available for them. You will understand the limitations of Hadoop for which Spark came into picture and drawbacks of Spark due to which Flink need arose. Here you will learn difference between Spark and Flink and Hadoop in detailed manner.

Flink vs Spark vs Hadoop

Learn Flink from Industry Experts

2. Comparison between Apache Flink vs Spark vs Hadoop

Before processing with learning difference between Flink, Spark and Hadoop, let us revise basics of these 3 technologies:

Apache Flink tutorial – 4G of Big Data

Apache Spark tutorial – 3G of Big Data

Big data Hadoop tutorial

So let’s start the journey of comparison between Hadoop vs Spark vs Flink now:

1. Data Processing

Hadoop: Hadoop was designed for batch processing, that means it takes large dataset in input, all at once, processes it and produces the result. Batch processing is very efficient in processing in high volume data. Depending on the size of the data being processed and the computational power of the system, output can be delayed significantly.

Spark: Apache Spark is also a part of hadoop Ecosystem, it is a batch processing System at heart too but it also supports stream processing.

Flink: Flink provides single runtime for the streaming and as well batch processing so one common runtime is utilized for data  streaming application and batch processing application.

2. Streaming Engine

Hadoop: Map-reduce is batch- oriented processing tool. It takes large dataset in input, all at once, processes it and produces the result.

Spark: Spark Streaming processes data streams in micro-batches, where each batch contains a collection of events that arrived over the batch period. But it is not sufficient for use cases where we need to process large streams of live data and provide results in real time.

Flink: Apache Flink is the true streaming engine that uses streams for workloads: streaming, SQL, micro-batch and batch. Batch is a finite set of streamed data.

3. Data Flow

Hadoop: MapReduce computation dataflow does not have any loops, it is a chain of stages; at each stage you progress forward using output of previous stage and producing input for the next stage.

Spark: Though Machine Learning algorithm is a cyclic data flow, it is represented as direct acyclic graph inside the spark.

Flink: Flink takes a different approach than others. It supports controlled cyclic dependency graph in run time. This helps it in representing the Machine Learning algorithms in a very efficient way.

4. Computation Model

Hadoop: MapReduce adopted batch-oriented model. Batch is essentially processing data at rest, taking a large amount of data at once, processing it and then writing out the output.

Spark: Spark has adopted micro-batching. Micro-batches are an essentially “collect and then process” kind of computational model.

Flink: Flink has adopted a continuous flow, operator-based streaming model. A continuous flow operator processes data when it arrives, without any delay in collecting the data or processing the data.

5. Performance

Hadoop: Hadoop supports batch processing only. It doesn’t process streamed data hence overall performance is slower when compared Hadoop vs Spark vs flink.

Spark: Though Apache Spark has an excellent community background and now It is considered as most matured community. But Its stream processing is not much efficient than Apache Flink as it uses micro-batch processing.

Flink: Overall performance of Apache Flink is excellent as compared to any other data processing system. Apache Flink uses native closed loop iteration operators which makes machine learning and graph processing more faster when we compare Flink and Spark and Hadoop.

6. Memory management

Hadoop: Hadoop provides configurable Memory management. You can do it dynamically or statically.

Spark: Spark provides configurable memory management. The latest release of Spark 1.6 has moved towards automating memory management.

Flink: Flink provides automatic memory management. It has its own memory management system, separate from Java’s garbage collector.

7. Fault tolerance

Hadoop: MapReduce is highly fault tolerant. There is no need to restart the application from scratch in case of any failure in Hadoop.

Spark: Spark Streaming recovers lost work and with no extra code or configuration, it delivers exactly-once semantics out of the box.

Flink: The fault tolerance mechanism followed by Apache Flink is based on Chandy-Lamport distributed snapshots. The mechanism is lightweight, which results in maintaining high throughput rates and provide strong consistency guarantees at the same time.

8. Scalability

Hadoop: MapReduce has incredible scalability potential and has been used in production on tens of thousands of Nodes.

Spark: Spark is highly scalable, we can keep adding n number of nodes in the cluster. A large known spark cluster is of 8000 nodes.

Flink: Flink is also highly scalable, we can keep adding n number of nodes in the cluster A large known Flink cluster is of thousands of nodes.

9. Iterative Processing

Hadoop: It does not support iterative processing

Spark: Spark iterates its data in batches In Spark, each iteration has to be scheduled and executed separately.

Flink: Flink iterates data by using its streaming architecture. Flink can be instructed to only process the parts of the data that have actually changed, thus significantly increasing the performance of the job.

10. Language Support

Hadoop: Hadoop Supports Primarily Java, other languages supported are c, c++, ruby, groovy, Perl, python.

Spark: Spark supports java, Scala, python and R. Spark is implemented in scala, it provides API in other languages like Java, Python, and R.

Flink: Flink Supports java, Scala, python and R. Flink is implemented in java. It does provide Scala API too.

11. Optimization

Hadoop: In MapReduce, jobs have to be manually optimized. There are several ways to optimize the MapReduce Jobs: Configure your cluster correctly, use a combiner , use LZO compression, tune the number of MapReduce Task appropriately and use the most appropriate and compact writable type for your data.

Spark: In Apache Spark, jobs have to be manually optimized. There is a new extensible optimizer, Catalyst, based on functional programming construct in scala. Catalyst’s extensible design had two purposes: First, easy to add new optimization techniques. Second, enable external developers to extend the optimizer catalyst.

Flink: Flink comes with an optimizer that is independent with actual programming interface. The Flink optimizer works similarly to a relational Database Optimizer, but applies these optimizations to the Flink programs, rather than SQL queries.

12. Latency

Hadoop: The MapReduce framework of Hadoop is relatively slower since it is designed to support different format, structure and huge volume of data. That’s why Hadoop has higher latency than both spark and Flink.

Spark: Apache Spark is yet another batch processing system but it is relatively faster than Hadoop MapReduce since it caches much of the input data on memory by RDD and keeps intermediate data in memory itself, eventually writes the data to disk upon completion or whenever required.

Flink: With minimum efforts in configuration, Apache Flink’s data streaming runtime achieves low latency and high throughput.

13. Processing Speed

Hadoop:  MapReduce processes slower than spark and flink. The slowness occurs only because of the nature of the MapReduce based execution, where it produces lots of intermediate data, much data exchanged between nodes, thus causes huge disk IO latency. Furthermore, it has to persist much data in disk for synchronization between phases so that it can support Job recovery from failures. Also, there are no ways in MapReduce to cache all subset of the data in memory.

Spark: Spark processes faster than MapReduce because it caches much of the input data on memory by RDD and keeps intermediate data in memory itself, eventually writes the data to disk upon completion or whenever required. Spark is 100 times faster than mapreduce and this shows how spark is better than Hadoop MapReduce.

Flink: Flink processes faster than Spark because of its streaming architecture. Flink can be instructed to only process the parts of the data that have actually changed, thus significantly increasing the performance of job.

14. Visualization

Hadoop: Hadoop data visualization tool is zoomdata that can connect directly to HDFS as well as to SQL-on-Hadoop technologies such as Impala, Hive, Spark SQL, Presto and more.

Spark: Spark offers a web interface for submitting and executing jobs on which the resulting execution plan can be visualized. Flink and Spark both are integrated to Apache zeppelin It provides data analytics, ingestion, as well as discovery, visualization, and collaboration.

Flink: Flink also offers a web interface for submitting and executing jobs. The resulting execution plan can be visualized on this interface.

15. Recovery

Hadoop: MapReduce is naturally resilient to system faults or failures. It is highly fault tolerant system.

Spark: Spark RDDs allow recovery of partitions on failed nodes by re-computation of the DAG while also supporting a more similar recovery style to Hadoop by way of checkpointing, to reduce the dependencies of RDDs.

Flink: Flink supports checkpointing mechanism that stores the program in the data sources and data sink, the state of window, as well as user-defined state that recovers streaming job after failure.

16. Security

Hadoop: Hadoop supports Kerberos authentication, which is somewhat painful to manage. However, third party vendors have enabled organizations to leverage Active Directory Kerberos and LDAP for authentication.

Spark: Spark’s security is a bit sparse by currently only supporting authentication via shared secret (password authentication). The security bonus that Spark can enjoy is that if you run Spark on HDFS, it can use HDFS ACLs and file-level permissions. Additionally, Spark can run on YARN to use Kerberos authentication.

Flink: There is user-authentication support in Flink via the Hadoop / Kerberos infrastructure. If you run Flink on YARN, Flink acquires the Kerberos tokens of the user that submits programs, and authenticate itself at YARN, HDFS, and HBase with that.Flink’s upcoming connector, streaming programs can authenticate themselves as stream brokers via SSL.

17. Cost

Hadoop: MapReduce can typically run on less expensive hardware than some alternatives since it does not attempt to store everything in memory.

Spark: As spark requires a lot of RAM to run in-memory, increasing it in cluster, gradually increases its cost.

Flink: Flink also requires a lot of RAM to run in-memory, so it will increase its cost gradually.

18. Compatibility

Hadoop: Hadoop MapReduce and Apache Spark are compatible with each other and Spark shares all
MapReduce’s compatibilities for data sources, file formats and business intelligence tools via JDBC and ODBC.

Spark: Spark and hadoop are compatible to each other. Spark is compatible with Hadoop data. It can run in Hadoop clusters through YARN or Spark’s standalone mode, and it can process data in HDFS, HBase, Cassandra, Hive, and any Hadoop InputFormat.

Flink: Flink is a scalable data analytics framework that is fully compatible to Hadoop. It provides a Hadoop Compatibility package to wrap functions implemented against Hadoop’s MapReduce interfaces and embed them in Flink programs.

19. Abstraction

Hadoop: In Mapreduce, we don’t have any type of abstraction.

Spark: In Spark, for batch we have Spark RDD abstraction and DStream for streaming which is internally RDD itself.

Flink: In flink, we have Dataset abstraction for batch and DataStreams for the streaming application.

20. Easy to use

Hadoop: MapReduce developers need to hand code each and every operation which makes it very difficult to work.

Spark: Spark is easy to program as it has tons of high-level operators.

Flink: Flink also has high-level operators.

21. Interactive Mode

Hadoop: MapReduce does not have interactive Mode.

Spark: Spark has an interactive shell to learn how to make the most out of Apache Spark. This is a Spark application written in Scala to offer a command-line environment with auto-completion where you can run ad-hoc queries and get familiar with the features of Spark.

Flink: Flink comes with an integrated interactive Scala Shell. It can be used in a local setup as well as in a cluster setup

22. Real time Analysis

Hadoop: MapReduce fails when it comes to real-time data processing as it was designed to perform batch processing on voluminous amounts of data.

Spark: It can process real time data ie data coming from the real-time event streams at the rate of millions of events per second.

Flink: It is mainly used for real-time data Analysis Although it also provides fast batch data Processing.

23. Scheduler

Hadoop: Scheduler in Hadoop becomes the pluggable component. There are two schedulers for multi user workload:  fair Scheduler and capacity Scheduler. To schedule complex flows, MapReduce needs an external job scheduler like Oozie.

Spark: Due to in-memory computation, spark acts its own flow scheduler.

Flink: Flink can use YARN Scheduler but Flink also has its own Scheduler.

24. SQL support

Hadoop: It enables users to run SQL queries using Apache Hive.

Spark: It enables users to run SQL queries using Spark-SQL. Spark provides both Hive like query language and Dataframe like DSL for querying structured data.

Flink: In Flink, Table API is an SQL-like expression language that supports data frame like DSL and it’s still in beta. There are plans to add the SQL interface but not sure when it will land in the framework.

25. Caching  

Hadoop: MapReduce cannot cache the data in memory for future requirements

Spark: Spark can cache data in memory for further iterations which enhance its performance.

Flink: Flink can cache data in memory for further iterations to enhance its performance.

26. Hardware Requirements

Hadoop: MapReduce runs very well on commodity Hardware.

Spark: Spark needs mid to high-level hardware because Spark cache data in memory for further iterations which enhance its performance.

Flink: Flink also needs mid to High-level Hardware. Flink can also cache data in memory for further iterations which enhance its performance.

27. Machine Learning

Hadoop: Hadoop requires machine learning tool like Apache Mahout.

Spark: Spark has its own set of machine learning MLlib. Within memory caching and other implementation details, it’s really powerful platform to implement ML algorithms.

Flink: Flink has FlinkML which is Machine Learning library for Flink. It supports controlled cyclic dependency graph in runtime. This makes them represent the ML algorithms in a very efficient way compared to DAG representation.

28. Line of code

Hadoop: Hadoop 2.0 has 1,20,000 line of codes. More no of lines produce more no of bugs and it will take much time to execute the program.

Spark: Apache Spark is developed in merely 20000 line of codes. No. of line of code is lesser than Hadoop. So it will take less time to execute the program.

Flink: Flink is developed in scala and java, so no. of line of code is lesser than Hadoop. So it will also take the less time to execute the program.

29. High Availability

High availability refers to a system or component that is continuously operational for a desirably long length of time.

Hadoop: Configurable in High Availability Mode

Spark: Configurable in High Availability Mode

Flink:  Configurable in High Availability Mode

30. Amazon S3 connector

Amazon Simple Storage Service (Amazon S3) is object storage with a simple web service interface to store and retrieve any amount of data from anywhere on the web.           

Hadoop: Provides Supports for Amazon S3 Connector

Spark: Provides Supports for Amazon S3 Connector

Flink: Provides Supports for Amazon S3 connector

31. Deployment

Hadoop: In Standalone mode, Hadoop is configured to run in a single-node, non-distributed mode. In pseudo Distributed mode, Hadoop runs in a pseudo distributed mode. The difference is that each Hadoop daemon runs in a separate java process in pseudo-distributed mode. Whereas in local mode each Hadoop daemon runs as a single java process. In a fully-distributed mode, all daemons are executed in separate nodes forming a multi-node cluster.

Spark: In addition to running on the Mesos or YARN cluster managers, Spark also provides a simple standalone deploy mode. It can be launched either manually, by starting a master and workers by hand or use our provided launch scripts. It is also possible to run these daemons on a single machine for testing

Flink: In addition to running on YARN cluster Managers, Flink also provides standalone deploy mode.

32. Back pressure Handing

BackPressure refers to the buildup of data at an I/O switch when buffers are full and not able to receive additional data. No additional data packets are transferred until the bottleneck of data has been eliminated or the buffer has been emptied.

Hadoop: Hadoop handles back pressure through Manual Configuration.

Spark: Spark also handles back pressure through Manual Configuration.

Flink: Flink handles back pressure Implicitly through System Architecture.

33. Duplication elimination

Hadoop: There is no duplication elimination in Hadoop.

Spark: Spark also process every record exactly one time hence eliminates duplication.

Flink: Apache Flink processes every record exactly one time hence eliminates duplication. Streaming applications can maintain custom state during their computation. Flink’s checkpointing mechanism ensures exactly once semantics for the state in the presence of failures.

34. Windows criteria

A data stream needs to be grouped into multiple logical streams on each of which a window operator can be applied.

Hadoop: Hadoop doesn’t support streaming so there is no need of window criteria.

Spark: Spark has time-based window criteria.

Flink: Flink has record-based or any custom user-defined Flink Window criteria.

35. Apache License

The Apache License, Version 2.0 (ALv2) is a permissive free software license written by the Apache Software Foundation (ASF). The Apache License requires preservation of the copyright notice and disclaimer.

Hadoop: Apache License 2.

Spark: Apache License 2.

Flink: Apache License 2.

This is how the comparison is done between top 3 Big data technologies Flink vs Spark vs Hadoop.

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

mtj66

看心情

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值