SlideShare ist ein Scribd-Unternehmen logo
1 von 55
Downloaden Sie, um offline zu lesen
mobile first



 Netflix for Mobile in the
           Cloud
                    May 2011
              Siddharth “Sid” Anand
A Very Special Thanks to …

… the following folks for helping with the presentation:
•  Ashish Khivesara – IPhone/Android UI Development
•  Daniel Jacobson – Director of API
•  Shyan-Ming Perng – PS3/IPad/IPhone UI Development
•  Mike Cohen – API Development
•  Yury Izrailevsky – Director of Cloud Systems

… the entire company for pulling together to make Netflix for
Mobile in the Cloud a reality!



                          mobile first
                         Intuit Proprietary & Confidential
mobile first



              Our Business
              No Longer Going Postal!
Our Business


 In 1999
 • Netflix launched DVD rentals-by-mail
   – Unlimited rentals for a flat monthly fee
   – No due dates
   – No late fees
   – No shipping or handling fees
   – First attempt to target long-tail rental market
     • We can ship any of >100K titles, whereas Brick-and-
       Mortar are constrained by how much space they can rent
       - Only 1-2k rentals



                              mobile first
                             Intuit Proprietary & Confidential
Our Business


 Fast Forward to 2008
 •  Netflix forecasts the gradual end of the DVD and
   starts switching to Movie Streaming
 •  Upside?
    –  We spend $500MM to $600MM annually on US
      Postage for DVD mailing
    –  Streaming a movie is a fraction of the cost of shipping
      a DVD
    –  Easier to craft a business model for international
      expansion



                             mobile first
                            Intuit Proprietary & Confidential
Our Business
•  We have 22M+ subscribers in the US and Canada
•  May account for 20% of US peak downstream
   bandwidth usage
•  A top CDN user in the US
   •    Limelight, Akamai, & Level 3 deliver images and movies

•  Grew subscribers 2008-2010 by partnering with
   device makers




                            mobile first
                           Intuit Proprietary & Confidential
Our Business

•  A world of connected devices, some mobile




                      mobile first
                     Intuit Proprietary & Confidential
mobile first



              Our Problem
Our Problem

• Circa late 2008, Netflix had a single data center
  –  Single-point-of-failure (a.k.a. SPOF)
  –  Approaching limits on cooling, power, space, traffic capacity


• Alternatives
  – Build more data centers
  – Outsource the majority of our capacity planning and scale out
    • Allows us to focus on core competencies




                              mobile first
                             Intuit Proprietary & Confidential
Our Problem’s Solution!


 • Winner : Outsource the majority of our capacity planning
   and scale out
   – Leverage a leading Infrastructure-as-a-service provider
     • Amazon Web Services



 • Footnote : As it has taken us a while (i.e. ~2+ years) to
   realize our vision of running on the cloud, we needed an
   interim solution to handle growth
   – We did build a second data center along the way
     • We did outgrow it soon afterward!


                             mobile first
                           Intuit Proprietary & Confidential
mobile first



Cloud Migration Strategy
              What to Migrate? How?
Cloud Migration Strategy

• Components
  – Applications and Software Infrastructure
  – Data

• Migration Considerations
  – Security
    • PII and PCI DSS stays in our DC, rest can go to the cloud
  – Web Scale – this goes!




                              mobile first
                             Intuit Proprietary & Confidential
Cloud Migration Strategy




                mobile first
               Intuit Proprietary & Confidential
Cloud Migration Strategy




                mobile first
               Intuit Proprietary & Confidential
Cloud Migration Strategy




                mobile first
               Intuit Proprietary & Confidential
Cloud Migration Strategy

 Examples of Applications that can be moved
 •  Web Scale
    – Personalized Video Discovery (e.g. browsing movie lists on the IPhone)
    – Streaming Video Playback (e.g. watching a movie on the IPhone)
 •  Off-line
    – Video Encoding
       • Encode and store in final form in CDN
       • ~40 encodes from a single mezzanine : bit rates, screen resolutions, codecs, etc…
 •  Infrastructure
    – Log Capture & Analysis, Monitoring, Alerting




                                    mobile first
                                   Intuit Proprietary & Confidential
Cloud Migration Strategy

Examples of Data that can be moved
•  Video-centric data
  – Critics’ and Users’ reviews
  – Video Metadata (e.g. director, actors, plot description, etc…)
•  User-video-centric data – some of our largest data sets
  – Video Queue
  – Watched History
  – Video Ratings (i.e. a 5-star rating system)
  – Video Playback Metadata (e.g. streaming bookmarks, activity logs)




                                   mobile first
                                  Intuit Proprietary & Confidential
mobile first



              Cloud Migration
              What Does the Cloud Offer?
Cloud Migration

“The cloud lets its users focus on
 delivering differentiating business value
 instead of wasting valuable resources
 on the undifferentiated heavy lifting
 that makes up most of IT
 infrastructure.”

 - Werner Vogels, CTO, Amazon
  August 25, 2009, ‘All Things Distributed’




                                    mobile first
                                   Intuit Proprietary & Confidential
mobile first



    AWS Services We Use
              Messaging Services
Messaging Services

Data Center                            Amazon Web Services
WebLogic Messaging                     SQS (Message Queues)
                                       SNS (Message Topics)




                      mobile first
                     Intuit Proprietary & Confidential
Messaging Services

•  Use-cases for Message Queues
 –  System Dependency Decoupling
   •  e.g. Decouple Cloud and DC applications
    -  When user adds a movie to the instant queue in the cloud, we
      send the update back to the DC for DC-resident applications
    -  Message consumers are decoupled from message producers


 –  Fire-and-forget Write Scalability
   •  e.g. Application Logging
    -  Write to BI storage
    -  Consumers can process messages at their own rate




                          mobile first
                         Intuit Proprietary & Confidential
Messaging Services

•  SQS
 –  Infinitely Scalable but does not guarantee in-order
   message delivery

 –  Never worry about overflowing the queue and
   crashing or becoming unresponsive!
   •  Often a problem with enterprise messaging systems


 –  Messages are automatically dropped from queues
   after a maximum of 4 days



                        mobile first
                       Intuit Proprietary & Confidential
Messaging Services

•  SQS
 –  API for Queue Management
   •  CreateQueue
   •  ListQueues
   •  DeleteQueue


 – API for Message Management
    •  SendMessage (up to 64K in size)
   •  ReceiveMessage (up to 10 messages in a batch)
   •  DeleteMessage (a.k.a. ACK Message)
   •  SetVisibilityTimeout – after which, a message becomes visible to
     other ReceivedMessage calls



                            mobile first
                           Intuit Proprietary & Confidential
mobile first



    AWS Services We Use
              Persistence
Persistence

Data Center                     Amazon Web Services


