LinkedIn Data Infrastructure (QCon London 2012)

Sid Anand
Sid AnandChief Data Engineer at PayPal
Data Infrastructure @ LinkedIn
Sid Anand
QCon London 2012

@r39132




                                 1
About Me
Current Life…
  LinkedIn                        *

      Web / Software Engineering
           Search, Network, and Analytics (SNA)
               Distributed Data Systems (DDS)
                   Me

In a Previous Life…
  Netflix, Cloud Database Architect
  eBay, Web Development, Research Lab, & Search
    Engine                                              ***




And Many Years Prior…
  Studying Distributed Systems at Cornell University


                                       @r39132                2
Our mission
Connect the world’s professionals to make
  them more productive and successful




                  @r39132                   3
The world’s largest professional network
Over 60% of members are now international



                                                                    75%
                                                                                     **

                                     150M+          *



                                             90                     Fortune 100 Companies
                                                                    use LinkedIn to hire



                                                                    >2M
                                                                                      ***




                                                                    Company Pages
                                      55




                               32
                                                                    16
                                                                    Languages



                                                                  ~4.2B
                        17                                                                   ***

                  8
  2      4
                                                                  Professional searches in 2011
 2004   2005    2006   2007   2008   2009    2010                                    *as of February 9, 2012
                                                                                 **as of September 30, 2011
               LinkedIn Members (Millions)                                       ***as of December 31, 2011




                                                        @r39132                                          4
Other Company Facts

•  Headquartered in Mountain View, Calif., with offices around the world!
                                *




•  As of December 31, 2011, LinkedIn has 2,116 full-time employees located
   around the world.

    •  Currently around 650 people work in Engineering
        •  400 in Web/Software Engineering
            •  Plan to add another 200 in 2012                               ***

        •  250 in Operations



                                                                     *as of February 9, 2012
                                                                 **as of September 30, 2011
                                                                 ***as of December 31, 2011




                                    @r39132                                              5
Agenda

  Company Overview
  Architecture
   –  Data Infrastructure Overview
   –  Technology Spotlight
           Oracle
           Voldemort
           DataBus
           Kafka
  Q & A




                                @r39132   6
LinkedIn : Architecture	


Overview

•  Our site runs primarily on Java, with some use of Scala for specific
   infrastructure

•  What runs on Scala?
   •  Network Graph Service
   •  Kafka

•  Most of our services run on Apache + Jetty




                                 @r39132                             7
LinkedIn : Architecture	


                                                                                     A web page requests
                                                                                      information A and B



                                                             Presentation Tier       A thin layer focused on
                                                                                      building the UI. It assembles
                                                                                      the page by making parallel
                                                                                      requests to BST services


      A    A          B         B         C        C         Business Service Tier   Encapsulates business
                                                                                      logic. Can call other BST
                                                                                      clusters and its own DST
                                                                                      cluster.
      A    A          B         B         C        C         Data Service Tier       Encapsulates DAL logic and
                                                                                      concerned with one Oracle
                                                                                      Schema.

                                                             Data Infrastructure     Concerned with the
 Master   Slave               Master           Master
                                                                                      persistent storage of and
                                                                                      easy access to data
                                       Memcached
                  Voldemort



                                                   @r39132                                                  8
LinkedIn : Architecture	


                                                                                     A web page requests
                                                                                      information A and B



                                                             Presentation Tier       A thin layer focused on
                                                                                      building the UI. It assembles
                                                                                      the page by making parallel
                                                                                      requests to BST services


      A    A          B         B         C        C         Business Service Tier   Encapsulates business
                                                                                      logic. Can call other BST
                                                                                      clusters and its own DST
                                                                                      cluster.
      A    A          B         B         C        C         Data Service Tier       Encapsulates DAL logic and
                                                                                      concerned with one Oracle
                                                                                      Schema.

                                                             Data Infrastructure     Concerned with the
 Master   Slave               Master           Master
                                                                                      persistent storage of and
                                                                                      easy access to data
                                       Memcached
                  Voldemort



                                                   @r39132                                                  9
LinkedIn : Data Infrastructure Technologies	

•    Database Technologies
      •  Oracle
      •  Voldemort                    *

      •  Espresso

•    Data Replication Technologies
      •  Kafka
      •  DataBus

•    Search Technologies
      •  Zoie – real-time search and indexing with Lucene
      •  Bobo – faceted search library for Lucene                              ***

      •  SenseiDB – fast, real-time, faceted, KV and full-text Search Engine and more




                                          @r39132                                10
LinkedIn : Data Infrastructure Technologies	

This talk will focus on a few of the key technologies below!

•    Database Technologies           *
      •  Oracle
      •  Voldemort
      •  Espresso – A new K-V store under development

•    Data Replication Technologies
      •  Kafka
      •  DataBus

•    Search Technologies                                                       ***

      •  Zoie – real-time search and indexing with Lucene
      •  Bobo – faceted search library for Lucene
      •  SenseiDB – fast, real-time, faceted, KV and full-text Search Engine and more




                                         @r39132                                  11
LinkedIn Data Infrastructure Technologies

Oracle: Source of Truth for User-Provided Data




                              @r39132            12
Oracle : Overview	

Oracle
•  All user-provided data is stored in Oracle – our current source of truth
•  About 50 Schemas running on tens of physical instances
                                       *

•  With our user base and traffic growing at an accelerating pace, so how do we
   scale Oracle for user-provided data?

Scaling Reads
•  Oracle Slaves (c.f. DSC)
•  Memcached
•  Voldemort – for key-value lookups

                                                                            ***


Scaling Writes
•  Move to more expensive hardware or replace Oracle with something else




                                       @r39132                                    13
Oracle : Overview – Data Service Context	

 Scaling Oracle Reads using DSC



   DSC uses a token (e.g. cookie) to ensure that a reader always
    sees his or her own writes immediately

     –  If I update my own status, it is okay if you don’t see the
        change for a few minutes, but I have to see it immediately




                                @r39132                              14
Oracle : Overview – How DSC Works?	

    When a user writes data to the master, the DSC token (for that
     data domain) is updated with a timestamp

    When the user reads data, we first attempt to read from a
     replica (a.k.a. slave) database

    If the data in the slave is older than the data in the DSC token,
     we read from the Master instead




                                 @r39132                             15
LinkedIn Data Infrastructure Technologies
Voldemort: Highly-Available Distributed Data Store




                              @r39132                16
Voldemort : Overview	

•    A distributed, persistent key-value store influenced by the AWS Dynamo paper

•    Key Features of Dynamo
        Highly Scalable, Available, and Performant
        Achieves this via Tunable Consistency
          •  For higher consistency, the user accepts lower availability, scalability, and
              performance, and vice-versa

        Provides several self-healing mechanisms when data does become inconsistent
          •  Read Repair
                 Repairs value for a key when the key is looked up/read
          •  Hinted Handoff
                 Buffers value for a key that wasn’t successfully written, then writes it later
          •  Anti-Entropy Repair
                 Scans the entire data set on a node and fixes it

        Provides means to detect node failure and a means to recover from node failure
          •  Failure Detection
          •  Bootstrapping New Nodes

                                                @r39132                                            17
Voldemort : Overview	

                        API                                    Layered, Pluggable Architecture
     VectorClock<V> get (K key)
                                                                             Client
     put (K key, VectorClock<V> value)
     applyUpdate(UpdateAction action, int retries)                         Client API
                                                                      Conflict Resolution
