Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Overview  



1.1  Batch layer  





1.2  Speed layer  





1.3  Serving layer  







2 Optimizations  





3 Lambda architecture in use  





4 Criticism and alternatives  



4.1  Kappa architecture  







5 See also  





6 References  














Lambda architecture






Català
Français

Українська
 

Edit links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


Flow of data through the processing and serving layers of a generic lambda architecture

Lambda architecture is a data-processing architecture designed to handle massive quantities of data by taking advantage of both batch and stream-processing methods. This approach to architecture attempts to balance latency, throughput, and fault-tolerance by using batch processing to provide comprehensive and accurate views of batch data, while simultaneously using real-time stream processing to provide views of online data. The two view outputs may be joined before presentation. The rise of lambda architecture is correlated with the growth of big data, real-time analytics, and the drive to mitigate the latencies of map-reduce.[1]

Lambda architecture depends on a data model with an append-only, immutable data source that serves as a system of record.[2]: 32  It is intended for ingesting and processing timestamped events that are appended to existing events rather than overwriting them. State is determined from the natural time-based ordering of the data.

Overview

[edit]

Lambda architecture describes a system consisting of three layers: batch processing, speed (or real-time) processing, and a serving layer for responding to queries.[3]: 13  The processing layers ingest from an immutable master copy of the entire data set. This paradigm was first described by Nathan Marz in a blog post titled "How to beat the CAP theorem" in which he originally termed it the "batch/realtime architecture".[4]

Batch layer

[edit]

The batch layer precomputes results using a distributed processing system that can handle very large quantities of data. The batch layer aims at perfect accuracy by being able to process all available data when generating views. This means it can fix any errors by recomputing based on the complete data set, then updating existing views. Output is typically stored in a read-only database, with updates completely replacing existing precomputed views.[3]: 18 

By 2014, Apache Hadoop was estimated to be a leading batch-processing system.[5] Later, other, relational databases like Snowflake, Redshift, Synapse and Big Query were also used in this role.

Speed layer

[edit]
Diagram showing the flow of data through the processing and serving layers of lambda architecture. Example named components are shown.

The speed layer processes data streams in real time and without the requirements of fix-ups or completeness. This layer sacrifices throughput as it aims to minimize latency by providing real-time views into the most recent data. Essentially, the speed layer is responsible for filling the "gap" caused by the batch layer's lag in providing views based on the most recent data. This layer's views may not be as accurate or complete as the ones eventually produced by the batch layer, but they are available almost immediately after data is received, and can be replaced when the batch layer's views for the same data become available.[3]: 203 

Stream-processing technologies typically used in this layer include Apache Kafka, Amazon Kinesis, Apache Storm, SQLstream, Apache Samza, Apache Spark, Azure Stream Analytics, Apache Flink. Output is typically stored on fast NoSQL databases.,[6][7] or as a commit log.[8]

Serving layer

[edit]
Diagram showing a lambda architecture with a Druid data store.

Output from the batch and speed layers are stored in the serving layer, which responds to ad-hoc queries by returning precomputed views or building views from the processed data.

Examples of technologies used in the serving layer include Apache Druid, Apache Pinot, ClickHouse and Tinybird which provide a single platform to handle output from both layers.[9] Dedicated stores used in the serving layer include Apache Cassandra, Apache HBase, Azure Cosmos DB, MongoDB, VoltDBorElasticsearch for speed-layer output, and Elephant DB, Apache Impala, SAP HANAorApache Hive for batch-layer output.[2]: 45 [6]

Optimizations

[edit]

To optimize the data set and improve query efficiency, various rollup and aggregation techniques are executed on raw data,[9]: 23  while estimation techniques are employed to further reduce computation costs.[10] And while expensive full recomputation is required for fault tolerance, incremental computation algorithms may be selectively added to increase efficiency, and techniques such as partial computation and resource-usage optimizations can effectively help lower latency.[3]: 93, 287, 293 

Lambda architecture in use

[edit]

Metamarkets, which provides analytics for companies in the programmatic advertising space, employs a version of the lambda architecture that uses Druid for storing and serving both the streamed and batch-processed data.[9]: 42 