Oracle                          SimpleDB


                                S3


                                Cassandra




               mobile first
              Intuit Proprietary & Confidential
Persistence



  An ideal storage solution should have the following features:
  þ Hosted
  þ Managed Distribution Model
  þ Works in AWS
  þ AP from CAP
  þ Handles a majority of use-cases accessing high-growth, high-traffic
   data
    þ Specifically, key access by customer id, movie id, or both




                               mobile first
                              Intuit Proprietary & Confidential
Persistence

• We picked SimpleDB and S3
 – SimpleDB was targeted as the AP equivalent of our RDBMS
   databases in our Data Center

 – S3 was used for data sets where item or row data exceeded
   SimpleDB limits and could be looked up purely by a single key
   (i.e. does not require secondary indices and complex query
   semantics)
   • Video encodes
   • Streaming device activity logs (i.e. CLOB, BLOB, etc…)
   • Compressed (old) Rental History




                               mobile first
                              Intuit Proprietary & Confidential
Persistence


 Terminology

     SimpleDB       Hash Table                          Relational
                                                        Databases
      Domain          Hash Table                           Table

       Item                 Entry                          Row

    Item Name                 Key                    Mandatory Primary
                                                           Key
     Attribute   Part of the Entry                        Column
                       Value




                  mobile first
                 Intuit Proprietary & Confidential
Persistence

Soccer Players
Key                     Value

                                                                                     Nickname = Wizard of   Teams = Leeds United,
ab12ocs12v9             First Name = Harold      Last Name = Kewell                  Oz                     Liverpool, Galatasaray
                                                                                     Nickname = Czech       Teams = Lazio,
b24h3b3403b             First Name = Pavel       Last Name = Nedved                  Cannon                 Juventus
                                                                                                            Teams = Sporting,
                                                                                                            Manchester United,
cc89c9dc892             First Name = Cristiano   Last Name = Ronaldo                                        Real Madrid

SimpleDB’s salient characteristics
      •  SimpleDB offers a range of consistency options
      •  SimpleDB domains are sparse and schema-less
      •  The Key and all Attributes are indexed
      •  Each item must have a unique Key
      •  An item contains a set of Attributes
              •  Each Attribute has a name
              •  Each Attribute has a set of values
              •  All data is stored as UTF-8 character strings (i.e. no support for types such as numbers or
              dates)



                                                  mobile first
                                                 Intuit Proprietary & Confidential
Persistence
 What does the API look like?
 •  Manage Domains
   – CreateDomain
   – DeleteDomain
   – ListDomains
   – DomainMetaData
 •  Access Data
   – Retrieving Data
      • GetAttributes – returns a single item
      • Select – returns multiple items using SQL syntax
   – Writing Data
      • PutAttributes – put single item
      • BatchPutAttributes – put multiple items
   – Removing Data
      • DeleteAttributes – delete single item
      • BatchDeleteAttributes – delete multiple items



                                 mobile first
                                Intuit Proprietary & Confidential
mobile first



    AWS Services We Use
              Compute
Compute

Data Center            Amazon Web Services


Hadoop                 EMR & S3


Servers                EC2 – heavy use of reserved instances


Citrix Load Balancer   •  Elastic Load Balancer (ELB)
                       •  Cloud Watch
                       •  Auto Scale Group (ASG)




                         mobile first
                        Intuit Proprietary & Confidential
mobile first



              Filling the Gaps
          Netflix’s Undifferentiated Heavy Lifting
Filling the Gaps
AWS provides various IAAS offerings, but applications need more!




AWS IAAS
• Persistence




                                     ?
  •  SimpleDB, RDS, S3,
    EBS
• Compute                                                       Netflix
  • EC2, EMR, ASG, ELB                                        Applications
• Monitoring
  • CloudWatch




                           mobile first
                          Intuit Proprietary & Confidential
Filling the Gaps
AWS provides various IAAS offerings, but applications need more!


Hence the need for Netflix’s infrastructure team to bridge the gap!



AWS IAAS                  Netflix Platform
• Persistence             •  Platform.jar
  •  SimpleDB, RDS, S3,   •  Middle-tier Load
    EBS                      Balancing
• Load Handling                                                     Netflix
                          •  Discovery
  • EC2, EMR, ASG, ELB                                            Applications
• Monitoring
                          •  Encryption Services
  • CloudWatch            •  Caching
                          •  Configuration
                          •  GeoLocation




                               mobile first
                              Intuit Proprietary & Confidential
Discovery & MTLB
              AWS ELB
                                         Netflix edge services (e.g. API)


API           EC2    EC2
                ?




                                         Netflix mid-tier services (e.g. Q
                                                 or Merch services)
       EC2               EC2
        EC2               EC2
Q                   Merch
                                           AWS IAAS

    Simple      S3         SQS
      DB


                            mobile first
                           Intuit Proprietary & Confidential
Discovery & MTLB
               AWS ELB
                                             Netflix edge services (e.g. API)


API            EC2      EC2
                                              Netflix Platform

Middle Tier Load Balancer   Discovery

                                             Netflix mid-tier services (e.g. Q
                                                   or Merch services) w/
                                                        platform.jar
       EC2              EC2
        EC2              EC2
Q                  Merch
                                               AWS IAAS

    Simple         S3         SQS
      DB


                                mobile first
                               Intuit Proprietary & Confidential
mobile first



     Building Mobile Apps
              Apple IPhone
Mobile App Development Strategy

•  We develop mobile web pages
   that run in Web Kit where
   available. Examples include:
   •  PS3
   •  IPhone/IPad/etc…
•  Enables
   •  A/B Testing
   •  Fast Deployments
   •  Leveraging code across
      devices (e.g. IPhone &
      Android)

                          mobile first
                         Intuit Proprietary & Confidential
IPhone

• When you click on the app,
  you see the splash screen
  • It will disappear once we
    start loading the Home
    Page




                     mobile first
                    Intuit Proprietary & Confidential
IPhone
•  Home Page Loading: Fetch
   1.  Time service
   2.  User resource
   3.  Rental History for resume feature
   4.  Fetch up to 12 Lists of Movies
       1.  Get 3 movies for the top-most
           list (e.g. Children & Family)
       2.  After it loads, fetch 3 movies
           for remaining 11 lists in
           parallel – slows scrolling
   5.  Bulk rating request for all titles to
       fetch the star bars

•  Average 11 API calls on Home Page


                                 mobile first
                                Intuit Proprietary & Confidential
IPhone
•  User Interaction Reasoning (in red)
   •    Rental History for resume feature
        •    Promotes fastest movie launch
   •    Fetch up to 12 Lists of Movies
        •    Get 3 movies for the top-most
             list (e.g. Children & Family)
        •    After it loads, fetch 3 movies for
             remaining 11 lists in parallel
             •  Remaining 11 may slow
                scrolling
   •    Bulk rating request for all titles to
        fetch the star bars
        •    Absence is least obvious to user


                                   mobile first
                                  Intuit Proprietary & Confidential
