SlideShare a Scribd company logo
1 of 33
Cassandra for Barcodes, Products and Scans:

                       The Backend Infrastructure at Scandit




Christof Roduner
Co-founder and COO
christof@scandit.com   Link: NoSQL concept and data model

@scandit
www.scandit.com                                             February 1, 2012
AGENDA
2




       About Scandit

       Requirements

       Apache Cassandra

       Scandit backend
WHAT IS SCANDIT?
3



    Scandit provides developers best-in-class tools to
    build, analyze and monetize product-centric apps.




      IDENTIFY           ANALYZE            MONETIZE
       Products         User Interest         Apps
ANALYZE:
    THE SCANALYTICS PLATFORM
4

       Tool for app publishers
       App-specific usage statistics

       Insights into consumer behavior:
           What do users scan?
                Product categories? Groceries, electronics, books, cosmetics, …?
           Where do users scan?
                At home? Or while in a retail store?
           Top products and brands

       Identify new opportunities:
           Customer engagement
           Product interest
           Cross-selling and up-selling
BACKEND REQUIREMENTS
5

       Product database
            Many millions of products
            Many different data sources
            Curation of product data (filtering, etc.)


       Analysis of scans
            Accept and store high volumes of scans
            Generate statistics over extended time periods
            Correlate with product data


       Provide reports to developers
BACKEND DESIGN GOALS
6

       Scalability
            High-volume storage
            High-volume throughput
            Support large number of concurrent client requests (app)


       Availability

       Low maintenance
WHICH DATABASE?
7


    Apache Cassandra
     Large, distributed key-value store (DHT)

     «NoSQL» Polyglot Persistence

     Inspired by:

            Amazon’s Dynamo distributed storage system
            Google’s BigTable data model
       Originally developed at Facebook
            Inbox search
WHY DID WE CHOOSE IT?
8

       Looked very fast
            Even when data is much larger than RAM


       Performs well in write-heavy environment

       Proven scalability
            Without downtime

       Tunable replication

       Easy to run and maintain
            No sharding
            All nodes are the same - no coordinators, masters, slaves, …

       Data model
            YMMV…
WHAT YOU HAVE TO GIVE UP
9


       Joins
       Referential integrity
       Transactions
       Expressive query language
       Consistency (tunable, but…)

       Limited support for:
            Schema
            Secondary indices
CASSANDRA DATA MODEL
10

                                         Disclaimer: I tend to say «hash»
                                         when I mean «dictionary, map,
        Column families                 associative array» (Can you tell
                                         my favorite language?)
        Rows
        Columns

        (Supercolumns)
             We’ll skip them - Cassandra developers don’t like
              them
COLUMNS AND ROWS
11

        Column:
             Is a name-value pair
             row_key, CF, column, timestamp and value

        Row:
             Has exactly one key
             Contains any number of columns
             Columns are always automatically sorted by their name

        Column family:
             A collection of any number of rows (!)
             Has a name
             «Like a table»
EXAMPLE COLUMN FAMILY
12

     "users": {
                                                                Row with key «christof»
         "christof": {
             "email": "christof@scandit.com",
             "phone": "123-456-7890"
         }

         "moritz": {
             "email": "moritz@scandit.com",
                                                              Two columns, automatically
             "web": "www.example.com"                           sorted by their names
         }                                                        («email», «web»)
     }



        A column family «users» containing two rows
        Columns can be different in every row
             First row has a column named «phone», second row does not
        Rows can have many columns
             You can add millions of them
DATA IN COLUMN NAMES
13

        Column names can be used to store data
        Frequent pattern in Cassandra
        Takes advantage of column sorting
     "logins": {

         "christof": {
             "2012-01-29   16:22:30   +0100":   "208.115.113.86",
             "2012-01-30   07:48:03   +0100":   "66.249.66.183",
             "2012-01-30   18:06:55   +0100":   "208.115.111.70",
             "2012-01-31   12:37:26   +0100":   "66.249.66.183"
         }

         "moritz": {
             "2012-01-23 01:12:49 +0100": "205.209.190.116"
         }

     }