Voldemort-specific Features                                               Serialization
  Implements a layered, pluggable                                     Repair Mechanism
   architecture
                                                                        Failure Detector
                                                                            Routing
  Each layer implements a common interface
   (c.f. API). This allows us to replace or
   remove implementations at any layer                                       Server

                                                                  Repair Mechanism
    •  Pluggable data storage layer                                Failure Detector         Admin
           BDB JE, Custom RO storage,
                                                                       Routing
            etc…
                                                                         Storage Engine

    •  Pluggable routing supports
           Single or Multi-datacenter routing



                                                     @r39132                                  18
Voldemort : Overview	

                                                 Layered, Pluggable Architecture
                                                               Client
Voldemort-specific Features
                                                             Client API
                                                        Conflict Resolution
•  Supports Fat client or Fat Server                        Serialization
                                                         Repair Mechanism
    •  Repair Mechanism + Failure                         Failure Detector

       Detector + Routing can run on                          Routing

       server or client
                                                               Server


•  LinkedIn currently runs Fat Client, but we       Repair Mechanism
   would like to move this to a Fat Server           Failure Detector         Admin
   Model                                                 Routing
                                                           Storage Engine




                                       @r39132                                  19
Where Does LinkedIn use
      Voldemort?




          @r39132         20
Voldemort : Usage Patterns @ LinkedIn	



 2 Usage-Patterns

   Read-Write Store
     –  Uses BDB JE for the storage engine
     –  50% of Voldemort Stores (aka Tables) are RW


   Read-only Store
     –  Uses a custom Read-only format
     –  50% of Voldemort Stores (aka Tables) are RO


   Let’s look at the RO Store


                                 @r39132              21
Voldemort : RO Store Usage at LinkedIn	

     People You May Know	

     Viewers of this profile also viewed	

   Related Searches	





Events you may be interested in	

          LinkedIn Skills	

          Jobs you may be
                                                                          interested in	





                                               @r39132                                       22
Voldemort : Usage Patterns @ LinkedIn	

RO Store Usage Pattern
1.    Use Hadoop to build a model

2.    Voldemort loads the output of Hadoop

3.    Voldemort serves fast key-value look-ups on the site
      –    e.g. For key=“Sid Anand”, get all the people that “Sid Anand” may know!
      –    e.g. For key=“Sid Anand”, get all the jobs that “Sid Anand” may be interested in!




                                               @r39132                                         23
How Do The Voldemort RO
     Stores Perform?




          @r39132         24
Voldemort : RO Store Performance : TP vs. Latency	


                                                             ●       MySQL ● Voldemort
                                                   ●   MySQL ● Voldemort ● Voldemort
                                                                      ●   MySQL
                                                       median MySQL ● Voldemort 99th percentile
                                                               ●

                                           median            median          ●     99th percentile ●percentile
                                                                                                     99th
                                                       median                                  99th percentile
                                   3.5                           ●          ●    ●
                                                                                250          ●                ●
                                                             ●              ●                            ●
                     3.5                3.5                     ●
                                                                     250 ●      ●                       ●
                                  3.5
                                   3.0          ●                                   250 ●       ●
                                                                                                   ● ●
                                                            ●
                                                                   ●           250     ●
                                                                                           ●               ●
                     3.0                                                      ● 200 ● ●             ● ●
                                                                                                       ● ●
                                        3.0                                ●       ●       ●
                                                                                               ●
                                                                                                  ● ●
                                  3.0                                                    ●
                                latency (ms)


                                   2.5                            ●
                                                                     200
                                                                        ●            ●         ●
                                                           ●                        200
                                                                               200
      latency (ms)




                     2.5
                             latency (ms)


                                        2.5         ●    ●             ●   ●
                            latency (ms)




                                  2.5
                                   2.0        ●
                                                   ●
                                                      ● ●       ●
                                                                 ●
                                                                       ●        150
                                                          ●
                     2.0                2.0● ●
                                         ●●               ● ●        150            150
                                  2.0 ●
                                   1.5            ●
                                                       ●
                                                     ● ●                       150                                  ●
                                                                                                                     ●
                            ●   ●              ● ● ●                            100
                                         ●● ●                                                                    ●
                     1.5                1.5
                                         ●      ●
                                                                                                            ●
                                                                                                           ●●            ●
                                                                                                                          ●
                                  1.5
                                   1.0               ●
                                                          ●          100            100                            ●
                                                                                                                    ●
                            ●
                                   ●
                                               ●
                                                     ●
                                                                               100                    ●●           ●
                     1.0                 ●
                                        1.0 ●                                    50 ● ● ● ● ●              ●
                                                                                                                ●
                                                                                                                ●
                                  1.0
                                   0.5                                               ●                 ●
                                                                                                       ●
                                                                                                           ●
                                                                       50 ●     ●    50 ●  ●      ●
                                                                                                  ●
                     0.5                0.5                                     50 ●
                                  0.5
                                   0.0                                             0
                     0.0           0.0                   0           0
                               0.0 100 200 300 400 500 600 700 0 100 200 300 400 500 600 700
                           100 200 300 400 500 600 700 throughput 300 400 500 600 700 500 600 700
                                                           100 200
                                       100 200 300 400 500 600 700 (qps) 200 300 400
                                                                       100
                                   100 200 300 400 500 600 700     100 200 300 400 500 600 700
                                                     throughput (qps) (qps)
                                                                throughput (qps)
                                                            throughput

                                                       100 GB data, 24 GB RAM 	


                                                                    @r39132                                                   25
LinkedIn Data Infrastructure Solutions
Databus : Timeline-Consistent Change Data Capture




                               @r39132              26
Where Does LinkedIn use
       DataBus?




          @r39132         27
DataBus : Use-Cases @ LinkedIn	




                  Updates
                                   Standard      Search       Graph        Read
                                    ization       Index       Index       Replicas




                Oracle
                                              Data Change Events



A user updates his profile with skills and position history. He also accepts a connection

•    The write is made to an Oracle Master and DataBus replicates:
•    the profile change to the Standardization service
         E.G. the many forms of IBM are canonicalized for search-friendliness and
          recommendation-friendliness
•    the profile change to the Search Index service
         Recruiters can find you immediately by new keywords
•    the connection change to the Graph Index service
         The user can now start receiving feed updates from his new connections immediately


                                              @r39132                                     28
DataBus : Architecture	

                                            DataBus consists of 2 services
        Capture          Relay              •  Relay Services
   DB   Changes
                      Event Win                 •  Sharded
                                                •  Maintain an in-memory buffer per
                     On-line                       shard
                    Changes
                                                •  Each shard polls Oracle and then
                                                   deserializes transactions into Avro
                     Bootstrap
                                            •  Bootstrap Service
                          DB                    •  Picks up online changes as they
                                                   appear in the Relay
                                                •  Supports 2 types of operations
                                                   from clients
                                                       If a client falls behind and
                                                        needs records older than what
                                                        the relay has, Bootstrap can
                                                        send consolidated deltas!
                                                       If a new client comes on line,
                                                        Bootstrap can send a
                                                        consistent snapshot


                                  @r39132                                        29
DataBus : Architecture	


                                                                   Client
        Capture          Relay                                     Consumer 1




                                                      Client Lib
                                            On-line




                                                      Databus
   DB   Changes                             Changes
                      Event Win                                    Consumer n
                     On-line
                                               ated
                    Changes              solid
                                     Con         eT
                                            Sinc
                                      Delta                        Client
                     Bootstrap
                                                                   Consumer 1




                                                      Client Lib
                                      Consistent




                                                      Databus
                                     Snapshot at U                 Consumer n
                          DB

                                     Guarantees
                                       Transactional semantics
                                       In-commit-order Delivery
                                       At-least-once delivery
                                       Durability (by data source)
                                       High-availability and reliability
                                       Low latency
                                  @r39132                                       30