mobile first



              Tips & Tricks
                 Apple IPhone
Tips & Tricks - Prefetching




                 mobile first
                Intuit Proprietary & Confidential
Tips & Tricks – Prefetching
•  On any list (e.g. Home) page, we prefetch
   •  Box Shot Image
   •  Title
   •  Ratings (i.e. star bar)
   •  Year, MPAA rating, Duration
   •  Synopsis

•  On the Movie Display Page, we load/reload
   •  “In Q” button status
   •  Play or Resume button status
   •  Cast/Director
   •  Episode List (for TV Shows) or Simliars
      (for Movies)

                                 mobile first
                                Intuit Proprietary & Confidential
Tips & Tricks – Memory Savings

• To save memory, when we
  navigate away from the MDP, we
  unload the following:
   •  Similars (for Movies)
   •  Episodes (for TV Shows)
•  We keep the Cast & Director
•  On future visit to this MDP, we will
   reload the following:
   •  Anything not loaded
   •  Button status for both buttons

                          mobile first
                         Intuit Proprietary & Confidential
Tips & Tricks – Bandwidth Savings

•  Server responses are GZIP compressed
  –  Processor speed ample enough to handle the decompression
  –  Less power hungry than wireless 3G transfers of uncompressed
    data
  –  Rules of thumb, keep payload 20-100KB per call




                           mobile first
                          Intuit Proprietary & Confidential
Tips & Tricks – Bandwidth Savings

•  Revising Netflix REST Model
  – Too chatty
  – Too many round-trips
  –  Or it returns data that is not needed
    • A lot of processing is needed to skip extraneous data
•  Moving to a more structured query language (e.g. SQL-like)
• This will reduce memory, bandwidth use, and round-trips
• Great blog entry on the topic from Netflix’s Director of API
  @daniel_jacobson
  –  http://techblog.netflix.com/2011/02/redesigning-netflix-
    api.html

                               mobile first
                              Intuit Proprietary & Confidential
Tips & Tricks – Image Sprites

•  Image Sprites are used to reduce memory
  and bandwidth by giving the user the
  impression of viewing different images,
  when in fact there is only one
  –  Ratings Star Bars
  –  Footer (i.e. Home, Genres, Search, & Q)




                            mobile first
                           Intuit Proprietary & Confidential
Tips & Tricks – Image Sprites




With Some Markup
<span title="1 of 5" class="rating r1"><img width="0"
height="1" src="sprite.gif" alt=""/>1 out of 5</span>
<span title="2 of 5" class="rating r2"><img width="0"
height="1" src="sprite.gif" alt=""/>2 out of 5</span>
…..


And Some CSS
.rating {
 position: relative;
 height: 1.6em;
…..



                                         mobile first
                                        Intuit Proprietary & Confidential
Tips & Tricks – Security

•  All traffic is over secure channels – https
  – Deny Man-in-the-Middle attacks
•  All requests are signed with a time
  –  Use Netflix Time Service to avoid clock-
    skew
  –  Avoids replay attacks




                            mobile first
                           Intuit Proprietary & Confidential
mobile first



Netflix IPhone App Demo
Netflix IPhone App Demo

•  Link can be found at the location below:
  –  http://blog.netflix.com/2010/08/netflix-now-available-on-your-iphone.html




                               mobile first
                              Intuit Proprietary & Confidential
mobile first



              Questions?

Weitere ähnliche Inhalte

Was ist angesagt?

Netflix Velocity Conference 2011
Netflix Velocity Conference 2011Netflix Velocity Conference 2011
Netflix Velocity Conference 2011Adrian Cockcroft
 
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...Adrian Cockcroft
 
Netflix Architecture Tutorial at Gluecon
Netflix Architecture Tutorial at GlueconNetflix Architecture Tutorial at Gluecon
Netflix Architecture Tutorial at GlueconAdrian Cockcroft
 
Netflix cloud architecture...continued
Netflix cloud architecture...continuedNetflix cloud architecture...continued
Netflix cloud architecture...continuedCloud Genius
 
MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012
MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012
MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012Amazon Web Services
 
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)Adrian Cockcroft
 
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)Adrian Cockcroft
 
AWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at NetflixAWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at NetflixAdrian Cockcroft
 
AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...
AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...
AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...Amazon Web Services
 
Netflix Play API: Why we built an evolutionary architecture
Netflix Play API: Why we built an evolutionary architectureNetflix Play API: Why we built an evolutionary architecture
Netflix Play API: Why we built an evolutionary architectureSuudhan Rangarajan
 
Millicomputing Ignite Talk
Millicomputing Ignite TalkMillicomputing Ignite Talk
Millicomputing Ignite TalkAdrian Cockcroft
 
Netflix Edge Engineering Open House Presentations - June 9, 2016
Netflix Edge Engineering Open House Presentations - June 9, 2016Netflix Edge Engineering Open House Presentations - June 9, 2016
Netflix Edge Engineering Open House Presentations - June 9, 2016Daniel Jacobson
 
ENT101 Embracing the Cloud - AWS re: Invent 2012
ENT101 Embracing the Cloud - AWS re: Invent 2012ENT101 Embracing the Cloud - AWS re: Invent 2012
ENT101 Embracing the Cloud - AWS re: Invent 2012Amazon Web Services
 
AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)
AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)
AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)Amazon Web Services
 
Web Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud PlatformWeb Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud PlatformSudhir Tonse
 