For running analytics on its advertising data warehouse, Yahoo has taken a similar approach, also using Apache Storm, Apache Hadoop, and Druid.[11]: 9, 16 

The Netflix Suro project has separate processing paths for data, but does not strictly follow lambda architecture since the paths may be intended to serve different purposes and not necessarily to provide the same type of views.[12] Nevertheless, the overall idea is to make selected real-time event data available to queries with very low latency, while the entire data set is also processed via a batch pipeline. The latter is intended for applications that are less sensitive to latency and require a map-reduce type of processing.

Criticism and alternatives

[edit]

Criticism of lambda architecture has focused on its inherent complexity and its limiting influence. The batch and streaming sides each require a different code base that must be maintained and kept in sync so that processed data produces the same result from both paths. Yet attempting to abstract the code bases into a single framework puts many of the specialized tools in the batch and real-time ecosystems out of reach.[13]

Kappa architecture

[edit]

Jay Kreps introduced the kappa architecture to use a pure streaming approach with a single code base.[13] In a technical discussion over the merits of employing a pure streaming approach, it was noted that using a flexible streaming framework such as Apache Samza could provide some of the same benefits as batch processing without the latency.[14] Such a streaming framework could allow for collecting and processing arbitrarily large windows of data, accommodate blocking, and handle state.

See also

[edit]

References

[edit]
  1. ^ Schuster, Werner. "Nathan Marz on Storm, Immutability in the Lambda Architecture, Clojure". www.infoq.com. Interview with Nathan Marz, 6 April 2014
  • ^ a b Bijnens, Nathan. "A real-time architecture using Hadoop and Storm". 11 December 2013.
  • ^ a b c d Marz, Nathan; Warren, James. Big Data: Principles and best practices of scalable realtime data systems. Manning Publications, 2013.
  • ^ Marz, Nathan. "How to beat the CAP theorem". 13 October 2011.
  • ^ Kar, Saroj. "Hadoop Sector will Have Annual Growth of 58% for 2013-2020" Archived 2014-08-26 at archive.today, 28 May 2014. Cloud Times.
  • ^ a b Kinley, James. "The Lambda architecture: principles for architecting realtime Big Data systems" Archived 2014-09-04 at the Wayback Machine, retrieved 26 August 2014.
  • ^ Ferrera Bertran, Pere. "Lambda Architecture: A state-of-the-art". 17 January 2014, Datasalt.
  • ^ Confluent."Kafka and Events – Key/Value Pairs", retrieved 06 October 2022.
  • ^ a b c Yang, Fangjin, and Merlino, Gian. "Real-time Analytics with Open Source Technologies". 30 July 2014.
  • ^ Ray, Nelson. "The Art of Approximating Distributions: Histograms and Quantiles at Scale". 12 September 2013. Metamarkets.
  • ^ Rao, Supreeth; Gupta, Sunil. "Interactive Analytics in Human Time". 17 June 2014
  • ^ Bae, Jae Hyeon; Yuan, Danny; Tonse, Sudhir. "Announcing Suro: Backbone of Netflix's Data Pipeline", Netflix, 9 December 2013
  • ^ a b Kreps, Jay. "Questioning the Lambda Architecture". radar.oreilly.com. Oreilly. Retrieved 15 August 2014.
  • ^ Hacker News retrieved 20 August 2014

  • Retrieved from "https://en.wikipedia.org/w/index.php?title=Lambda_architecture&oldid=1234013022"

    Categories: 
    Data processing
    Big data
    Data management
    Free software projects
    Software architecture
    Hidden categories: 
    Webarchive template archiveis links
    Webarchive template wayback links
    Articles with short description
    Short description matches Wikidata
     



    This page was last edited on 12 July 2024, at 03:32 (UTC).

    Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



    Privacy policy

    About Wikipedia

    Disclaimers

    Contact Wikipedia

    Code of Conduct

    Developers

    Statistics

    Cookie statement

    Mobile view



    Wikimedia Foundation
    Powered by MediaWiki