DataBus : Architecture - Bootstrap	

    Generate consistent snapshots and consolidated deltas
     during continuous updates with long-running queries

                                                                     Client
                              Read
                                                                      Consumer 1




                                                        Client Lib
                                                        Databus
                              Online
            Relay             Changes
                                                                      Consumer n
          Event Win

                 Read
                 Changes     Bootstrap server                        Bootstrap

                                            Read
           Log Writer                                                Server
                                        recent events

                           Replay
          Log Storage      events                       Snapshot Storage

                               Log Applier


                                    @r39132                                        31
LinkedIn Data Infrastructure Solutions
Kafka: High-Volume Low-Latency Messaging System




                               @r39132            32
Kafka : Usage at LinkedIn	

Where as DataBus is used for Database change capture and
replication, Kafka is used for application-level data streams

Examples:
•  End-user Action Tracking (a.k.a. Web Tracking) of
    •  Emails opened
    •  Pages seen
    •  Links followed
    •  Executing Searches

•    Operational Metrics
     •  Network & System metrics such as
         •  TCP metrics (connection resets, message resends, etc…)
         •  System metrics (iops, CPU, load average, etc…)

                                 @r39132                         33
Kafka : Overview	

                                   Broker Tier
     WebTier                                                                          Consumers

            Push           Sequential write            sendfile         Pull
            Events                                                      Events                   Iterator 1




                                                                                    Client Lib
                                        Topic 1




                                                                                     Kafka
           100 MB/sec                                               200 MB/sec
                                        Topic 2
                                                                                                 Iterator n
                                        Topic N

                                                                                                 Topic  Offset


                                              Topic, Partition                        Offset
                                              Ownership
                                                                  Zookeeper           Management



Features                           Guarantees                      Scale
     Pub/Sub                          At least once delivery          Billions of Events
     Batch Send/Receive               Very high throughput            TBs per day
     System Decoupling                Low latency                     Inter-colo: few seconds
                                       Durability                      Typical retention: weeks
                                       Horizontally Scalable

                                                      @r39132                                                 34
Kafka : Overview	

Key Design Choices

•  When reading from a file and sending to network socket, we typically incur 4 buffer copies and
   2 OS system calls
       Kafka leverages a sendFile API to eliminate 2 of the buffer copies and 1 of the system
        calls

•  No double-buffering of messages - we rely on the OS page cache and do not store a copy of
   the message in the JVM
       Less pressure on memory and GC

       If the Kafka process is restarted on a machine, recently accessed messages are still in
        the page cache, so we get the benefit of a warm start

•  Kafka doesn't keep track of which messages have yet to be consumed -- i.e. no book keeping
   overhead
       Instead, messages have time-based SLA expiration -- after 7 days, messages are deleted




                                              @r39132                                        35
How Does Kafka Perform?




          @r39132         36
Kafka : Performance : Throughput vs. Latency	



                                     (100 topics, 1 producer, 1 broker)
                           250

                           200
  Consumer latency in ms




                           150

                           100

                            50

                             0
                                 0   20          40          60           80   100

                                          Producer throughput in MB/sec

                                                   @r39132                       37
Kafka : Performance : Linear Incremental Scalability	




                                    (10 topics, broker flush interval 100K)
                          400
                                                                                   381
                          350

                          300
     Throughput in MB/s




                                                                 293
                          250

                          200                      190
                          150

                          100        101

                           50

                            0
                                1 broker     2 brokers      3 brokers         4 brokers

                                                 @r39132                                  38
Kafka : Performance : Resilience as Messages Pile Up 	



                                                (1	
  topic,	
  broker	
  flush	
  interval	
  10K)	
  
                                       200000

                                       160000
       Throughput	
  in	
  msg/s	
  




                                       120000

                                       80000

                                       40000

                                           0
                                                 10
                                                      105
                                                            199
                                                                  294
                                                                        388
                                                                              473
                                                                                    567
                                                                                          662
                                                                                                756
                                                                                                      851
                                                                                                            945
                                                                                                                  1039
                                                            Unconsumed data in GB

                                                                         @r39132                                         39
Acknowledgments	

 Presentation & Content
   Chavdar Botev (DataBus)       @cbotev
   Roshan Sumbaly (Voldemort)    @rsumbaly
   Neha Narkhede (Kafka)         @nehanarkhede



 Development Team
     Aditya Auradkar, Chavdar Botev, Shirshanka Das, Dave DeMaagd, Alex
     Feinberg, Phanindra Ganti, Lei Gao, Bhaskar Ghosh, Kishore
     Gopalakrishna, Brendan Harris, Joel Koshy, Kevin Krawez, Jay Kreps, Shi
     Lu, Sunil Nagaraj, Neha Narkhede, Sasha Pachev, Igor Perisic, Lin Qiao,
     Tom Quiggle, Jun Rao, Bob Schulman, Abraham Sebastian, Oliver Seeliger,
     Adam Silberstein, Boris Skolnick, Chinmay Soman, Roshan Sumbaly, Kapil
     Surlaker, Sajid Topiwala, Balaji Varadarajan, Jemiah Westerman, Zach
     White, David Zhang, and Jason Zhang




                                   @r39132                                40
y Questions?




   @r39132     41
1 of 41

Recommended

LinkedIn Data Infrastructure Slides (Version 2) by
LinkedIn Data Infrastructure Slides (Version 2)LinkedIn Data Infrastructure Slides (Version 2)
LinkedIn Data Infrastructure Slides (Version 2)Sid Anand
4.7K views43 slides
LinkedIn - A Professional Network built with Java Technologies and Agile Prac... by
LinkedIn - A Professional Network built with Java Technologies and Agile Prac...LinkedIn - A Professional Network built with Java Technologies and Agile Prac...
LinkedIn - A Professional Network built with Java Technologies and Agile Prac...LinkedIn
67.8K views25 slides
Introduction to Microservices by
Introduction to MicroservicesIntroduction to Microservices
Introduction to MicroservicesAmazon Web Services
66.9K views124 slides
Oracle business intelligence overview by
Oracle business intelligence overviewOracle business intelligence overview
Oracle business intelligence overviewnvvrajesh
22.7K views30 slides
Overview power apps and microsoft flow by
Overview power apps and microsoft flowOverview power apps and microsoft flow
Overview power apps and microsoft flowJuan Fabian
863 views25 slides
Asp Net Advance Topics by
Asp Net Advance TopicsAsp Net Advance Topics
Asp Net Advance TopicsAli Taki
7.1K views20 slides

More Related Content

What's hot

The People's Innovation Platform - Microsoft Power Platform by
    The People's Innovation Platform - Microsoft Power Platform    The People's Innovation Platform - Microsoft Power Platform