(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The Cloud(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The CloudAmazon Web Services
 
Meetup open stack_grizzly
Meetup open stack_grizzlyMeetup open stack_grizzly
Meetup open stack_grizzlyeNovance
 
Networking in the Cloud Age (LISA 2012 Tutorial)
Networking in the Cloud Age (LISA 2012 Tutorial)Networking in the Cloud Age (LISA 2012 Tutorial)
Networking in the Cloud Age (LISA 2012 Tutorial)Chiradeep Vittal
 

Was ist angesagt? (20)

Netflix Velocity Conference 2011
Netflix Velocity Conference 2011Netflix Velocity Conference 2011
Netflix Velocity Conference 2011
 
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
Global Netflix - HPTS Workshop - Scaling Cassandra benchmark to over 1M write...
 
Netflix Architecture Tutorial at Gluecon
Netflix Architecture Tutorial at GlueconNetflix Architecture Tutorial at Gluecon
Netflix Architecture Tutorial at Gluecon
 
Netflix cloud architecture...continued
Netflix cloud architecture...continuedNetflix cloud architecture...continued
Netflix cloud architecture...continued
 
MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012
MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012
MED202 Netflix’s Transcoding Transformation - AWS re: Invent 2012
 
NetflixOSS Meetup
NetflixOSS MeetupNetflixOSS Meetup
NetflixOSS Meetup
 
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
Gluecon 2013 - Netflix Cloud Native Tutorial Details (part 2)
 
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)Cloud Architecture Tutorial - Platform Component Architecture (2of3)
Cloud Architecture Tutorial - Platform Component Architecture (2of3)
 
AWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at NetflixAWS Re:Invent - High Availability Architecture at Netflix
AWS Re:Invent - High Availability Architecture at Netflix
 
AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...
AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...
AWS re:Invent 2016: From Resilience to Ubiquity - #NetflixEverywhere Global A...
 
Netflix Play API: Why we built an evolutionary architecture
Netflix Play API: Why we built an evolutionary architectureNetflix Play API: Why we built an evolutionary architecture
Netflix Play API: Why we built an evolutionary architecture
 
Millicomputing Ignite Talk
Millicomputing Ignite TalkMillicomputing Ignite Talk
Millicomputing Ignite Talk
 
Svc 202-netflix-open-source
Svc 202-netflix-open-sourceSvc 202-netflix-open-source
Svc 202-netflix-open-source
 
Netflix Edge Engineering Open House Presentations - June 9, 2016
Netflix Edge Engineering Open House Presentations - June 9, 2016Netflix Edge Engineering Open House Presentations - June 9, 2016
Netflix Edge Engineering Open House Presentations - June 9, 2016
 
ENT101 Embracing the Cloud - AWS re: Invent 2012
ENT101 Embracing the Cloud - AWS re: Invent 2012ENT101 Embracing the Cloud - AWS re: Invent 2012
ENT101 Embracing the Cloud - AWS re: Invent 2012
 
AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)
AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)
AWS re:Invent 2016: ↑↑↓↓←→←→ BA Lambda Start (SVR305)
 
Web Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud PlatformWeb Scale Applications using NeflixOSS Cloud Platform
Web Scale Applications using NeflixOSS Cloud Platform
 