SCHEMA AND DATA TYPES
14

        Schema is optional
        Data type can be defined for:
             Keys
             The values of all columns with a given name
             The column names in a CF
        By default, data type BLOB is used


        Data Types
             BLOB (default)                     UUID
             ASCII text                         Integer (arbitrary length)
             UTF8 text                          Float
             Timestamp                          Double
             Boolean                            Decimal
CLUSTER ORGANIZATION
15

                                      Range 1-64,
                   Node 1           stored on node 2
                   Token 0




       Node 4                  Node 2
      Token 192               Token 64




                   Node 3            Range 65-128,
                  Token 128         stored on node 3
STORING A ROW
16
                                                                    Range 1-64,
 1.   Calculate md5 hash for row key                              stored on node 2
      Example: md5(“foobar") = 48
                                                        Node 1
                                                        Token 0
 2.   Determine data range for hash
      Example: 48 lies within range 1-64


 3.   Store row on node responsible
                                            Node 4                       Node 2
      for range
                                           Token 192                    Token 64
      Example: store on node 2



                                                        Node 3
                                                       Token 128
                                                                   Range 65-128,
                                                                  stored on node 3
IMPLICATIONS
17


        Cluster automatically balanced
             Load is shared equally between nodes
             No hotspots

        Scaling out?
             Easy
             Divide data ranges by adding more nodes
             Cluster rebalances itself automatically

        Range queries not possible
             You can’t retrieve «all rows from A-C»
             Rows are not stored in their «natural» order
             Rows are stored in order of their md5 hashes
IF YOU NEED RANGE QUERIES…
18


     Option 1: «Order Preserving Partitioner» (OPP)
        OPP determines node based on a row’s key instead of its hash
        Don’t use it…
             Manually balancing a cluster is hard
             Hotspots
             Balancing cluster for one column family creates hotspot for another


     Option 2: Use columns instead of rows
        Columns are always sorted
        Rows can store millions of columns
REPLICATION
19


                                                                   Replica 1
    Tunable replication factor                                     of row
     (RF)                                               Node 1     «foobar»
                                                        Token 0
    RF > 1: rows are automatically
     replicated to next RF-1 nodes

    Tunable replication strategy                                   Node 2
                                            Node 4
         «Ensure two replicas in                                  Token 64
          different data centers, racks,   Token 192
          etc.»



                                                        Node 3
                                                       Token 128   Replica 2
                                                                    of row
                                                                   «foobar»
CLIENT ACCESS
20

        Clients can send read and write
         requests to any node
             This node will act as
              coordinator
                                                          Node 1         Replica 1
        Coordinator forwards request                     Token 0         of row
         to nodes where data resides                                     «foobar»




              Client                          Node 4                  Node 2
                                             Token 192               Token 64



          Request:
                                                                       Replica 2
          insert(                                         Node 3        of row
            "foobar": { "email": "fb@example.com" }      Token 128     «foobar»
          )
CONSISTENCY LEVELS
21

        For all requests, clients can set a consistency level (CL)

        For writes:
             CL defines how many replicas must be written before
              «success» is returned to client

        For reads:
             CL defines how many replicas must respond before result is
              returned to client

        Consistency levels:
             ONE
             QUORUM
             ALL
             … (data center-aware levels)
INCONSISTENT DATA
22

        Example scenario:
             Replication factor 2
             Two existing replica for row «foobar»
             Client overwrites existing columns in «foobar»
             Replica 2 is down

        What happens:
             Column is updated in replica 1, but not replica 2 (even with CL=ALL !)

        Timestamps to the rescue
             Every column has a timestamp
             Timestamps are supplied by clients
             Upon read, column with latest timestamp wins

        →Use NTP
PREVENTING INCONSISTENCIES
23

        Read repair

        Hinted handoff

        Anti entropy
RETRIEVING DATA (API)
24
        At a row level, you can…
             Get all rows
             Get a single row by specifying its key
             Get a number of rows by specifying their keys
             Get a range of rows
                   Only with OPP, strongly discouraged

        At a column level, you can…
             Get all columns
             Get a single column by specifying its name
             Get a number of columns by specifying their names
             Get a range of columns by specifying the name of the first and
              last column

        Again: no ranges of rows
CASSANDRA QUERY LANGUAGE
     (CQL)
25



     UPDATE users SET
         "email" = "christof@scandit.com",
         "phone" = "123-456-7890"
         WHERE KEY = "christof";



     "users": {

         "christof": {
             "email": "christof@scandit.com",
             "phone": "123-456-7890"
         }

         "moritz": {
             "email": "moritz@scandit.com",
             "web": "www.example.com"
         }

     }
CASSANDRA QUERY LANGUAGE
     (CQL)
26




     SELECT * FROM users WHERE KEY = "christof";




     "users": {

         "christof": {
             "email": "christof@scandit.com",
             "phone": "123-456-7890"
         }

         "moritz": {
             "email": "moritz@scandit.com",
             "web": "www.example.com"
         }

     }
CASSANDRA QUERY LANGUAGE
     (CQL)
27


     SELECT FIRST 3 "2012-01-30 00:00:00 +0100" ..
            "2012-01-31 23:59:59 +0100"
         FROM logins
         WHERE KEY = "christof";


     "logins": {

         "christof": {
             "2012-01-29   16:22:30   +0100":   "208.115.113.86",
             "2012-01-30   07:48:03   +0100":   "66.249.66.183",
             "2012-01-30   18:06:55   +0100":   "208.115.111.70",
             "2012-01-31   12:37:26   +0100":   "66.249.66.183"
             "2012-02-09   10:27:28   +0100":   "218.315.37.21",
         }

         "moritz": {
             "2012-01-23 01:12:49 +0100": "205.209.190.116"
         }

     }
SECONDARY INDICES
28

        Secondary indices can be defined for (single) columns

        Secondary indices only support equality predicate (=)
         in queries

        Each node maintains index for data it owns
             When indexed column is queried, request must be forwarded
              to all nodes
             Sometimes better to manually maintain your own index
PRODUCTION EXPERIENCE
29

        No stability issues

        Very fast

        Language bindings don’t have the same quality
             Out of sync, bugs

        Data model is a mental twist

        Design-time decisions sometimes hard to change

        Rudimentary access control
TRYING OUT CASSANDRA
30


        DataStax website
             Company founded by Cassandra developers
             Provides
                   Documentation
                   Amazon Machine Image


        Apache website

        Mailing lists
CLUSTER AT SCANDIT
31


        Several nodes in two data centers

        Linux machines

        Identical setup on every node
             Allows for easy failover
NODE ARCHITECTURE
32
     from mobile apps and web browsers




                                            Phusion Passenger
                                              mod_passenger

                                            Website & REST API
                                            Ruby on Rails, Rack




                                                                  to other nodes
THANK YOU!

www.scandit.com

More Related Content

Similar to Cassandra 2012 scandit

Apache Cassandra, part 1 – principles, data model
Apache Cassandra, part 1 – principles, data modelApache Cassandra, part 1 – principles, data model
Apache Cassandra, part 1 – principles, data modelAndrey Lomakin
 
Lightning fast genomics with Spark, Adam and Scala
Lightning fast genomics with Spark, Adam and ScalaLightning fast genomics with Spark, Adam and Scala
Lightning fast genomics with Spark, Adam and ScalaAndy Petrella
 
NoSQL - Cassandra & MongoDB.pptx
NoSQL -  Cassandra & MongoDB.pptxNoSQL -  Cassandra & MongoDB.pptx
NoSQL - Cassandra & MongoDB.pptxNaveen Kumar
 
Cassandra for Sysadmins
Cassandra for SysadminsCassandra for Sysadmins
Cassandra for SysadminsNathan Milford
 
On Rails with Apache Cassandra
On Rails with Apache CassandraOn Rails with Apache Cassandra
On Rails with Apache CassandraStu Hood
 
Apache Cassandra @Geneva JUG 2013.02.26
Apache Cassandra @Geneva JUG 2013.02.26Apache Cassandra @Geneva JUG 2013.02.26
Apache Cassandra @Geneva JUG 2013.02.26Benoit Perroud
 
Outside The Box With Apache Cassnadra
Outside The Box With Apache CassnadraOutside The Box With Apache Cassnadra
Outside The Box With Apache CassnadraEric Evans
 
Storage cassandra
Storage   cassandraStorage   cassandra
Storage cassandraPL dream
 
Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...
Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...
Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...buildacloud
 
Deep Dive into Cassandra
Deep Dive into CassandraDeep Dive into Cassandra
Deep Dive into CassandraBrent Theisen
 
Cassandra for Ruby/Rails Devs
Cassandra for Ruby/Rails DevsCassandra for Ruby/Rails Devs
Cassandra for Ruby/Rails DevsTyler Hobbs
 
Introduction to Cassandra
Introduction to CassandraIntroduction to Cassandra
Introduction to CassandraHanborq Inc.
 
Design Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational DatabasesDesign Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational Databasesguestdfd1ec
 
DBVersity MongoDB Online Training Presentations
DBVersity MongoDB Online Training PresentationsDBVersity MongoDB Online Training Presentations
DBVersity MongoDB Online Training PresentationsSrinivas Mutyala
 
Clustered Columnstore - Deep Dive
Clustered Columnstore - Deep DiveClustered Columnstore - Deep Dive
Clustered Columnstore - Deep DiveNiko Neugebauer
 
2014 05-07-fr - add dev series - session 6 - deploying your application-2
2014 05-07-fr - add dev series - session 6 - deploying your application-22014 05-07-fr - add dev series - session 6 - deploying your application-2
2014 05-07-fr - add dev series - session 6 - deploying your application-2MongoDB
 

Similar to Cassandra 2012 scandit (20)

Apache Cassandra, part 1 – principles, data model
Apache Cassandra, part 1 – principles, data modelApache Cassandra, part 1 – principles, data model
Apache Cassandra, part 1 – principles, data model
 
Lightning fast genomics with Spark, Adam and Scala
Lightning fast genomics with Spark, Adam and ScalaLightning fast genomics with Spark, Adam and Scala
Lightning fast genomics with Spark, Adam and Scala
 
NoSQL - Cassandra & MongoDB.pptx
NoSQL -  Cassandra & MongoDB.pptxNoSQL -  Cassandra & MongoDB.pptx
NoSQL - Cassandra & MongoDB.pptx
 
Cassandra for Sysadmins
Cassandra for SysadminsCassandra for Sysadmins
Cassandra for Sysadmins
 
On Rails with Apache Cassandra
On Rails with Apache CassandraOn Rails with Apache Cassandra
On Rails with Apache Cassandra
 
Avro intro
Avro introAvro intro
Avro intro
 
Apache Cassandra @Geneva JUG 2013.02.26
Apache Cassandra @Geneva JUG 2013.02.26Apache Cassandra @Geneva JUG 2013.02.26
Apache Cassandra @Geneva JUG 2013.02.26
 
Outside The Box With Apache Cassnadra
Outside The Box With Apache CassnadraOutside The Box With Apache Cassnadra
Outside The Box With Apache Cassnadra
 
Cassandra no sql ecosystem
Cassandra no sql ecosystemCassandra no sql ecosystem
Cassandra no sql ecosystem
 
Storage cassandra
Storage   cassandraStorage   cassandra
Storage cassandra
 
Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...
Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...
Building Reliable Cloud Storage with Riak and CloudStack - Andy Gross, Chief ...
 
Deep Dive into Cassandra
Deep Dive into CassandraDeep Dive into Cassandra
Deep Dive into Cassandra
 
Cassandra for Ruby/Rails Devs
Cassandra for Ruby/Rails DevsCassandra for Ruby/Rails Devs
Cassandra for Ruby/Rails Devs
 
Introduction to Cassandra
Introduction to CassandraIntroduction to Cassandra
Introduction to Cassandra
 
Design Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational DatabasesDesign Patterns for Distributed Non-Relational Databases
Design Patterns for Distributed Non-Relational Databases
 
Brisk meetup
Brisk meetupBrisk meetup
Brisk meetup
 
DBVersity MongoDB Online Training Presentations
DBVersity MongoDB Online Training PresentationsDBVersity MongoDB Online Training Presentations
DBVersity MongoDB Online Training Presentations
 
Clustered Columnstore - Deep Dive
Clustered Columnstore - Deep DiveClustered Columnstore - Deep Dive
Clustered Columnstore - Deep Dive
 
MongoDB 3.0
MongoDB 3.0 MongoDB 3.0
MongoDB 3.0
 
2014 05-07-fr - add dev series - session 6 - deploying your application-2
2014 05-07-fr - add dev series - session 6 - deploying your application-22014 05-07-fr - add dev series - session 6 - deploying your application-2
2014 05-07-fr - add dev series - session 6 - deploying your application-2
 

Recently uploaded

SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
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
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
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
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
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
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 

Recently uploaded (20)

SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
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
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
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
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
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
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 

Cassandra 2012 scandit

  • 1. Cassandra for Barcodes, Products and Scans: The Backend Infrastructure at Scandit Christof Roduner Co-founder and COO christof@scandit.com Link: NoSQL concept and data model @scandit www.scandit.com February 1, 2012
  • 2. AGENDA 2  About Scandit  Requirements  Apache Cassandra  Scandit backend
  • 3. WHAT IS SCANDIT? 3 Scandit provides developers best-in-class tools to build, analyze and monetize product-centric apps. IDENTIFY ANALYZE MONETIZE Products User Interest Apps
  • 4. ANALYZE: THE SCANALYTICS PLATFORM 4  Tool for app publishers  App-specific usage statistics  Insights into consumer behavior:  What do users scan?  Product categories? Groceries, electronics, books, cosmetics, …?  Where do users scan?  At home? Or while in a retail store?  Top products and brands  Identify new opportunities:  Customer engagement  Product interest  Cross-selling and up-selling
  • 5. BACKEND REQUIREMENTS 5  Product database  Many millions of products  Many different data sources  Curation of product data (filtering, etc.)  Analysis of scans  Accept and store high volumes of scans  Generate statistics over extended time periods  Correlate with product data  Provide reports to developers
  • 6. BACKEND DESIGN GOALS 6  Scalability  High-volume storage  High-volume throughput  Support large number of concurrent client requests (app)  Availability  Low maintenance
  • 7. WHICH DATABASE? 7 Apache Cassandra  Large, distributed key-value store (DHT)  «NoSQL» Polyglot Persistence  Inspired by:  Amazon’s Dynamo distributed storage system  Google’s BigTable data model  Originally developed at Facebook  Inbox search
  • 8. WHY DID WE CHOOSE IT? 8  Looked very fast  Even when data is much larger than RAM  Performs well in write-heavy environment  Proven scalability  Without downtime  Tunable replication  Easy to run and maintain  No sharding  All nodes are the same - no coordinators, masters, slaves, …  Data model  YMMV…
  • 9. WHAT YOU HAVE TO GIVE UP 9  Joins  Referential integrity  Transactions  Expressive query language  Consistency (tunable, but…)  Limited support for:  Schema  Secondary indices
  • 10. CASSANDRA DATA MODEL 10 Disclaimer: I tend to say «hash» when I mean «dictionary, map,  Column families associative array» (Can you tell my favorite language?)  Rows  Columns  (Supercolumns)  We’ll skip them - Cassandra developers don’t like them
  • 11. COLUMNS AND ROWS 11  Column:  Is a name-value pair  row_key, CF, column, timestamp and value  Row:  Has exactly one key  Contains any number of columns  Columns are always automatically sorted by their name  Column family:  A collection of any number of rows (!)  Has a name  «Like a table»
  • 12. EXAMPLE COLUMN FAMILY 12 "users": { Row with key «christof» "christof": { "email": "christof@scandit.com", "phone": "123-456-7890" } "moritz": { "email": "moritz@scandit.com", Two columns, automatically "web": "www.example.com" sorted by their names } («email», «web») }  A column family «users» containing two rows  Columns can be different in every row  First row has a column named «phone», second row does not  Rows can have many columns  You can add millions of them
  • 13. DATA IN COLUMN NAMES 13  Column names can be used to store data  Frequent pattern in Cassandra  Takes advantage of column sorting "logins": { "christof": { "2012-01-29 16:22:30 +0100": "208.115.113.86", "2012-01-30 07:48:03 +0100": "66.249.66.183", "2012-01-30 18:06:55 +0100": "208.115.111.70", "2012-01-31 12:37:26 +0100": "66.249.66.183" } "moritz": { "2012-01-23 01:12:49 +0100": "205.209.190.116" } }
  • 14. SCHEMA AND DATA TYPES 14  Schema is optional  Data type can be defined for:  Keys  The values of all columns with a given name  The column names in a CF  By default, data type BLOB is used  Data Types  BLOB (default)  UUID  ASCII text  Integer (arbitrary length)  UTF8 text  Float  Timestamp  Double  Boolean  Decimal
  • 15. CLUSTER ORGANIZATION 15 Range 1-64, Node 1 stored on node 2 Token 0 Node 4 Node 2 Token 192 Token 64 Node 3 Range 65-128, Token 128 stored on node 3
  • 16. STORING A ROW 16 Range 1-64, 1. Calculate md5 hash for row key stored on node 2 Example: md5(“foobar") = 48 Node 1 Token 0 2. Determine data range for hash Example: 48 lies within range 1-64 3. Store row on node responsible Node 4 Node 2 for range Token 192 Token 64 Example: store on node 2 Node 3 Token 128 Range 65-128, stored on node 3
  • 17. IMPLICATIONS 17  Cluster automatically balanced  Load is shared equally between nodes  No hotspots  Scaling out?  Easy  Divide data ranges by adding more nodes  Cluster rebalances itself automatically  Range queries not possible  You can’t retrieve «all rows from A-C»  Rows are not stored in their «natural» order  Rows are stored in order of their md5 hashes
  • 18. IF YOU NEED RANGE QUERIES… 18 Option 1: «Order Preserving Partitioner» (OPP)  OPP determines node based on a row’s key instead of its hash  Don’t use it…  Manually balancing a cluster is hard  Hotspots  Balancing cluster for one column family creates hotspot for another Option 2: Use columns instead of rows  Columns are always sorted  Rows can store millions of columns
  • 19. REPLICATION 19 Replica 1  Tunable replication factor of row (RF) Node 1 «foobar» Token 0  RF > 1: rows are automatically replicated to next RF-1 nodes  Tunable replication strategy Node 2 Node 4  «Ensure two replicas in Token 64 different data centers, racks, Token 192 etc.» Node 3 Token 128 Replica 2 of row «foobar»
  • 20. CLIENT ACCESS 20  Clients can send read and write requests to any node  This node will act as coordinator Node 1 Replica 1  Coordinator forwards request Token 0 of row to nodes where data resides «foobar» Client Node 4 Node 2 Token 192 Token 64 Request: Replica 2 insert( Node 3 of row "foobar": { "email": "fb@example.com" } Token 128 «foobar» )
  • 21. CONSISTENCY LEVELS 21  For all requests, clients can set a consistency level (CL)  For writes:  CL defines how many replicas must be written before «success» is returned to client  For reads:  CL defines how many replicas must respond before result is returned to client  Consistency levels:  ONE  QUORUM  ALL  … (data center-aware levels)
  • 22. INCONSISTENT DATA 22  Example scenario:  Replication factor 2  Two existing replica for row «foobar»  Client overwrites existing columns in «foobar»  Replica 2 is down  What happens:  Column is updated in replica 1, but not replica 2 (even with CL=ALL !)  Timestamps to the rescue  Every column has a timestamp  Timestamps are supplied by clients  Upon read, column with latest timestamp wins  →Use NTP
  • 23. PREVENTING INCONSISTENCIES 23  Read repair  Hinted handoff  Anti entropy
  • 24. RETRIEVING DATA (API) 24  At a row level, you can…  Get all rows  Get a single row by specifying its key  Get a number of rows by specifying their keys  Get a range of rows  Only with OPP, strongly discouraged  At a column level, you can…  Get all columns  Get a single column by specifying its name  Get a number of columns by specifying their names  Get a range of columns by specifying the name of the first and last column  Again: no ranges of rows
  • 25. CASSANDRA QUERY LANGUAGE (CQL) 25 UPDATE users SET "email" = "christof@scandit.com", "phone" = "123-456-7890" WHERE KEY = "christof"; "users": { "christof": { "email": "christof@scandit.com", "phone": "123-456-7890" } "moritz": { "email": "moritz@scandit.com", "web": "www.example.com" } }
  • 26. CASSANDRA QUERY LANGUAGE (CQL) 26 SELECT * FROM users WHERE KEY = "christof"; "users": { "christof": { "email": "christof@scandit.com", "phone": "123-456-7890" } "moritz": { "email": "moritz@scandit.com", "web": "www.example.com" } }
  • 27. CASSANDRA QUERY LANGUAGE (CQL) 27 SELECT FIRST 3 "2012-01-30 00:00:00 +0100" .. "2012-01-31 23:59:59 +0100" FROM logins WHERE KEY = "christof"; "logins": { "christof": { "2012-01-29 16:22:30 +0100": "208.115.113.86", "2012-01-30 07:48:03 +0100": "66.249.66.183", "2012-01-30 18:06:55 +0100": "208.115.111.70", "2012-01-31 12:37:26 +0100": "66.249.66.183" "2012-02-09 10:27:28 +0100": "218.315.37.21", } "moritz": { "2012-01-23 01:12:49 +0100": "205.209.190.116" } }
  • 28. SECONDARY INDICES 28  Secondary indices can be defined for (single) columns  Secondary indices only support equality predicate (=) in queries  Each node maintains index for data it owns  When indexed column is queried, request must be forwarded to all nodes  Sometimes better to manually maintain your own index
  • 29. PRODUCTION EXPERIENCE 29  No stability issues  Very fast  Language bindings don’t have the same quality  Out of sync, bugs  Data model is a mental twist  Design-time decisions sometimes hard to change  Rudimentary access control
  • 30. TRYING OUT CASSANDRA 30  DataStax website  Company founded by Cassandra developers  Provides  Documentation  Amazon Machine Image  Apache website  Mailing lists
  • 31. CLUSTER AT SCANDIT 31  Several nodes in two data centers  Linux machines  Identical setup on every node  Allows for easy failover
  • 32. NODE ARCHITECTURE 32 from mobile apps and web browsers Phusion Passenger mod_passenger Website & REST API Ruby on Rails, Rack to other nodes