The People's Innovation Platform - Microsoft Power PlatformKorcomptenz Inc
649 views24 slides
Facebook architecture by
Facebook architectureFacebook architecture
Facebook architecturemysqlops
10.1K views34 slides
Developing applications with a microservice architecture (SVforum, microservi... by
Developing applications with a microservice architecture (SVforum, microservi...Developing applications with a microservice architecture (SVforum, microservi...
Developing applications with a microservice architecture (SVforum, microservi...Chris Richardson
168.7K views97 slides
Power bi premium by
Power bi premiumPower bi premium
Power bi premiumIke Ellis
1.4K views32 slides
Power BI Overview by
Power BI OverviewPower BI Overview
Power BI OverviewJames Serra
78.2K views93 slides
Full stack web development by
Full stack web developmentFull stack web development
Full stack web developmentCrampete
2.5K views12 slides

What's hot(20)

The People's Innovation Platform - Microsoft Power Platform by Korcomptenz Inc
    The People's Innovation Platform - Microsoft Power Platform    The People's Innovation Platform - Microsoft Power Platform
The People's Innovation Platform - Microsoft Power Platform
Korcomptenz Inc649 views
Facebook architecture by mysqlops
Facebook architectureFacebook architecture
Facebook architecture
mysqlops 10.1K views
Developing applications with a microservice architecture (SVforum, microservi... by Chris Richardson
Developing applications with a microservice architecture (SVforum, microservi...Developing applications with a microservice architecture (SVforum, microservi...
Developing applications with a microservice architecture (SVforum, microservi...
Chris Richardson168.7K views
Power bi premium by Ike Ellis
Power bi premiumPower bi premium
Power bi premium
Ike Ellis1.4K views
Power BI Overview by James Serra
Power BI OverviewPower BI Overview
Power BI Overview
James Serra78.2K views
Full stack web development by Crampete
Full stack web developmentFull stack web development
Full stack web development
Crampete2.5K views
Power BI - Row Level Security by JAZ Rathor
Power BI - Row Level SecurityPower BI - Row Level Security
Power BI - Row Level Security
JAZ Rathor1.3K views
End to-end monitoring for a successful Power BI implementation by Marc Lelijveld
End to-end monitoring for a successful Power BI implementationEnd to-end monitoring for a successful Power BI implementation
End to-end monitoring for a successful Power BI implementation
Marc Lelijveld580 views
API Management Solution Powerpoint Presentation Slides by SlideTeam
API Management Solution Powerpoint Presentation SlidesAPI Management Solution Powerpoint Presentation Slides
API Management Solution Powerpoint Presentation Slides
SlideTeam1.1K views
Introduction to Microsoft Power BI by Exilesoft
Introduction to Microsoft Power BIIntroduction to Microsoft Power BI
Introduction to Microsoft Power BI
Exilesoft6.4K views
2019 02-20 micro-segmentation based network security strategies (yoni geva) by AlgoSec
2019 02-20 micro-segmentation based network security strategies (yoni geva)2019 02-20 micro-segmentation based network security strategies (yoni geva)
2019 02-20 micro-segmentation based network security strategies (yoni geva)
AlgoSec2.4K views
Power bi by jainema23
Power biPower bi
Power bi
jainema236.1K views
Online Student Feedback System by EditorIJAERD
Online Student Feedback SystemOnline Student Feedback System
Online Student Feedback System
EditorIJAERD955 views
Introduction to power apps by RezaDorrani1
Introduction to power appsIntroduction to power apps
Introduction to power apps
RezaDorrani111.7K views
Establishing and analyzing traceability between artifacts by IBM Rational software
Establishing and analyzing traceability between artifactsEstablishing and analyzing traceability between artifacts
Establishing and analyzing traceability between artifacts

Viewers also liked

Databus - LinkedIn's Change Data Capture Pipeline by
Databus - LinkedIn's Change Data Capture PipelineDatabus - LinkedIn's Change Data Capture Pipeline
Databus - LinkedIn's Change Data Capture PipelineSunil Nagaraj
10.5K views43 slides
Redis: Lua scripts - a primer and use cases by
Redis: Lua scripts - a primer and use casesRedis: Lua scripts - a primer and use cases
Redis: Lua scripts - a primer and use casesRedis Labs
4.6K views20 slides
Scala Parallel Collections by
Scala Parallel CollectionsScala Parallel Collections
Scala Parallel CollectionsAleksandar Prokopec
2.4K views140 slides
Shopzilla - Performance By Design by
Shopzilla - Performance By DesignShopzilla - Performance By Design
Shopzilla - Performance By DesignTim Morrow
11.6K views56 slides
Let's Go (golang) by
Let's Go (golang)Let's Go (golang)
Let's Go (golang)상욱 송
13.2K views117 slides
ScalaBlitz by
ScalaBlitzScalaBlitz
ScalaBlitzAleksandar Prokopec
2.3K views100 slides

Viewers also liked(12)

Databus - LinkedIn's Change Data Capture Pipeline by Sunil Nagaraj
Databus - LinkedIn's Change Data Capture PipelineDatabus - LinkedIn's Change Data Capture Pipeline
Databus - LinkedIn's Change Data Capture Pipeline
Sunil Nagaraj10.5K views
Redis: Lua scripts - a primer and use cases by Redis Labs
Redis: Lua scripts - a primer and use casesRedis: Lua scripts - a primer and use cases
Redis: Lua scripts - a primer and use cases
Redis Labs4.6K views
Shopzilla - Performance By Design by Tim Morrow
Shopzilla - Performance By DesignShopzilla - Performance By Design
Shopzilla - Performance By Design
Tim Morrow11.6K views
Let's Go (golang) by 상욱 송
Let's Go (golang)Let's Go (golang)
Let's Go (golang)
상욱 송13.2K views
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul. by Rahul Krishna Upadhyaya
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.
Hancom MDS Conference - KAKAO DEVOPS Practice (카카오 스토리의 Devops 사례) by knight1128
Hancom MDS Conference - KAKAO DEVOPS Practice (카카오 스토리의 Devops 사례)Hancom MDS Conference - KAKAO DEVOPS Practice (카카오 스토리의 Devops 사례)
Hancom MDS Conference - KAKAO DEVOPS Practice (카카오 스토리의 Devops 사례)
knight11282.3K views
Scalability, Availability & Stability Patterns by Jonas Bonér
Scalability, Availability & Stability PatternsScalability, Availability & Stability Patterns
Scalability, Availability & Stability Patterns
Jonas Bonér515.8K views
facebook architecture for 600M users by Jongyoon Choi
facebook architecture for 600M usersfacebook architecture for 600M users
facebook architecture for 600M users
Jongyoon Choi72K views
Big Data in Real-Time at Twitter by nkallen
Big Data in Real-Time at TwitterBig Data in Real-Time at Twitter
Big Data in Real-Time at Twitter
nkallen139.3K views

Similar to LinkedIn Data Infrastructure (QCon London 2012)

Document Classification using DMX in SQL Server Analysis Services by
Document Classification using DMX in SQL Server Analysis ServicesDocument Classification using DMX in SQL Server Analysis Services
Document Classification using DMX in SQL Server Analysis ServicesMark Tabladillo
1.7K views25 slides
Introduction inbox v2.0 by
Introduction inbox v2.0Introduction inbox v2.0
Introduction inbox v2.0Ashutosh Mundra
471 views25 slides
Netflix in the cloud 2011 by
Netflix in the cloud 2011Netflix in the cloud 2011
Netflix in the cloud 2011Adrian Cockcroft
6.2K views52 slides
Migrating Netflix from Datacenter Oracle to Global Cassandra by
Migrating Netflix from Datacenter Oracle to Global CassandraMigrating Netflix from Datacenter Oracle to Global Cassandra
Migrating Netflix from Datacenter Oracle to Global CassandraAdrian Cockcroft
126.4K views52 slides
Sap business objects BI4.0 reporting presentation by
Sap business objects BI4.0 reporting presentationSap business objects BI4.0 reporting presentation
Sap business objects BI4.0 reporting presentationshaktell2
3K views8 slides
10g forms by
10g forms10g forms
10g formsMansoor Abd Algadir
12.4K views375 slides

Similar to LinkedIn Data Infrastructure (QCon London 2012)(20)

Document Classification using DMX in SQL Server Analysis Services by Mark Tabladillo
Document Classification using DMX in SQL Server Analysis ServicesDocument Classification using DMX in SQL Server Analysis Services
Document Classification using DMX in SQL Server Analysis Services
Mark Tabladillo1.7K views
Migrating Netflix from Datacenter Oracle to Global Cassandra by Adrian Cockcroft
Migrating Netflix from Datacenter Oracle to Global CassandraMigrating Netflix from Datacenter Oracle to Global Cassandra
Migrating Netflix from Datacenter Oracle to Global Cassandra
Adrian Cockcroft126.4K views
Sap business objects BI4.0 reporting presentation by shaktell2
Sap business objects BI4.0 reporting presentationSap business objects BI4.0 reporting presentation
Sap business objects BI4.0 reporting presentation
shaktell23K views
(.Net Portfolio) Td Rodda by tdrodda
(.Net Portfolio) Td Rodda(.Net Portfolio) Td Rodda
(.Net Portfolio) Td Rodda
tdrodda392 views
Keat Resume 2012b by mkeating1
Keat Resume 2012bKeat Resume 2012b
Keat Resume 2012b
mkeating1526 views
IBM THINK 2019 - A Sharing Economy for Analytics: SQL Query in IBM Cloud by Torsten Steinbach
IBM THINK 2019 - A Sharing Economy for Analytics: SQL Query in IBM CloudIBM THINK 2019 - A Sharing Economy for Analytics: SQL Query in IBM Cloud
IBM THINK 2019 - A Sharing Economy for Analytics: SQL Query in IBM Cloud
Torsten Steinbach177 views
AWS Customer Presentation: Freie Univerisitat - Berlin Summit 2012 by Amazon Web Services
AWS Customer Presentation: Freie Univerisitat - Berlin Summit 2012AWS Customer Presentation: Freie Univerisitat - Berlin Summit 2012
AWS Customer Presentation: Freie Univerisitat - Berlin Summit 2012
Amazon Web Services3.5K views
AWS Summit Berlin 2012 Talk on Web Data Commons by Hannes Mühleisen
AWS Summit Berlin 2012 Talk on Web Data CommonsAWS Summit Berlin 2012 Talk on Web Data Commons
AWS Summit Berlin 2012 Talk on Web Data Commons
Hannes Mühleisen10.8K views
The Perfect Storm: The Impact of Analytics, Big Data and Analytics by Inside Analysis
The Perfect Storm: The Impact of Analytics, Big Data and AnalyticsThe Perfect Storm: The Impact of Analytics, Big Data and Analytics
The Perfect Storm: The Impact of Analytics, Big Data and Analytics
Inside Analysis570 views
Leveraging PowerPivot by Dan English
Leveraging PowerPivotLeveraging PowerPivot
Leveraging PowerPivot
Dan English6K views
An overview of Microsoft data mining technology by Mark Tabladillo
An overview of Microsoft data mining technologyAn overview of Microsoft data mining technology
An overview of Microsoft data mining technology
Mark Tabladillo668 views
Secrets of Enterprise Data Mining by Mark Tabladillo
Secrets of Enterprise Data Mining Secrets of Enterprise Data Mining
Secrets of Enterprise Data Mining
Mark Tabladillo401 views
Domino app dev competitive advantage final by John Head
Domino app dev competitive advantage finalDomino app dev competitive advantage final
Domino app dev competitive advantage final
John Head1.5K views
Agile NoSQL With XRX by DATAVERSITY
Agile NoSQL With XRXAgile NoSQL With XRX
Agile NoSQL With XRX
DATAVERSITY3.5K views
Transitioning a Full Enterprise to Cloud in 10 Months - Cloud Expo by sjdeluca
Transitioning a Full Enterprise to Cloud in 10 Months - Cloud ExpoTransitioning a Full Enterprise to Cloud in 10 Months - Cloud Expo
Transitioning a Full Enterprise to Cloud in 10 Months - Cloud Expo
sjdeluca492 views
Netflix Velocity Conference 2011 by Adrian Cockcroft
Netflix Velocity Conference 2011Netflix Velocity Conference 2011
Netflix Velocity Conference 2011
Adrian Cockcroft53.2K views

More from Sid Anand

Building High Fidelity Data Streams (QCon London 2023) by
Building High Fidelity Data Streams (QCon London 2023)Building High Fidelity Data Streams (QCon London 2023)
Building High Fidelity Data Streams (QCon London 2023)Sid Anand
16 views183 slides
Building & Operating High-Fidelity Data Streams - QCon Plus 2021 by
Building & Operating High-Fidelity Data Streams - QCon Plus 2021Building & Operating High-Fidelity Data Streams - QCon Plus 2021
Building & Operating High-Fidelity Data Streams - QCon Plus 2021Sid Anand
129 views131 slides
Low Latency Fraud Detection & Prevention by
Low Latency Fraud Detection & PreventionLow Latency Fraud Detection & Prevention
Low Latency Fraud Detection & PreventionSid Anand
154 views60 slides
YOW! Data Keynote (2021) by
YOW! Data Keynote (2021)YOW! Data Keynote (2021)
YOW! Data Keynote (2021)Sid Anand
287 views149 slides
Big Data, Fast Data @ PayPal (YOW 2018) by
Big Data, Fast Data @ PayPal (YOW 2018)Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)Sid Anand
3.1K views100 slides
Building Better Data Pipelines using Apache Airflow by
Building Better Data Pipelines using Apache AirflowBuilding Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache AirflowSid Anand
4.2K views35 slides

More from Sid Anand(20)

Building High Fidelity Data Streams (QCon London 2023) by Sid Anand
Building High Fidelity Data Streams (QCon London 2023)Building High Fidelity Data Streams (QCon London 2023)
Building High Fidelity Data Streams (QCon London 2023)
Sid Anand16 views
Building & Operating High-Fidelity Data Streams - QCon Plus 2021 by Sid Anand
Building & Operating High-Fidelity Data Streams - QCon Plus 2021Building & Operating High-Fidelity Data Streams - QCon Plus 2021
Building & Operating High-Fidelity Data Streams - QCon Plus 2021
Sid Anand129 views
Low Latency Fraud Detection & Prevention by Sid Anand
Low Latency Fraud Detection & PreventionLow Latency Fraud Detection & Prevention
Low Latency Fraud Detection & Prevention
Sid Anand154 views
YOW! Data Keynote (2021) by Sid Anand
YOW! Data Keynote (2021)YOW! Data Keynote (2021)
YOW! Data Keynote (2021)
Sid Anand287 views
Big Data, Fast Data @ PayPal (YOW 2018) by Sid Anand
Big Data, Fast Data @ PayPal (YOW 2018)Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)
Sid Anand3.1K views
Building Better Data Pipelines using Apache Airflow by Sid Anand
Building Better Data Pipelines using Apache AirflowBuilding Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache Airflow
Sid Anand4.2K views
Cloud Native Predictive Data Pipelines (micro talk) by Sid Anand
Cloud Native Predictive Data Pipelines (micro talk)Cloud Native Predictive Data Pipelines (micro talk)
Cloud Native Predictive Data Pipelines (micro talk)
Sid Anand454 views
Cloud Native Data Pipelines (GoTo Chicago 2017) by Sid Anand
Cloud Native Data Pipelines (GoTo Chicago 2017)Cloud Native Data Pipelines (GoTo Chicago 2017)
Cloud Native Data Pipelines (GoTo Chicago 2017)
Sid Anand756 views
Cloud Native Data Pipelines (DataEngConf SF 2017) by Sid Anand
Cloud Native Data Pipelines (DataEngConf SF 2017)Cloud Native Data Pipelines (DataEngConf SF 2017)
Cloud Native Data Pipelines (DataEngConf SF 2017)
Sid Anand866 views
Cloud Native Data Pipelines (in Eng & Japanese) - QCon Tokyo by Sid Anand
Cloud Native Data Pipelines (in Eng & Japanese)  - QCon TokyoCloud Native Data Pipelines (in Eng & Japanese)  - QCon Tokyo
Cloud Native Data Pipelines (in Eng & Japanese) - QCon Tokyo
Sid Anand1K views
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016) by Sid Anand
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
Sid Anand1.6K views
Introduction to Apache Airflow - Data Day Seattle 2016 by Sid Anand
Introduction to Apache Airflow - Data Day Seattle 2016Introduction to Apache Airflow - Data Day Seattle 2016
Introduction to Apache Airflow - Data Day Seattle 2016
Sid Anand9.9K views
Airflow @ Agari by Sid Anand
Airflow @ Agari Airflow @ Agari
Airflow @ Agari
Sid Anand2.6K views
Resilient Predictive Data Pipelines (GOTO Chicago 2016) by Sid Anand
Resilient Predictive Data Pipelines (GOTO Chicago 2016)Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Sid Anand1.5K views
Resilient Predictive Data Pipelines (QCon London 2016) by Sid Anand
Resilient Predictive Data Pipelines (QCon London 2016)Resilient Predictive Data Pipelines (QCon London 2016)
Resilient Predictive Data Pipelines (QCon London 2016)
Sid Anand2K views
Software Developer and Architecture @ LinkedIn (QCon SF 2014) by Sid Anand
Software Developer and Architecture @ LinkedIn (QCon SF 2014)Software Developer and Architecture @ LinkedIn (QCon SF 2014)
Software Developer and Architecture @ LinkedIn (QCon SF 2014)
Sid Anand2.7K views
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013) by Sid Anand
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
Sid Anand14.1K views
Building a Modern Website for Scale (QCon NY 2013) by Sid Anand
Building a Modern Website for Scale (QCon NY 2013)Building a Modern Website for Scale (QCon NY 2013)
Building a Modern Website for Scale (QCon NY 2013)
Sid Anand5.6K views
Hands On with Maven by Sid Anand
Hands On with MavenHands On with Maven
Hands On with Maven
Sid Anand6.1K views
Learning git by Sid Anand
Learning gitLearning git
Learning git
Sid Anand2.4K views

Recently uploaded

Igniting Next Level Productivity with AI-Infused Data Integration Workflows by
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Safe Software
257 views86 slides
Voice Logger - Telephony Integration Solution at Aegis by
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at AegisNirmal Sharma
31 views1 slide
HTTP headers that make your website go faster - devs.gent November 2023 by
HTTP headers that make your website go faster - devs.gent November 2023HTTP headers that make your website go faster - devs.gent November 2023
HTTP headers that make your website go faster - devs.gent November 2023Thijs Feryn
21 views151 slides
Data-centric AI and the convergence of data and model engineering: opportunit... by
Data-centric AI and the convergence of data and model engineering:opportunit...Data-centric AI and the convergence of data and model engineering:opportunit...
Data-centric AI and the convergence of data and model engineering: opportunit...Paolo Missier
39 views40 slides
handbook for web 3 adoption.pdf by
handbook for web 3 adoption.pdfhandbook for web 3 adoption.pdf
handbook for web 3 adoption.pdfLiveplex
22 views16 slides
Uni Systems for Power Platform.pptx by
Uni Systems for Power Platform.pptxUni Systems for Power Platform.pptx
Uni Systems for Power Platform.pptxUni Systems S.M.S.A.
55 views21 slides

Recently uploaded(20)

Igniting Next Level Productivity with AI-Infused Data Integration Workflows by Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software257 views
Voice Logger - Telephony Integration Solution at Aegis by Nirmal Sharma
Voice Logger - Telephony Integration Solution at AegisVoice Logger - Telephony Integration Solution at Aegis
Voice Logger - Telephony Integration Solution at Aegis
Nirmal Sharma31 views
HTTP headers that make your website go faster - devs.gent November 2023 by Thijs Feryn
HTTP headers that make your website go faster - devs.gent November 2023HTTP headers that make your website go faster - devs.gent November 2023
HTTP headers that make your website go faster - devs.gent November 2023
Thijs Feryn21 views
Data-centric AI and the convergence of data and model engineering: opportunit... by Paolo Missier
Data-centric AI and the convergence of data and model engineering:opportunit...Data-centric AI and the convergence of data and model engineering:opportunit...
Data-centric AI and the convergence of data and model engineering: opportunit...
Paolo Missier39 views
handbook for web 3 adoption.pdf by Liveplex
handbook for web 3 adoption.pdfhandbook for web 3 adoption.pdf
handbook for web 3 adoption.pdf
Liveplex22 views
STPI OctaNE CoE Brochure.pdf by madhurjyapb
STPI OctaNE CoE Brochure.pdfSTPI OctaNE CoE Brochure.pdf
STPI OctaNE CoE Brochure.pdf
madhurjyapb13 views
Spesifikasi Lengkap ASUS Vivobook Go 14 by Dot Semarang
Spesifikasi Lengkap ASUS Vivobook Go 14Spesifikasi Lengkap ASUS Vivobook Go 14
Spesifikasi Lengkap ASUS Vivobook Go 14
Dot Semarang37 views
Special_edition_innovator_2023.pdf by WillDavies22
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdf
WillDavies2217 views
Perth MeetUp November 2023 by Michael Price
Perth MeetUp November 2023 Perth MeetUp November 2023
Perth MeetUp November 2023
Michael Price19 views
Black and White Modern Science Presentation.pptx by maryamkhalid2916
Black and White Modern Science Presentation.pptxBlack and White Modern Science Presentation.pptx
Black and White Modern Science Presentation.pptx
maryamkhalid291616 views
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N... by James Anderson
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
GDG Cloud Southlake 28 Brad Taylor and Shawn Augenstein Old Problems in the N...
James Anderson66 views
Piloting & Scaling Successfully With Microsoft Viva by Richard Harbridge
Piloting & Scaling Successfully With Microsoft VivaPiloting & Scaling Successfully With Microsoft Viva
Piloting & Scaling Successfully With Microsoft Viva
AMAZON PRODUCT RESEARCH.pdf by JerikkLaureta
AMAZON PRODUCT RESEARCH.pdfAMAZON PRODUCT RESEARCH.pdf
AMAZON PRODUCT RESEARCH.pdf
JerikkLaureta19 views
Five Things You SHOULD Know About Postman by Postman
Five Things You SHOULD Know About PostmanFive Things You SHOULD Know About Postman
Five Things You SHOULD Know About Postman
Postman30 views
Business Analyst Series 2023 - Week 3 Session 5 by DianaGray10
Business Analyst Series 2023 -  Week 3 Session 5Business Analyst Series 2023 -  Week 3 Session 5
Business Analyst Series 2023 - Week 3 Session 5
DianaGray10237 views

LinkedIn Data Infrastructure (QCon London 2012)

  • 1. Data Infrastructure @ LinkedIn Sid Anand QCon London 2012 @r39132 1
  • 2. About Me Current Life…   LinkedIn *   Web / Software Engineering   Search, Network, and Analytics (SNA)   Distributed Data Systems (DDS)   Me In a Previous Life…   Netflix, Cloud Database Architect   eBay, Web Development, Research Lab, & Search Engine *** And Many Years Prior…   Studying Distributed Systems at Cornell University @r39132 2
  • 3. Our mission Connect the world’s professionals to make them more productive and successful @r39132 3
  • 4. The world’s largest professional network Over 60% of members are now international 75% ** 150M+ * 90 Fortune 100 Companies use LinkedIn to hire >2M *** Company Pages 55 32 16 Languages ~4.2B 17 *** 8 2 4 Professional searches in 2011 2004 2005 2006 2007 2008 2009 2010 *as of February 9, 2012 **as of September 30, 2011 LinkedIn Members (Millions) ***as of December 31, 2011 @r39132 4
  • 5. Other Company Facts •  Headquartered in Mountain View, Calif., with offices around the world! * •  As of December 31, 2011, LinkedIn has 2,116 full-time employees located around the world. •  Currently around 650 people work in Engineering •  400 in Web/Software Engineering •  Plan to add another 200 in 2012 *** •  250 in Operations *as of February 9, 2012 **as of September 30, 2011 ***as of December 31, 2011 @r39132 5
  • 6. Agenda   Company Overview   Architecture –  Data Infrastructure Overview –  Technology Spotlight   Oracle   Voldemort   DataBus   Kafka   Q & A @r39132 6
  • 7. LinkedIn : Architecture Overview •  Our site runs primarily on Java, with some use of Scala for specific infrastructure •  What runs on Scala? •  Network Graph Service •  Kafka •  Most of our services run on Apache + Jetty @r39132 7
  • 8. LinkedIn : Architecture   A web page requests information A and B Presentation Tier   A thin layer focused on building the UI. It assembles the page by making parallel requests to BST services A A B B C C Business Service Tier   Encapsulates business logic. Can call other BST clusters and its own DST cluster. A A B B C C Data Service Tier   Encapsulates DAL logic and concerned with one Oracle Schema. Data Infrastructure   Concerned with the Master Slave Master Master persistent storage of and easy access to data Memcached Voldemort @r39132 8
  • 9. LinkedIn : Architecture   A web page requests information A and B Presentation Tier   A thin layer focused on building the UI. It assembles the page by making parallel requests to BST services A A B B C C Business Service Tier   Encapsulates business logic. Can call other BST clusters and its own DST cluster. A A B B C C Data Service Tier   Encapsulates DAL logic and concerned with one Oracle Schema. Data Infrastructure   Concerned with the Master Slave Master Master persistent storage of and easy access to data Memcached Voldemort @r39132 9
  • 10. LinkedIn : Data Infrastructure Technologies •  Database Technologies •  Oracle •  Voldemort * •  Espresso •  Data Replication Technologies •  Kafka •  DataBus •  Search Technologies •  Zoie – real-time search and indexing with Lucene •  Bobo – faceted search library for Lucene *** •  SenseiDB – fast, real-time, faceted, KV and full-text Search Engine and more @r39132 10
  • 11. LinkedIn : Data Infrastructure Technologies This talk will focus on a few of the key technologies below! •  Database Technologies * •  Oracle •  Voldemort •  Espresso – A new K-V store under development •  Data Replication Technologies •  Kafka •  DataBus •  Search Technologies *** •  Zoie – real-time search and indexing with Lucene •  Bobo – faceted search library for Lucene •  SenseiDB – fast, real-time, faceted, KV and full-text Search Engine and more @r39132 11
  • 12. LinkedIn Data Infrastructure Technologies Oracle: Source of Truth for User-Provided Data @r39132 12
  • 13. Oracle : Overview Oracle •  All user-provided data is stored in Oracle – our current source of truth •  About 50 Schemas running on tens of physical instances * •  With our user base and traffic growing at an accelerating pace, so how do we scale Oracle for user-provided data? Scaling Reads •  Oracle Slaves (c.f. DSC) •  Memcached •  Voldemort – for key-value lookups *** Scaling Writes •  Move to more expensive hardware or replace Oracle with something else @r39132 13
  • 14. Oracle : Overview – Data Service Context Scaling Oracle Reads using DSC   DSC uses a token (e.g. cookie) to ensure that a reader always sees his or her own writes immediately –  If I update my own status, it is okay if you don’t see the change for a few minutes, but I have to see it immediately @r39132 14
  • 15. Oracle : Overview – How DSC Works?   When a user writes data to the master, the DSC token (for that data domain) is updated with a timestamp   When the user reads data, we first attempt to read from a replica (a.k.a. slave) database   If the data in the slave is older than the data in the DSC token, we read from the Master instead @r39132 15
  • 16. LinkedIn Data Infrastructure Technologies Voldemort: Highly-Available Distributed Data Store @r39132 16
  • 17. Voldemort : Overview •  A distributed, persistent key-value store influenced by the AWS Dynamo paper •  Key Features of Dynamo   Highly Scalable, Available, and Performant   Achieves this via Tunable Consistency •  For higher consistency, the user accepts lower availability, scalability, and performance, and vice-versa   Provides several self-healing mechanisms when data does become inconsistent •  Read Repair   Repairs value for a key when the key is looked up/read •  Hinted Handoff   Buffers value for a key that wasn’t successfully written, then writes it later •  Anti-Entropy Repair   Scans the entire data set on a node and fixes it   Provides means to detect node failure and a means to recover from node failure •  Failure Detection •  Bootstrapping New Nodes @r39132 17
  • 18. Voldemort : Overview API Layered, Pluggable Architecture VectorClock<V> get (K key) Client put (K key, VectorClock<V> value) applyUpdate(UpdateAction action, int retries) Client API Conflict Resolution Voldemort-specific Features Serialization   Implements a layered, pluggable Repair Mechanism architecture Failure Detector Routing   Each layer implements a common interface (c.f. API). This allows us to replace or remove implementations at any layer Server Repair Mechanism •  Pluggable data storage layer Failure Detector Admin   BDB JE, Custom RO storage, Routing etc… Storage Engine •  Pluggable routing supports   Single or Multi-datacenter routing @r39132 18
  • 19. Voldemort : Overview Layered, Pluggable Architecture Client Voldemort-specific Features Client API Conflict Resolution •  Supports Fat client or Fat Server Serialization Repair Mechanism •  Repair Mechanism + Failure Failure Detector Detector + Routing can run on Routing server or client Server •  LinkedIn currently runs Fat Client, but we Repair Mechanism would like to move this to a Fat Server Failure Detector Admin Model Routing Storage Engine @r39132 19
  • 20. Where Does LinkedIn use Voldemort? @r39132 20
  • 21. Voldemort : Usage Patterns @ LinkedIn 2 Usage-Patterns   Read-Write Store –  Uses BDB JE for the storage engine –  50% of Voldemort Stores (aka Tables) are RW   Read-only Store –  Uses a custom Read-only format –  50% of Voldemort Stores (aka Tables) are RO   Let’s look at the RO Store @r39132 21
  • 22. Voldemort : RO Store Usage at LinkedIn People You May Know Viewers of this profile also viewed Related Searches Events you may be interested in LinkedIn Skills Jobs you may be interested in @r39132 22
  • 23. Voldemort : Usage Patterns @ LinkedIn RO Store Usage Pattern 1.  Use Hadoop to build a model 2.  Voldemort loads the output of Hadoop 3.  Voldemort serves fast key-value look-ups on the site –  e.g. For key=“Sid Anand”, get all the people that “Sid Anand” may know! –  e.g. For key=“Sid Anand”, get all the jobs that “Sid Anand” may be interested in! @r39132 23
  • 24. How Do The Voldemort RO Stores Perform? @r39132 24
  • 25. Voldemort : RO Store Performance : TP vs. Latency ● MySQL ● Voldemort ● MySQL ● Voldemort ● Voldemort ● MySQL median MySQL ● Voldemort 99th percentile ● median median ● 99th percentile ●percentile 99th median 99th percentile 3.5 ● ● ● 250 ● ● ● ● ● 3.5 3.5 ● 250 ● ● ● 3.5 3.0 ● 250 ● ● ● ● ● ● 250 ● ● ● 3.0 ● 200 ● ● ● ● ● ● 3.0 ● ● ● ● ● ● 3.0 ● latency (ms) 2.5 ● 200 ● ● ● ● 200 200 latency (ms) 2.5 latency (ms) 2.5 ● ● ● ● latency (ms) 2.5 2.0 ● ● ● ● ● ● ● 150 ● 2.0 2.0● ● ●● ● ● 150 150 2.0 ● 1.5 ● ● ● ● 150 ● ● ● ● ● ● ● 100 ●● ● ● 1.5 1.5 ● ● ● ●● ● ● 1.5 1.0 ● ● 100 100 ● ● ● ● ● ● 100 ●● ● 1.0 ● 1.0 ● 50 ● ● ● ● ● ● ● ● 1.0 0.5 ● ● ● ● 50 ● ● 50 ● ● ● ● 0.5 0.5 50 ● 0.5 0.0 0 0.0 0.0 0 0 0.0 100 200 300 400 500 600 700 0 100 200 300 400 500 600 700 100 200 300 400 500 600 700 throughput 300 400 500 600 700 500 600 700 100 200 100 200 300 400 500 600 700 (qps) 200 300 400 100 100 200 300 400 500 600 700 100 200 300 400 500 600 700 throughput (qps) (qps) throughput (qps) throughput 100 GB data, 24 GB RAM @r39132 25
  • 26. LinkedIn Data Infrastructure Solutions Databus : Timeline-Consistent Change Data Capture @r39132 26
  • 27. Where Does LinkedIn use DataBus? @r39132 27
  • 28. DataBus : Use-Cases @ LinkedIn Updates Standard Search Graph Read ization Index Index Replicas Oracle Data Change Events A user updates his profile with skills and position history. He also accepts a connection •  The write is made to an Oracle Master and DataBus replicates: •  the profile change to the Standardization service   E.G. the many forms of IBM are canonicalized for search-friendliness and recommendation-friendliness •  the profile change to the Search Index service   Recruiters can find you immediately by new keywords •  the connection change to the Graph Index service   The user can now start receiving feed updates from his new connections immediately @r39132 28
  • 29. DataBus : Architecture DataBus consists of 2 services Capture Relay •  Relay Services DB Changes Event Win •  Sharded •  Maintain an in-memory buffer per On-line shard Changes •  Each shard polls Oracle and then deserializes transactions into Avro Bootstrap •  Bootstrap Service DB •  Picks up online changes as they appear in the Relay •  Supports 2 types of operations from clients   If a client falls behind and needs records older than what the relay has, Bootstrap can send consolidated deltas!   If a new client comes on line, Bootstrap can send a consistent snapshot @r39132 29
  • 30. DataBus : Architecture Client Capture Relay Consumer 1 Client Lib On-line Databus DB Changes Changes Event Win Consumer n On-line ated Changes solid Con eT Sinc Delta Client Bootstrap Consumer 1 Client Lib Consistent Databus Snapshot at U Consumer n DB Guarantees   Transactional semantics   In-commit-order Delivery   At-least-once delivery   Durability (by data source)   High-availability and reliability   Low latency @r39132 30
  • 31. DataBus : Architecture - Bootstrap   Generate consistent snapshots and consolidated deltas during continuous updates with long-running queries Client Read Consumer 1 Client Lib Databus Online Relay Changes Consumer n Event Win Read Changes Bootstrap server Bootstrap Read Log Writer Server recent events Replay Log Storage events Snapshot Storage Log Applier @r39132 31
  • 32. LinkedIn Data Infrastructure Solutions Kafka: High-Volume Low-Latency Messaging System @r39132 32
  • 33. Kafka : Usage at LinkedIn Where as DataBus is used for Database change capture and replication, Kafka is used for application-level data streams Examples: •  End-user Action Tracking (a.k.a. Web Tracking) of •  Emails opened •  Pages seen •  Links followed •  Executing Searches •  Operational Metrics •  Network & System metrics such as •  TCP metrics (connection resets, message resends, etc…) •  System metrics (iops, CPU, load average, etc…) @r39132 33
  • 34. Kafka : Overview Broker Tier WebTier Consumers Push Sequential write sendfile Pull Events Events Iterator 1 Client Lib Topic 1 Kafka 100 MB/sec 200 MB/sec Topic 2 Iterator n Topic N Topic  Offset Topic, Partition Offset Ownership Zookeeper Management Features Guarantees Scale   Pub/Sub   At least once delivery   Billions of Events   Batch Send/Receive   Very high throughput   TBs per day   System Decoupling   Low latency   Inter-colo: few seconds   Durability   Typical retention: weeks   Horizontally Scalable @r39132 34
  • 35. Kafka : Overview Key Design Choices •  When reading from a file and sending to network socket, we typically incur 4 buffer copies and 2 OS system calls   Kafka leverages a sendFile API to eliminate 2 of the buffer copies and 1 of the system calls •  No double-buffering of messages - we rely on the OS page cache and do not store a copy of the message in the JVM   Less pressure on memory and GC   If the Kafka process is restarted on a machine, recently accessed messages are still in the page cache, so we get the benefit of a warm start •  Kafka doesn't keep track of which messages have yet to be consumed -- i.e. no book keeping overhead   Instead, messages have time-based SLA expiration -- after 7 days, messages are deleted @r39132 35
  • 36. How Does Kafka Perform? @r39132 36
  • 37. Kafka : Performance : Throughput vs. Latency (100 topics, 1 producer, 1 broker) 250 200 Consumer latency in ms 150 100 50 0 0 20 40 60 80 100 Producer throughput in MB/sec @r39132 37
  • 38. Kafka : Performance : Linear Incremental Scalability (10 topics, broker flush interval 100K) 400 381 350 300 Throughput in MB/s 293 250 200 190 150 100 101 50 0 1 broker 2 brokers 3 brokers 4 brokers @r39132 38
  • 39. Kafka : Performance : Resilience as Messages Pile Up (1  topic,  broker  flush  interval  10K)   200000 160000 Throughput  in  msg/s   120000 80000 40000 0 10 105 199 294 388 473 567 662 756 851 945 1039 Unconsumed data in GB @r39132 39
  • 40. Acknowledgments Presentation & Content   Chavdar Botev (DataBus) @cbotev   Roshan Sumbaly (Voldemort) @rsumbaly   Neha Narkhede (Kafka) @nehanarkhede Development Team Aditya Auradkar, Chavdar Botev, Shirshanka Das, Dave DeMaagd, Alex Feinberg, Phanindra Ganti, Lei Gao, Bhaskar Ghosh, Kishore Gopalakrishna, Brendan Harris, Joel Koshy, Kevin Krawez, Jay Kreps, Shi Lu, Sunil Nagaraj, Neha Narkhede, Sasha Pachev, Igor Perisic, Lin Qiao, Tom Quiggle, Jun Rao, Bob Schulman, Abraham Sebastian, Oliver Seeliger, Adam Silberstein, Boris Skolnick, Chinmay Soman, Roshan Sumbaly, Kapil Surlaker, Sajid Topiwala, Balaji Varadarajan, Jemiah Westerman, Zach White, David Zhang, and Jason Zhang @r39132 40
  • 41. y Questions? @r39132 41