(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The Cloud(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The Cloud
 
Meetup open stack_grizzly
Meetup open stack_grizzlyMeetup open stack_grizzly
Meetup open stack_grizzly
 
Networking in the Cloud Age (LISA 2012 Tutorial)
Networking in the Cloud Age (LISA 2012 Tutorial)Networking in the Cloud Age (LISA 2012 Tutorial)
Networking in the Cloud Age (LISA 2012 Tutorial)
 

Andere mochten auch

Velocity Conference: Increasing Speed To Market In Mobile Development Through...
Velocity Conference: Increasing Speed To Market In Mobile Development Through...Velocity Conference: Increasing Speed To Market In Mobile Development Through...
Velocity Conference: Increasing Speed To Market In Mobile Development Through...Intuit Inc.
 
My startupxx prototyping v2
My startupxx prototyping v2My startupxx prototyping v2
My startupxx prototyping v2Aliza Carpio
 
探討Web ui自動化測試工具
探討Web ui自動化測試工具探討Web ui自動化測試工具
探討Web ui自動化測試工具政億 林
 
Driving JIRA Adoption Through Simple Configuration
Driving JIRA Adoption Through Simple ConfigurationDriving JIRA Adoption Through Simple Configuration
Driving JIRA Adoption Through Simple ConfigurationAtlassian
 
Combining Operations and Support: Incident Management with Atlassian
Combining Operations and Support: Incident Management with AtlassianCombining Operations and Support: Incident Management with Atlassian
Combining Operations and Support: Incident Management with AtlassianAtlassian
 
A Habit of Innovation
A Habit of InnovationA Habit of Innovation
A Habit of InnovationAtlassian
 
Alex Balazs on Scalable Services at GlueCon 2016
Alex Balazs on Scalable Services at GlueCon 2016Alex Balazs on Scalable Services at GlueCon 2016
Alex Balazs on Scalable Services at GlueCon 2016Intuit Inc.
 
Transforming Organizations – from the Perspective of a Technical Mind #GHC15
Transforming Organizations – from the Perspective of a Technical Mind #GHC15Transforming Organizations – from the Perspective of a Technical Mind #GHC15
Transforming Organizations – from the Perspective of a Technical Mind #GHC15Intuit Inc.
 
The Real Value of Small Business Apps
The Real Value of Small Business AppsThe Real Value of Small Business Apps
The Real Value of Small Business AppsIntuit Inc.
 
Dispatches From the New Economy: The On-Demand Workforce
Dispatches From the New Economy: The On-Demand WorkforceDispatches From the New Economy: The On-Demand Workforce
Dispatches From the New Economy: The On-Demand WorkforceIntuit Inc.
 

Andere mochten auch (11)

Velocity Conference: Increasing Speed To Market In Mobile Development Through...
Velocity Conference: Increasing Speed To Market In Mobile Development Through...Velocity Conference: Increasing Speed To Market In Mobile Development Through...
Velocity Conference: Increasing Speed To Market In Mobile Development Through...
 
My startupxx prototyping v2
My startupxx prototyping v2My startupxx prototyping v2
My startupxx prototyping v2
 
探討Web ui自動化測試工具
探討Web ui自動化測試工具探討Web ui自動化測試工具
探討Web ui自動化測試工具
 
Driving JIRA Adoption Through Simple Configuration
Driving JIRA Adoption Through Simple ConfigurationDriving JIRA Adoption Through Simple Configuration
Driving JIRA Adoption Through Simple Configuration
 
Combining Operations and Support: Incident Management with Atlassian
Combining Operations and Support: Incident Management with AtlassianCombining Operations and Support: Incident Management with Atlassian
Combining Operations and Support: Incident Management with Atlassian
 
A Habit of Innovation
A Habit of InnovationA Habit of Innovation
A Habit of Innovation
 
Alex Balazs on Scalable Services at GlueCon 2016
Alex Balazs on Scalable Services at GlueCon 2016Alex Balazs on Scalable Services at GlueCon 2016
Alex Balazs on Scalable Services at GlueCon 2016
 
Entreprenariat feminin 2016
Entreprenariat feminin 2016Entreprenariat feminin 2016
Entreprenariat feminin 2016
 
Transforming Organizations – from the Perspective of a Technical Mind #GHC15
Transforming Organizations – from the Perspective of a Technical Mind #GHC15Transforming Organizations – from the Perspective of a Technical Mind #GHC15
Transforming Organizations – from the Perspective of a Technical Mind #GHC15
 
The Real Value of Small Business Apps
The Real Value of Small Business AppsThe Real Value of Small Business Apps
The Real Value of Small Business Apps
 
Dispatches From the New Economy: The On-Demand Workforce
Dispatches From the New Economy: The On-Demand WorkforceDispatches From the New Economy: The On-Demand Workforce
Dispatches From the New Economy: The On-Demand Workforce
 

Ähnlich wie Intuit CTOF 2011 - Netflix for Mobile in the Cloud

Cloud Computing Service & Market Trends in Korea
Cloud Computing Service & Market Trends in KoreaCloud Computing Service & Market Trends in Korea
Cloud Computing Service & Market Trends in KoreaFanny Lee
 
Clearing the air on Cloud Computing
Clearing the air on Cloud ComputingClearing the air on Cloud Computing
Clearing the air on Cloud ComputingKarthik Sankar
 
AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...
AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...
AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...Amazon Web Services
 
[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스
[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스
[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스Amazon Web Services Korea
 
Netflix in the Cloud at SV Forum
Netflix in the Cloud at SV ForumNetflix in the Cloud at SV Forum
Netflix in the Cloud at SV ForumAdrian Cockcroft
 
A non-technical introduction to Cloud Computing
A non-technical introduction to Cloud ComputingA non-technical introduction to Cloud Computing
A non-technical introduction to Cloud ComputingWilliam Pourmajidi
 
Telco-OTT: infrastructure challenges and solutions
Telco-OTT: infrastructure challenges and solutionsTelco-OTT: infrastructure challenges and solutions
Telco-OTT: infrastructure challenges and solutionsVictor Pascual Ávila
 
VMWare and SoftLayer Hybrid IT
VMWare and SoftLayer Hybrid ITVMWare and SoftLayer Hybrid IT
VMWare and SoftLayer Hybrid ITBenjamin Shrive
 
Communication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/SubscribeCommunication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/SubscribeSumant Tambe
 
Communication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/SubscribeCommunication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/SubscribeReal-Time Innovations (RTI)
 
Presentation_ISDC 2014_Jonathan Wisler_SoftLayer
Presentation_ISDC 2014_Jonathan Wisler_SoftLayerPresentation_ISDC 2014_Jonathan Wisler_SoftLayer
Presentation_ISDC 2014_Jonathan Wisler_SoftLayerIBM Switzerland
 
Cloud Spotting 2017: An overview of cloud computing
Cloud Spotting 2017: An overview of cloud computingCloud Spotting 2017: An overview of cloud computing
Cloud Spotting 2017: An overview of cloud computingPatrice Kerremans
 
AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...
AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...
AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...AWS Germany
 
Optimizing Cloud Computing with IPv6
Optimizing Cloud Computing with IPv6Optimizing Cloud Computing with IPv6
Optimizing Cloud Computing with IPv6John Rhoton
 
cloud computing
cloud computingcloud computing
cloud computingHyderabad
 
Effective IoT System on Openstack
Effective IoT System on OpenstackEffective IoT System on Openstack
Effective IoT System on OpenstackTakashi Kajinami
 
Zenko @Cloud Native Foundation London Meetup March 6th 2018
Zenko @Cloud Native Foundation London Meetup March 6th 2018Zenko @Cloud Native Foundation London Meetup March 6th 2018
Zenko @Cloud Native Foundation London Meetup March 6th 2018Laure Vergeron
 

Ähnlich wie Intuit CTOF 2011 - Netflix for Mobile in the Cloud (20)

Cloud Computing Service & Market Trends in Korea
Cloud Computing Service & Market Trends in KoreaCloud Computing Service & Market Trends in Korea
Cloud Computing Service & Market Trends in Korea
 
Clearing the air on Cloud Computing
Clearing the air on Cloud ComputingClearing the air on Cloud Computing
Clearing the air on Cloud Computing
 
AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...
AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...
AWS for Media: Content in the Cloud, Miles Ward (Amazon Web Services) and Bha...
 
[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스
[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스
[AWS에서의 미디어 및 엔터테인먼트] 클라우드에서의 브로드캐스팅 서비스
 
Netflix in the Cloud at SV Forum
Netflix in the Cloud at SV ForumNetflix in the Cloud at SV Forum
Netflix in the Cloud at SV Forum
 
A non-technical introduction to Cloud Computing
A non-technical introduction to Cloud ComputingA non-technical introduction to Cloud Computing
A non-technical introduction to Cloud Computing
 
Telco-OTT: infrastructure challenges and solutions
Telco-OTT: infrastructure challenges and solutionsTelco-OTT: infrastructure challenges and solutions
Telco-OTT: infrastructure challenges and solutions
 
VMWare and SoftLayer Hybrid IT
VMWare and SoftLayer Hybrid ITVMWare and SoftLayer Hybrid IT
VMWare and SoftLayer Hybrid IT
 
Communication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/SubscribeCommunication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/Subscribe
 
Communication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/SubscribeCommunication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/Subscribe
 
Presentation_ISDC 2014_Jonathan Wisler_SoftLayer
Presentation_ISDC 2014_Jonathan Wisler_SoftLayerPresentation_ISDC 2014_Jonathan Wisler_SoftLayer
Presentation_ISDC 2014_Jonathan Wisler_SoftLayer
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
Cloud Spotting 2017: An overview of cloud computing
Cloud Spotting 2017: An overview of cloud computingCloud Spotting 2017: An overview of cloud computing
Cloud Spotting 2017: An overview of cloud computing
 
AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...
AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...
AWS Summit Berlin 2013 - doo - A Scalable Sync Framework Infrastructure based...
 
Optimizing Cloud Computing with IPv6
Optimizing Cloud Computing with IPv6Optimizing Cloud Computing with IPv6
Optimizing Cloud Computing with IPv6
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
 
cloud computing
cloud computingcloud computing
cloud computing
 
Effective IoT System on Openstack
Effective IoT System on OpenstackEffective IoT System on Openstack
Effective IoT System on Openstack
 
LightEdge Partner Cloud Overview
LightEdge Partner Cloud Overview LightEdge Partner Cloud Overview
LightEdge Partner Cloud Overview
 
Zenko @Cloud Native Foundation London Meetup March 6th 2018
Zenko @Cloud Native Foundation London Meetup March 6th 2018Zenko @Cloud Native Foundation London Meetup March 6th 2018
Zenko @Cloud Native Foundation London Meetup March 6th 2018
 

Mehr von 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)
Building High Fidelity Data Streams (QCon London 2023)Sid Anand
 
Building & Operating High-Fidelity Data Streams - QCon Plus 2021
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
 
Low Latency Fraud Detection & Prevention
Low Latency Fraud Detection & PreventionLow Latency Fraud Detection & Prevention
Low Latency Fraud Detection & PreventionSid Anand
 
YOW! Data Keynote (2021)
YOW! Data Keynote (2021)YOW! Data Keynote (2021)
YOW! Data Keynote (2021)Sid Anand
 
Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)Sid Anand
 
Building Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache AirflowBuilding Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache AirflowSid Anand
 
Cloud Native Predictive Data Pipelines (micro talk)
Cloud Native Predictive Data Pipelines (micro talk)Cloud Native Predictive Data Pipelines (micro talk)
Cloud Native Predictive Data Pipelines (micro talk)Sid Anand
 
Cloud Native Data Pipelines (GoTo Chicago 2017)
Cloud Native Data Pipelines (GoTo Chicago 2017)Cloud Native Data Pipelines (GoTo Chicago 2017)
Cloud Native Data Pipelines (GoTo Chicago 2017)Sid Anand
 
Cloud Native Data Pipelines (DataEngConf SF 2017)
Cloud Native Data Pipelines (DataEngConf SF 2017)Cloud Native Data Pipelines (DataEngConf SF 2017)
Cloud Native Data Pipelines (DataEngConf SF 2017)Sid Anand
 
Cloud Native Data Pipelines (in Eng & Japanese) - QCon Tokyo
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 TokyoSid 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)
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)Sid Anand
 
Introduction to Apache Airflow - Data Day Seattle 2016
Introduction to Apache Airflow - Data Day Seattle 2016Introduction to Apache Airflow - Data Day Seattle 2016
Introduction to Apache Airflow - Data Day Seattle 2016Sid Anand
 
Airflow @ Agari
Airflow @ Agari Airflow @ Agari
Airflow @ Agari Sid Anand
 
Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Resilient Predictive Data Pipelines (GOTO Chicago 2016)Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Resilient Predictive Data Pipelines (GOTO Chicago 2016)Sid Anand
 
Resilient Predictive Data Pipelines (QCon London 2016)
Resilient Predictive Data Pipelines (QCon London 2016)Resilient Predictive Data Pipelines (QCon London 2016)
Resilient Predictive Data Pipelines (QCon London 2016)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)
Software Developer and Architecture @ LinkedIn (QCon SF 2014)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)
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)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)
Building a Modern Website for Scale (QCon NY 2013)Sid Anand
 
Hands On with Maven
Hands On with MavenHands On with Maven
Hands On with MavenSid Anand
 
Learning git
Learning gitLearning git
Learning gitSid Anand
 

Mehr von Sid Anand (20)

Building High Fidelity Data Streams (QCon London 2023)
Building High Fidelity Data Streams (QCon London 2023)Building High Fidelity Data Streams (QCon London 2023)
Building High Fidelity Data Streams (QCon London 2023)
 
Building & Operating High-Fidelity Data Streams - QCon Plus 2021
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
 
Low Latency Fraud Detection & Prevention
Low Latency Fraud Detection & PreventionLow Latency Fraud Detection & Prevention
Low Latency Fraud Detection & Prevention
 
YOW! Data Keynote (2021)
YOW! Data Keynote (2021)YOW! Data Keynote (2021)
YOW! Data Keynote (2021)
 
Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)Big Data, Fast Data @ PayPal (YOW 2018)
Big Data, Fast Data @ PayPal (YOW 2018)
 
Building Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache AirflowBuilding Better Data Pipelines using Apache Airflow
Building Better Data Pipelines using Apache Airflow
 
Cloud Native Predictive Data Pipelines (micro talk)
Cloud Native Predictive Data Pipelines (micro talk)Cloud Native Predictive Data Pipelines (micro talk)
Cloud Native Predictive Data Pipelines (micro talk)
 
Cloud Native Data Pipelines (GoTo Chicago 2017)
Cloud Native Data Pipelines (GoTo Chicago 2017)Cloud Native Data Pipelines (GoTo Chicago 2017)
Cloud Native Data Pipelines (GoTo Chicago 2017)
 
Cloud Native Data Pipelines (DataEngConf SF 2017)
Cloud Native Data Pipelines (DataEngConf SF 2017)Cloud Native Data Pipelines (DataEngConf SF 2017)
Cloud Native Data Pipelines (DataEngConf SF 2017)
 
Cloud Native Data Pipelines (in Eng & Japanese) - QCon Tokyo
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
 
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
Cloud Native Data Pipelines (QCon Shanghai & Tokyo 2016)
 
Introduction to Apache Airflow - Data Day Seattle 2016
Introduction to Apache Airflow - Data Day Seattle 2016Introduction to Apache Airflow - Data Day Seattle 2016
Introduction to Apache Airflow - Data Day Seattle 2016
 
Airflow @ Agari
Airflow @ Agari Airflow @ Agari
Airflow @ Agari
 
Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Resilient Predictive Data Pipelines (GOTO Chicago 2016)Resilient Predictive Data Pipelines (GOTO Chicago 2016)
Resilient Predictive Data Pipelines (GOTO Chicago 2016)
 
Resilient Predictive Data Pipelines (QCon London 2016)
Resilient Predictive Data Pipelines (QCon London 2016)Resilient Predictive Data Pipelines (QCon London 2016)
Resilient Predictive Data Pipelines (QCon London 2016)
 
Software Developer and Architecture @ LinkedIn (QCon SF 2014)
Software Developer and Architecture @ LinkedIn (QCon SF 2014)Software Developer and Architecture @ LinkedIn (QCon SF 2014)
Software Developer and Architecture @ LinkedIn (QCon SF 2014)
 
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
LinkedIn's Segmentation & Targeting Platform (Hadoop Summit 2013)
 
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)
Building a Modern Website for Scale (QCon NY 2013)
 
Hands On with Maven
Hands On with MavenHands On with Maven
Hands On with Maven
 
Learning git
Learning gitLearning git
Learning git
 

Kürzlich hochgeladen

Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 

Kürzlich hochgeladen (20)

Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 

Intuit CTOF 2011 - Netflix for Mobile in the Cloud

  • 1. mobile first Netflix for Mobile in the Cloud May 2011 Siddharth “Sid” Anand
  • 2. A Very Special Thanks to … … the following folks for helping with the presentation: •  Ashish Khivesara – IPhone/Android UI Development •  Daniel Jacobson – Director of API •  Shyan-Ming Perng – PS3/IPad/IPhone UI Development •  Mike Cohen – API Development •  Yury Izrailevsky – Director of Cloud Systems … the entire company for pulling together to make Netflix for Mobile in the Cloud a reality! mobile first Intuit Proprietary & Confidential
  • 3. mobile first Our Business No Longer Going Postal!
  • 4. Our Business In 1999 • Netflix launched DVD rentals-by-mail – Unlimited rentals for a flat monthly fee – No due dates – No late fees – No shipping or handling fees – First attempt to target long-tail rental market • We can ship any of >100K titles, whereas Brick-and- Mortar are constrained by how much space they can rent - Only 1-2k rentals mobile first Intuit Proprietary & Confidential
  • 5. Our Business Fast Forward to 2008 •  Netflix forecasts the gradual end of the DVD and starts switching to Movie Streaming •  Upside? –  We spend $500MM to $600MM annually on US Postage for DVD mailing –  Streaming a movie is a fraction of the cost of shipping a DVD –  Easier to craft a business model for international expansion mobile first Intuit Proprietary & Confidential
  • 6. Our Business •  We have 22M+ subscribers in the US and Canada •  May account for 20% of US peak downstream bandwidth usage •  A top CDN user in the US •  Limelight, Akamai, & Level 3 deliver images and movies •  Grew subscribers 2008-2010 by partnering with device makers mobile first Intuit Proprietary & Confidential
  • 7. Our Business •  A world of connected devices, some mobile mobile first Intuit Proprietary & Confidential
  • 8. mobile first Our Problem
  • 9. Our Problem • Circa late 2008, Netflix had a single data center –  Single-point-of-failure (a.k.a. SPOF) –  Approaching limits on cooling, power, space, traffic capacity • Alternatives – Build more data centers – Outsource the majority of our capacity planning and scale out • Allows us to focus on core competencies mobile first Intuit Proprietary & Confidential
  • 10. Our Problem’s Solution! • Winner : Outsource the majority of our capacity planning and scale out – Leverage a leading Infrastructure-as-a-service provider • Amazon Web Services • Footnote : As it has taken us a while (i.e. ~2+ years) to realize our vision of running on the cloud, we needed an interim solution to handle growth – We did build a second data center along the way • We did outgrow it soon afterward! mobile first Intuit Proprietary & Confidential
  • 11. mobile first Cloud Migration Strategy What to Migrate? How?
  • 12. Cloud Migration Strategy • Components – Applications and Software Infrastructure – Data • Migration Considerations – Security • PII and PCI DSS stays in our DC, rest can go to the cloud – Web Scale – this goes! mobile first Intuit Proprietary & Confidential
  • 13. Cloud Migration Strategy mobile first Intuit Proprietary & Confidential
  • 14. Cloud Migration Strategy mobile first Intuit Proprietary & Confidential
  • 15. Cloud Migration Strategy mobile first Intuit Proprietary & Confidential
  • 16. Cloud Migration Strategy Examples of Applications that can be moved •  Web Scale – Personalized Video Discovery (e.g. browsing movie lists on the IPhone) – Streaming Video Playback (e.g. watching a movie on the IPhone) •  Off-line – Video Encoding • Encode and store in final form in CDN • ~40 encodes from a single mezzanine : bit rates, screen resolutions, codecs, etc… •  Infrastructure – Log Capture & Analysis, Monitoring, Alerting mobile first Intuit Proprietary & Confidential
  • 17. Cloud Migration Strategy Examples of Data that can be moved •  Video-centric data – Critics’ and Users’ reviews – Video Metadata (e.g. director, actors, plot description, etc…) •  User-video-centric data – some of our largest data sets – Video Queue – Watched History – Video Ratings (i.e. a 5-star rating system) – Video Playback Metadata (e.g. streaming bookmarks, activity logs) mobile first Intuit Proprietary & Confidential
  • 18. mobile first Cloud Migration What Does the Cloud Offer?
  • 19. Cloud Migration “The cloud lets its users focus on delivering differentiating business value instead of wasting valuable resources on the undifferentiated heavy lifting that makes up most of IT infrastructure.” - Werner Vogels, CTO, Amazon August 25, 2009, ‘All Things Distributed’ mobile first Intuit Proprietary & Confidential
  • 20. mobile first AWS Services We Use Messaging Services
  • 21. Messaging Services Data Center Amazon Web Services WebLogic Messaging SQS (Message Queues) SNS (Message Topics) mobile first Intuit Proprietary & Confidential
  • 22. Messaging Services •  Use-cases for Message Queues –  System Dependency Decoupling •  e.g. Decouple Cloud and DC applications -  When user adds a movie to the instant queue in the cloud, we send the update back to the DC for DC-resident applications -  Message consumers are decoupled from message producers –  Fire-and-forget Write Scalability •  e.g. Application Logging -  Write to BI storage -  Consumers can process messages at their own rate mobile first Intuit Proprietary & Confidential
  • 23. Messaging Services •  SQS –  Infinitely Scalable but does not guarantee in-order message delivery –  Never worry about overflowing the queue and crashing or becoming unresponsive! •  Often a problem with enterprise messaging systems –  Messages are automatically dropped from queues after a maximum of 4 days mobile first Intuit Proprietary & Confidential
  • 24. Messaging Services •  SQS –  API for Queue Management •  CreateQueue •  ListQueues •  DeleteQueue – API for Message Management •  SendMessage (up to 64K in size) •  ReceiveMessage (up to 10 messages in a batch) •  DeleteMessage (a.k.a. ACK Message) •  SetVisibilityTimeout – after which, a message becomes visible to other ReceivedMessage calls mobile first Intuit Proprietary & Confidential
  • 25. mobile first AWS Services We Use Persistence
  • 26. Persistence Data Center Amazon Web Services Oracle SimpleDB S3 Cassandra mobile first Intuit Proprietary & Confidential
  • 27. Persistence An ideal storage solution should have the following features: þ Hosted þ Managed Distribution Model þ Works in AWS þ AP from CAP þ Handles a majority of use-cases accessing high-growth, high-traffic data þ Specifically, key access by customer id, movie id, or both mobile first Intuit Proprietary & Confidential
  • 28. Persistence • We picked SimpleDB and S3 – SimpleDB was targeted as the AP equivalent of our RDBMS databases in our Data Center – S3 was used for data sets where item or row data exceeded SimpleDB limits and could be looked up purely by a single key (i.e. does not require secondary indices and complex query semantics) • Video encodes • Streaming device activity logs (i.e. CLOB, BLOB, etc…) • Compressed (old) Rental History mobile first Intuit Proprietary & Confidential
  • 29. Persistence Terminology SimpleDB Hash Table Relational Databases Domain Hash Table Table Item Entry Row Item Name Key Mandatory Primary Key Attribute Part of the Entry Column Value mobile first Intuit Proprietary & Confidential
  • 30. Persistence Soccer Players Key Value Nickname = Wizard of Teams = Leeds United, ab12ocs12v9 First Name = Harold Last Name = Kewell Oz Liverpool, Galatasaray Nickname = Czech Teams = Lazio, b24h3b3403b First Name = Pavel Last Name = Nedved Cannon Juventus Teams = Sporting, Manchester United, cc89c9dc892 First Name = Cristiano Last Name = Ronaldo Real Madrid SimpleDB’s salient characteristics •  SimpleDB offers a range of consistency options •  SimpleDB domains are sparse and schema-less •  The Key and all Attributes are indexed •  Each item must have a unique Key •  An item contains a set of Attributes •  Each Attribute has a name •  Each Attribute has a set of values •  All data is stored as UTF-8 character strings (i.e. no support for types such as numbers or dates) mobile first Intuit Proprietary & Confidential
  • 31. Persistence What does the API look like? •  Manage Domains – CreateDomain – DeleteDomain – ListDomains – DomainMetaData •  Access Data – Retrieving Data • GetAttributes – returns a single item • Select – returns multiple items using SQL syntax – Writing Data • PutAttributes – put single item • BatchPutAttributes – put multiple items – Removing Data • DeleteAttributes – delete single item • BatchDeleteAttributes – delete multiple items mobile first Intuit Proprietary & Confidential
  • 32. mobile first AWS Services We Use Compute
  • 33. Compute Data Center Amazon Web Services Hadoop EMR & S3 Servers EC2 – heavy use of reserved instances Citrix Load Balancer •  Elastic Load Balancer (ELB) •  Cloud Watch •  Auto Scale Group (ASG) mobile first Intuit Proprietary & Confidential
  • 34. mobile first Filling the Gaps Netflix’s Undifferentiated Heavy Lifting
  • 35. Filling the Gaps AWS provides various IAAS offerings, but applications need more! AWS IAAS • Persistence ? •  SimpleDB, RDS, S3, EBS • Compute Netflix • EC2, EMR, ASG, ELB Applications • Monitoring • CloudWatch mobile first Intuit Proprietary & Confidential
  • 36. Filling the Gaps AWS provides various IAAS offerings, but applications need more! Hence the need for Netflix’s infrastructure team to bridge the gap! AWS IAAS Netflix Platform • Persistence •  Platform.jar •  SimpleDB, RDS, S3, •  Middle-tier Load EBS Balancing • Load Handling Netflix •  Discovery • EC2, EMR, ASG, ELB Applications • Monitoring •  Encryption Services • CloudWatch •  Caching •  Configuration •  GeoLocation mobile first Intuit Proprietary & Confidential
  • 37. Discovery & MTLB AWS ELB Netflix edge services (e.g. API) API EC2 EC2 ? Netflix mid-tier services (e.g. Q or Merch services) EC2 EC2 EC2 EC2 Q Merch AWS IAAS Simple S3 SQS DB mobile first Intuit Proprietary & Confidential
  • 38. Discovery & MTLB AWS ELB Netflix edge services (e.g. API) API EC2 EC2 Netflix Platform Middle Tier Load Balancer Discovery Netflix mid-tier services (e.g. Q or Merch services) w/ platform.jar EC2 EC2 EC2 EC2 Q Merch AWS IAAS Simple S3 SQS DB mobile first Intuit Proprietary & Confidential
  • 39. mobile first Building Mobile Apps Apple IPhone
  • 40. Mobile App Development Strategy •  We develop mobile web pages that run in Web Kit where available. Examples include: •  PS3 •  IPhone/IPad/etc… •  Enables •  A/B Testing •  Fast Deployments •  Leveraging code across devices (e.g. IPhone & Android) mobile first Intuit Proprietary & Confidential
  • 41. IPhone • When you click on the app, you see the splash screen • It will disappear once we start loading the Home Page mobile first Intuit Proprietary & Confidential
  • 42. IPhone •  Home Page Loading: Fetch 1.  Time service 2.  User resource 3.  Rental History for resume feature 4.  Fetch up to 12 Lists of Movies 1.  Get 3 movies for the top-most list (e.g. Children & Family) 2.  After it loads, fetch 3 movies for remaining 11 lists in parallel – slows scrolling 5.  Bulk rating request for all titles to fetch the star bars •  Average 11 API calls on Home Page mobile first Intuit Proprietary & Confidential
  • 43. IPhone •  User Interaction Reasoning (in red) •  Rental History for resume feature •  Promotes fastest movie launch •  Fetch up to 12 Lists of Movies •  Get 3 movies for the top-most list (e.g. Children & Family) •  After it loads, fetch 3 movies for remaining 11 lists in parallel •  Remaining 11 may slow scrolling •  Bulk rating request for all titles to fetch the star bars •  Absence is least obvious to user mobile first Intuit Proprietary & Confidential
  • 44. mobile first Tips & Tricks Apple IPhone
  • 45. Tips & Tricks - Prefetching mobile first Intuit Proprietary & Confidential
  • 46. Tips & Tricks – Prefetching •  On any list (e.g. Home) page, we prefetch •  Box Shot Image •  Title •  Ratings (i.e. star bar) •  Year, MPAA rating, Duration •  Synopsis •  On the Movie Display Page, we load/reload •  “In Q” button status •  Play or Resume button status •  Cast/Director •  Episode List (for TV Shows) or Simliars (for Movies) mobile first Intuit Proprietary & Confidential
  • 47. Tips & Tricks – Memory Savings • To save memory, when we navigate away from the MDP, we unload the following: •  Similars (for Movies) •  Episodes (for TV Shows) •  We keep the Cast & Director •  On future visit to this MDP, we will reload the following: •  Anything not loaded •  Button status for both buttons mobile first Intuit Proprietary & Confidential
  • 48. Tips & Tricks – Bandwidth Savings •  Server responses are GZIP compressed –  Processor speed ample enough to handle the decompression –  Less power hungry than wireless 3G transfers of uncompressed data –  Rules of thumb, keep payload 20-100KB per call mobile first Intuit Proprietary & Confidential
  • 49. Tips & Tricks – Bandwidth Savings •  Revising Netflix REST Model – Too chatty – Too many round-trips –  Or it returns data that is not needed • A lot of processing is needed to skip extraneous data •  Moving to a more structured query language (e.g. SQL-like) • This will reduce memory, bandwidth use, and round-trips • Great blog entry on the topic from Netflix’s Director of API @daniel_jacobson –  http://techblog.netflix.com/2011/02/redesigning-netflix- api.html mobile first Intuit Proprietary & Confidential
  • 50. Tips & Tricks – Image Sprites •  Image Sprites are used to reduce memory and bandwidth by giving the user the impression of viewing different images, when in fact there is only one –  Ratings Star Bars –  Footer (i.e. Home, Genres, Search, & Q) mobile first Intuit Proprietary & Confidential
  • 51. Tips & Tricks – Image Sprites With Some Markup <span title="1 of 5" class="rating r1"><img width="0" height="1" src="sprite.gif" alt=""/>1 out of 5</span> <span title="2 of 5" class="rating r2"><img width="0" height="1" src="sprite.gif" alt=""/>2 out of 5</span> ….. And Some CSS .rating { position: relative; height: 1.6em; ….. mobile first Intuit Proprietary & Confidential
  • 52. Tips & Tricks – Security •  All traffic is over secure channels – https – Deny Man-in-the-Middle attacks •  All requests are signed with a time –  Use Netflix Time Service to avoid clock- skew –  Avoids replay attacks mobile first Intuit Proprietary & Confidential
  • 54. Netflix IPhone App Demo •  Link can be found at the location below: –  http://blog.netflix.com/2010/08/netflix-now-available-on-your-iphone.html mobile first Intuit Proprietary & Confidential
  • 55. mobile first Questions?