SlideShare a Scribd company logo
Aerospike aer . o . spike [air-oh- spahyk]
noun, 1. tip of a rocket that enhances speed and stability
KVS Data Access
Topics
➤ Structured v. Unstructured Data
➤ Database Hierarchy and Definitions
➤ Data Access Patterns
© 2013 Aerospike. All rights reserved. | Records | Pg. 3
Structured Databases
For performance, many early databases were structured.
Every table has a defined schema. Changes to the schema
required a DBA, possibly a Change Control Board (CCB).
© 2013 Aerospike. All rights reserved. | Records | Pg. 4
id
(10 bytes)
lname
(40 bytes)
fname
(40 bytes)
address
(60 bytes)
city
(20 bytes)
state
(20 bytes)
Phone
(20 bytes)
1 Able John 123 First New York NY 2128675309
2 Baker Kris 234 Second UNKNOWN UNKNOWN UNKNOWN
3 Charlie Larry 345 Third Seattle WA 4258675309
4 Delta Moe 456 Fourth Austin TX 7378675309
Pros
+ ACID
+ Familiarity
Cons
- Requires pre-defined
schema
- Changes to schema can
be traumatic, limiting
dynamic application
development.
- Poor durability on SSD
© 2013 Aerospike. All rights reserved. | Records | Pg. 5
Structured Databases
Unstructured Databases
Unstructured databases do not have a pre-defined schema
and bins may exist in some records, but not in others.
Different kinds of records may be mixed in sets.
© 2013 Aerospike. All rights reserved. | Records | Pg. 6
Id lname fname address city state Phone Size
1 Able John 123 First New York NY +81 2128 6753 909 45 bytes
2 Baker Kris 234 Second 20 bytes
3 Charlie 8 bytes
4 Delta Moe 456 Fourth Austin TX 7378675309 47 bytes
Pros
+ No predefined schema
+ Addition of new bins can
be done from client
+ Addition of new sets (like
tables) can be done from
client
+ Makes most of sequential
write speed of disks
Cons
- Difficult to predict
object size
- Updates to a record
require an entire record
re-write (AS solution is
LDTs)
© 2013 Aerospike. All rights reserved. | Records | Pg. 7
Aerospike
What Do You Want From A Distributed DB?
• Hide the complexity of distribution.
• Linear scalability.
• Better service availability.
© 2013 Aerospike. All rights reserved. Pg. 8
Smart Partition Architecture
© 2013 Aerospike. All rights reserved. Pg. 9
Cluster creates a map of how data is
distributed, called a partition map.
Combine features from other architectures to create a map.
Smart Partitioning
• Every key is hashed using the
RIPEMD160 hash function
• The creates a fixed 160 bits (20
bytes) string.
• 12 bits of this hash are used to
identify the partition id
• There are 4096 partitions
• Are distributed among the nodes
PaikPaik
182023kh15hh3kahdjsh182023kh15hh3kahdjsh
Partition
ID
Master
node
Replica
node
… 1 4
1820 2 3
1821 3 2
4096 4 1
© 2013 Aerospike. All rights reserved. Pg. 10
Aerospike uses a partition table
Smart Partitioning
For simplicity, let’s take a 3 node cluster with
only 9 partitions and a replication factor of 2.
© 2013 Aerospike. All rights reserved. Pg. 11
© 2013 Aerospike. All rights reserved. | Records | Pg. 12
Database Hierarchy
Term Definition Notes
Cluster An Aerospike cluster services a single
database service.
While a company may deploy multiple clusters,
applications will only connect to a single cluster.
Node A single instance of an Aerospike
database.
For production deployments, a host should only
have a single node. For development, you may
place more than one node on a host.
Namespace An area of storage related to the media.
Can be either RAM or SSD based.
Similar to a “database” or “tablespaces” in
relational databases.
Set An unstructured grouping of data that
have some commonality.
Similar to “tables” in a relational database, but do
not require a schema.
Record A key and all data related to that key. Similar to a “row” in a relational database.
Bin One part of data related to a key. Bins in Aerospike are typed, but the same bin in
different records can have different types. Bins
are not required. Single bin optimizations are
allowed.
(Large Data Type) LDT LDTs provide functions for storing
arbitrarily large amounts of data
without requiring the database to read
the entire record.
Most commonly the data stored in LDTs will be
time series data, but this is not a requirement.
This feature is still in development.
Data Hierarchy
Cluster
Node 1 Node 2 Node 3
Namespace
Set
Record
Record BinBin
© 2013 Aerospike. All rights reserved. | Records | Pg. 13
Bin
Cluster
➤ Will be distributed on different nodes.
➤ Management of cluster is automated, so
no manual rebalancing or reconfiguration
is necessary.
➤ Will contain one or more namespaces.
Adding/removing namespaces requires a
cluster-wide restart.
© 2013 Aerospike. All rights reserved. | Records | Pg. 14
Nodes
➤ Each node is assumed to be identical.
➤ Data (and their associated traffic) will be
evenly balanced across the nodes.
➤ Big differences between nodes imply a
problem.
➤ Node capacity should take into account
node failure patterns.
© 2013 Aerospike. All rights reserved. | Records | Pg. 15
Namespaces
➤ Are associated with the storage media:
 Hybrid (ram for index and SSD for data)
 RAM + disk for persistence only
 RAM only
➤ Each can be configured with their own:
 replication factor (change requires a cluster-wide restart)
 RAM and disk configuration
 settings for high-watermark
 default TTL (if you have data that must never be
automatically deleted, you must set this to “0”)
© 2013 Aerospike. All rights reserved. | Records | Pg. 16
Sets
➤ Similar to “tables” in relational
databases.
➤ Sets are optional.
➤ Schema does not have to be pre-defined.
➤ In order to request a record, you must
know its set.
➤ Scans can be done across a set
© 2013 Aerospike. All rights reserved. | Records | Pg. 17
Records
➤ Similar to a row in a relational database.
➤ All data for a record will be stored on the
same node. This is true even for LDTs.
➤ Any change to a record will result in a
complete write of the entire record,
unless using LDTs.
© 2013 Aerospike. All rights reserved. | Records | Pg. 18
Bins
➤ Values Are typed. Current types are:
 Simple (integer, string, blob [language specific])
 Complex (list, map)
 Large Data Types (LDTs)
➤ A single bin may be updated by the client.
 Increment
 Replacement
 User Defined Function (UDF)
© 2013 Aerospike. All rights reserved. | Records | Pg. 19
Data Hierarchy
Cluster
Node 1 Node 2 Node 3
Namespace
Set
Record
Record BinBin
© 2013 Aerospike. All rights reserved. | Records | Pg. 20
Bin
Data Access Patterns
 Read
 Write
 Update
© 2013 Aerospike. All rights reserved. | Records | Pg. 21
Accessing An Object In Aerospike
Reading A Standard Data Type With SSDs
© 2013 Aerospike. All rights reserved. | Records | Pg. 22
128 KB Blocks
Master Node
SSD (DATA)
Client
RAM (Index)
1) Client finds Master Node from
partition map.
2) Client makes read request to
Master Node.
3) Master Node finds data location
from index in RAM.
4) Master Node reads entire object
from SSD. This is true even if only
reading bin.
5) Master Node returns value.
Index reference
Accessing An Object In Aerospike
Writing A New Standard Data Type Record With SSDs
© 2013 Aerospike. All rights reserved. | Records | Pg. 23
128 KB Blocks
Master Node
SSD (DATA)
Client
RAM (Index)
1) Client finds Master Node from
partition map.
2) Client makes write request to
Master Node.
3) Master Node make an entry indo
index (in RAM) and queues write in
temporary write buffer.
4) Master Node coordinates write
with replica nodes (not shown).
5) Master Node returns success to
client.
6) Master Node asynchronously writes
data in 128 KB blocks.
7) Index in RAM points to location on
SSD.
Asynchronous write
Accessing An Object In Aerospike
Updating A Standard Data Type Record With SSDs
© 2013 Aerospike. All rights reserved. | Records | Pg. 24
128 KB Blocks
Master Node
SSD (DATA)
Client
RAM (Index)
1) Client finds Master Node from
partition map.
2) Client makes update request to
Master Node.
3) Master Node reads the existing
record (if using multiple bins)
4) Master Node queues write of
updated record in a temporary
write buffer
5) Master Node coordinates write
with replica nodes (not shown).
6) Master Node returns success to
client.
7) Master Node asynchronously writes
data in 128 KB blocks.
8) Index in RAM points to new
location on SSD.
Asynchronous write
Old
New
New
Accessing An Object In Aerospike
Keeping It Efficient
© 2013 Aerospike. All rights reserved. | Records | Pg. 25
128 KB Blocks
Master Node
SSD (DATA)
Client
RAM (Index)
Index reference
Minimize
the
number of
network
round trips
Minimize
the
number of
network
round trips
Minimize
the
network
bandwidth
Minimize
the
network
bandwidth Minimize
SSD
reads/writ
es
Minimize
SSD
reads/writ
es
Issues With Standard Data Types
➤ Record size is limited by block size (128
KB by default).
➤ Even a small update to a record results in
a complete record re-write.
© 2013 Aerospike. All rights reserved. | Records | Pg. 26
Example Use Case
To compare different systems, let’s take a
look at a standard task.
➤Find out if an object has some value
➤If it does, update the record and return a
value
© 2013 Aerospike. All rights reserved. | Records | Pg. 27
Example: Simple KVS Method
Value is one large string JSON object.
Example record:
➤Key=user_id
➤Value={“name” : “john”,
“dob” : “08-20-1970” ,
“gender” : “male” ,
“likes” : “cars,computers,goats”}
Business logic is that if the person is older than 18 years old, put them into campaign “bluesky”.
1.Client will request entire value from the node
2.Node reads entire value from disk
3.Node sends entire value to client
4.Client parses data and check logic on age
5.Client updates record with new value
Value={“name” : “john”,
“dob” : “08-20-1970” ,
“gender” : “male” ,
“likes” : “cars,computers,goats” ,
“campaigns” : “bluesky”}
6.Node writes entire value to disk
© 2013 Aerospike. All rights reserved. | Records | Pg. 28
Client Node Storage
Read (all)
Read (all)
Read (all)
Read (all)
Write (all)
Write (all)
Return
status
Example: KVS with Bins
Values are stored in bins
Example record:
➤Key=user_id
➤Value= “name” = “john”
“dob” = “08-20-1970”
“gender” = “male”
“likes” = “cars,computers,goats”
Business logic is that if the person is older than 18 years old, put them into campaign “bluesky”.
1.Client will request dob and campaign bins from the node
2.Node reads entire value from storage
3.Node sends only dob and campaigns to client
4.Client checks logic on age
5.Client updates record with new bin
1.Node writes entire value to disk. Node must read value first.
© 2013 Aerospike. All rights reserved. | Records | Pg. 29
Client Node Storage
Read (bin)
Read (all)
Read (all)
Read (bin)
Write (bin)
Write (all)
Read (all)
Return
status
Example: Using UDFs
Values are stored in bins
Example record:
➤Key=user_id
➤Value= “name” = “john”
“dob” = “08-20-1970”
“gender” = “male”
“likes” = “cars,computers,goats”
Business logic is that if the person is older than 18 years old, put them into campaign “bluesky”.
1.Client makes UDF request
2.Node reads entire value from storage
3.Node applies UDF on returned data
4.Nodes writes data
5.Node returns status
© 2013 Aerospike. All rights reserved. | Records | Pg. 30
Client Node Storage
UDF
Read (all)
Read (all)
Return
status
Write (all)
Write (all)
Example: Connecting to a cluster
© 2013 Aerospike. All rights reserved. | Records | Pg. 31
Policy contains operational
defaults like timeout
Policy contains operational
defaults like timeout
Seed hostSeed host Seed portSeed port
Do some workDo some work
Disconnect from the clusterDisconnect from the cluster
List of hostsList of hosts
Example: Get/Put operations
© 2013 Aerospike. All rights reserved. | Records | Pg. 32
Setup some preliminary
values
Setup some preliminary
values
Write a record with two
bin values
Write a record with two
bin values
Read a record with all bin
values
Read a record with all bin
values
Example: Increment/Decrement
operation
© 2013 Aerospike. All rights reserved. | Records | Pg. 33
Setup some preliminary
values
Setup some preliminary
values
Add operation – avoids the
read-add-write cycle
Add operation – avoids the
read-add-write cycle
Example: Touch operation
© 2013 Aerospike. All rights reserved. | Records | Pg. 34
Setup some preliminary
values
Setup some preliminary
values
Write a record with a 2 second
expiry
Write a record with a 2 second
expiry
Change it to a 5 second expiryChange it to a 5 second expiry

More Related Content

What's hot

How to Choose the Right Database for Your Workloads
How to Choose the Right Database for Your WorkloadsHow to Choose the Right Database for Your Workloads
How to Choose the Right Database for Your WorkloadsInfluxData
 
Present of Raid and Its Type
Present of Raid and Its TypePresent of Raid and Its Type
Present of Raid and Its TypeUsama ahmad
 
Caching solutions with Redis
Caching solutions   with RedisCaching solutions   with Redis
Caching solutions with RedisGeorge Platon
 
Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison
Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison
Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison Severalnines
 
An Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAn Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAli MasudianPour
 
Under the Hood of a Shard-per-Core Database Architecture
Under the Hood of a Shard-per-Core Database ArchitectureUnder the Hood of a Shard-per-Core Database Architecture
Under the Hood of a Shard-per-Core Database ArchitectureScyllaDB
 
Democratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDemocratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDatabricks
 
Redis overview for Software Architecture Forum
Redis overview for Software Architecture ForumRedis overview for Software Architecture Forum
Redis overview for Software Architecture ForumChristopher Spring
 
How Development Teams Cut Costs with ScyllaDB.pdf
How Development Teams Cut Costs with ScyllaDB.pdfHow Development Teams Cut Costs with ScyllaDB.pdf
How Development Teams Cut Costs with ScyllaDB.pdfScyllaDB
 
GC free coding in @Java presented @Geecon
GC free coding in @Java presented @GeeconGC free coding in @Java presented @Geecon
GC free coding in @Java presented @GeeconPeter Lawrey
 
Apache Iceberg: An Architectural Look Under the Covers
Apache Iceberg: An Architectural Look Under the CoversApache Iceberg: An Architectural Look Under the Covers
Apache Iceberg: An Architectural Look Under the CoversScyllaDB
 
Paris Redis Meetup Introduction
Paris Redis Meetup IntroductionParis Redis Meetup Introduction
Paris Redis Meetup IntroductionGregory Boissinot
 
Ceph Month 2021: RADOS Update
Ceph Month 2021: RADOS UpdateCeph Month 2021: RADOS Update
Ceph Month 2021: RADOS UpdateCeph Community
 
Redis - Usability and Use Cases
Redis - Usability and Use CasesRedis - Usability and Use Cases
Redis - Usability and Use CasesFabrizio Farinacci
 
Adventures with the ClickHouse ReplacingMergeTree Engine
Adventures with the ClickHouse ReplacingMergeTree EngineAdventures with the ClickHouse ReplacingMergeTree Engine
Adventures with the ClickHouse ReplacingMergeTree EngineAltinity Ltd
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to RedisArnab Mitra
 

What's hot (20)

How to Choose the Right Database for Your Workloads
How to Choose the Right Database for Your WorkloadsHow to Choose the Right Database for Your Workloads
How to Choose the Right Database for Your Workloads
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to Redis
 
Present of Raid and Its Type
Present of Raid and Its TypePresent of Raid and Its Type
Present of Raid and Its Type
 
Introduction to redis
Introduction to redisIntroduction to redis
Introduction to redis
 
Caching solutions with Redis
Caching solutions   with RedisCaching solutions   with Redis
Caching solutions with Redis
 
Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison
Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison
Galera Cluster for MySQL vs MySQL (NDB) Cluster: A High Level Comparison
 
An Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAn Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL database
 
Under the Hood of a Shard-per-Core Database Architecture
Under the Hood of a Shard-per-Core Database ArchitectureUnder the Hood of a Shard-per-Core Database Architecture
Under the Hood of a Shard-per-Core Database Architecture
 
Democratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDemocratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized Platform
 
Redis overview for Software Architecture Forum
Redis overview for Software Architecture ForumRedis overview for Software Architecture Forum
Redis overview for Software Architecture Forum
 
How Development Teams Cut Costs with ScyllaDB.pdf
How Development Teams Cut Costs with ScyllaDB.pdfHow Development Teams Cut Costs with ScyllaDB.pdf
How Development Teams Cut Costs with ScyllaDB.pdf
 
GC free coding in @Java presented @Geecon
GC free coding in @Java presented @GeeconGC free coding in @Java presented @Geecon
GC free coding in @Java presented @Geecon
 
Apache Iceberg: An Architectural Look Under the Covers
Apache Iceberg: An Architectural Look Under the CoversApache Iceberg: An Architectural Look Under the Covers
Apache Iceberg: An Architectural Look Under the Covers
 
Paris Redis Meetup Introduction
Paris Redis Meetup IntroductionParis Redis Meetup Introduction
Paris Redis Meetup Introduction
 
Ceph Month 2021: RADOS Update
Ceph Month 2021: RADOS UpdateCeph Month 2021: RADOS Update
Ceph Month 2021: RADOS Update
 
Redis
RedisRedis
Redis
 
Redis - Usability and Use Cases
Redis - Usability and Use CasesRedis - Usability and Use Cases
Redis - Usability and Use Cases
 
Redis and it's data types
Redis and it's data typesRedis and it's data types
Redis and it's data types
 
Adventures with the ClickHouse ReplacingMergeTree Engine
Adventures with the ClickHouse ReplacingMergeTree EngineAdventures with the ClickHouse ReplacingMergeTree Engine
Adventures with the ClickHouse ReplacingMergeTree Engine
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to Redis
 

Similar to Aerospike: Key Value Data Access

fdocuments.in_aerospike-key-value-data-access.ppt
fdocuments.in_aerospike-key-value-data-access.pptfdocuments.in_aerospike-key-value-data-access.ppt
fdocuments.in_aerospike-key-value-data-access.pptyashsharma863914
 
Predictable Big Data Performance in Real-time
Predictable Big Data Performance in Real-timePredictable Big Data Performance in Real-time
Predictable Big Data Performance in Real-timeAerospike, Inc.
 
Lecture storage-buffer
Lecture storage-bufferLecture storage-buffer
Lecture storage-bufferKlaas Krona
 
CS 542 Putting it all together -- Storage Management
CS 542 Putting it all together -- Storage ManagementCS 542 Putting it all together -- Storage Management
CS 542 Putting it all together -- Storage ManagementJ Singh
 
Elasticsearch for Logs & Metrics - a deep dive
Elasticsearch for Logs & Metrics - a deep diveElasticsearch for Logs & Metrics - a deep dive
Elasticsearch for Logs & Metrics - a deep diveSematext Group, Inc.
 
Distributing Data The Aerospike Way
Distributing Data The Aerospike WayDistributing Data The Aerospike Way
Distributing Data The Aerospike WayAerospike, Inc.
 
What a Modern Database Enables_Srini Srinivasan.pdf
What a Modern Database Enables_Srini Srinivasan.pdfWhat a Modern Database Enables_Srini Srinivasan.pdf
What a Modern Database Enables_Srini Srinivasan.pdfAerospike, Inc.
 
Storage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewStorage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewAlan McSweeney
 
Mass storage structurefinal
Mass storage structurefinalMass storage structurefinal
Mass storage structurefinalmarangburu42
 
Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...
Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...
Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...DataStax
 
Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...
Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...
Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...Aerospike
 
Ch14 OS
Ch14 OSCh14 OS
Ch14 OSC.U
 
Ceph at salesforce ceph day external presentation
Ceph at salesforce   ceph day external presentationCeph at salesforce   ceph day external presentation
Ceph at salesforce ceph day external presentationSameer Tiwari
 
You Snooze You Lose or How to Win in Ad Tech?
You Snooze You Lose or How to Win in Ad Tech?You Snooze You Lose or How to Win in Ad Tech?
You Snooze You Lose or How to Win in Ad Tech?Aerospike, Inc.
 
Aerospike AdTech Gets Hacked in Lower Manhattan
Aerospike AdTech Gets Hacked in Lower ManhattanAerospike AdTech Gets Hacked in Lower Manhattan
Aerospike AdTech Gets Hacked in Lower ManhattanAerospike
 
Accelerating hbase with nvme and bucket cache
Accelerating hbase with nvme and bucket cacheAccelerating hbase with nvme and bucket cache
Accelerating hbase with nvme and bucket cacheDavid Grier
 

Similar to Aerospike: Key Value Data Access (20)

fdocuments.in_aerospike-key-value-data-access.ppt
fdocuments.in_aerospike-key-value-data-access.pptfdocuments.in_aerospike-key-value-data-access.ppt
fdocuments.in_aerospike-key-value-data-access.ppt
 
Predictable Big Data Performance in Real-time
Predictable Big Data Performance in Real-timePredictable Big Data Performance in Real-time
Predictable Big Data Performance in Real-time
 
Lecture storage-buffer
Lecture storage-bufferLecture storage-buffer
Lecture storage-buffer
 
CS 542 Putting it all together -- Storage Management
CS 542 Putting it all together -- Storage ManagementCS 542 Putting it all together -- Storage Management
CS 542 Putting it all together -- Storage Management
 
Elasticsearch for Logs & Metrics - a deep dive
Elasticsearch for Logs & Metrics - a deep diveElasticsearch for Logs & Metrics - a deep dive
Elasticsearch for Logs & Metrics - a deep dive
 
Distributing Data The Aerospike Way
Distributing Data The Aerospike WayDistributing Data The Aerospike Way
Distributing Data The Aerospike Way
 
What a Modern Database Enables_Srini Srinivasan.pdf
What a Modern Database Enables_Srini Srinivasan.pdfWhat a Modern Database Enables_Srini Srinivasan.pdf
What a Modern Database Enables_Srini Srinivasan.pdf
 
Storage, San And Business Continuity Overview
Storage, San And Business Continuity OverviewStorage, San And Business Continuity Overview
Storage, San And Business Continuity Overview
 
Mass storage structurefinal
Mass storage structurefinalMass storage structurefinal
Mass storage structurefinal
 
Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...
Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...
Building Data Pipelines with SMACK: Designing Storage Strategies for Scale an...
 
Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...
Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...
Handling Increasing Load and Reducing Costs Using Aerospike NoSQL Database - ...
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 
Ch14 OS
Ch14 OSCh14 OS
Ch14 OS
 
OSCh14
OSCh14OSCh14
OSCh14
 
OS_Ch14
OS_Ch14OS_Ch14
OS_Ch14
 
Ceph at salesforce ceph day external presentation
Ceph at salesforce   ceph day external presentationCeph at salesforce   ceph day external presentation
Ceph at salesforce ceph day external presentation
 
You Snooze You Lose or How to Win in Ad Tech?
You Snooze You Lose or How to Win in Ad Tech?You Snooze You Lose or How to Win in Ad Tech?
You Snooze You Lose or How to Win in Ad Tech?
 
Aerospike AdTech Gets Hacked in Lower Manhattan
Aerospike AdTech Gets Hacked in Lower ManhattanAerospike AdTech Gets Hacked in Lower Manhattan
Aerospike AdTech Gets Hacked in Lower Manhattan
 
Raid
RaidRaid
Raid
 
Accelerating hbase with nvme and bucket cache
Accelerating hbase with nvme and bucket cacheAccelerating hbase with nvme and bucket cache
Accelerating hbase with nvme and bucket cache
 

More from Aerospike, Inc.

2017 DB Trends for Powering Real-Time Systems of Engagement
2017 DB Trends for Powering Real-Time Systems of Engagement2017 DB Trends for Powering Real-Time Systems of Engagement
2017 DB Trends for Powering Real-Time Systems of EngagementAerospike, Inc.
 
WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...
WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...
WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...Aerospike, Inc.
 
Leveraging Big Data with Hadoop, NoSQL and RDBMS
Leveraging Big Data with Hadoop, NoSQL and RDBMSLeveraging Big Data with Hadoop, NoSQL and RDBMS
Leveraging Big Data with Hadoop, NoSQL and RDBMSAerospike, Inc.
 
Using Databases and Containers From Development to Deployment
Using Databases and Containers  From Development to DeploymentUsing Databases and Containers  From Development to Deployment
Using Databases and Containers From Development to DeploymentAerospike, Inc.
 
01282016 Aerospike-Docker webinar
01282016 Aerospike-Docker webinar01282016 Aerospike-Docker webinar
01282016 Aerospike-Docker webinarAerospike, Inc.
 
There are 250 Database products, are you running the right one?
There are 250 Database products, are you running the right one?There are 250 Database products, are you running the right one?
There are 250 Database products, are you running the right one?Aerospike, Inc.
 
The role of NoSQL in the Next Generation of Financial Informatics
The role of NoSQL in the Next Generation of Financial InformaticsThe role of NoSQL in the Next Generation of Financial Informatics
The role of NoSQL in the Next Generation of Financial InformaticsAerospike, Inc.
 
Tectonic Shift: A New Foundation for Data Driven Business
Tectonic Shift: A New Foundation for Data Driven BusinessTectonic Shift: A New Foundation for Data Driven Business
Tectonic Shift: A New Foundation for Data Driven BusinessAerospike, Inc.
 
How to Get a Game Changing Performance Advantage with Intel SSDs and Aerospike
How to Get a Game Changing Performance Advantage with Intel SSDs and AerospikeHow to Get a Game Changing Performance Advantage with Intel SSDs and Aerospike
How to Get a Game Changing Performance Advantage with Intel SSDs and AerospikeAerospike, Inc.
 
What the Spark!? Intro and Use Cases
What the Spark!? Intro and Use CasesWhat the Spark!? Intro and Use Cases
What the Spark!? Intro and Use CasesAerospike, Inc.
 
Get Started with Data Science by Analyzing Traffic Data from California Highways
Get Started with Data Science by Analyzing Traffic Data from California HighwaysGet Started with Data Science by Analyzing Traffic Data from California Highways
Get Started with Data Science by Analyzing Traffic Data from California HighwaysAerospike, Inc.
 
Running a High Performance NoSQL Database on Amazon EC2 for Just $1.68/Hour
Running a High Performance NoSQL Database on Amazon EC2 for Just $1.68/HourRunning a High Performance NoSQL Database on Amazon EC2 for Just $1.68/Hour
Running a High Performance NoSQL Database on Amazon EC2 for Just $1.68/HourAerospike, Inc.
 
ACID & CAP: Clearing CAP Confusion and Why C In CAP ≠ C in ACID
ACID & CAP:  Clearing CAP Confusion and Why C In CAP ≠ C in ACIDACID & CAP:  Clearing CAP Confusion and Why C In CAP ≠ C in ACID
ACID & CAP: Clearing CAP Confusion and Why C In CAP ≠ C in ACIDAerospike, Inc.
 
Flash Economics and Lessons learned from operating low latency platforms at h...
Flash Economics and Lessons learned from operating low latency platforms at h...Flash Economics and Lessons learned from operating low latency platforms at h...
Flash Economics and Lessons learned from operating low latency platforms at h...Aerospike, Inc.
 
Storm Persistence and Real-Time Analytics
Storm Persistence and Real-Time AnalyticsStorm Persistence and Real-Time Analytics
Storm Persistence and Real-Time AnalyticsAerospike, Inc.
 
Aerospike: Maximizing Performance
Aerospike: Maximizing PerformanceAerospike: Maximizing Performance
Aerospike: Maximizing PerformanceAerospike, Inc.
 
Big Data Learnings from a Vendor's Perspective
Big Data Learnings from a Vendor's PerspectiveBig Data Learnings from a Vendor's Perspective
Big Data Learnings from a Vendor's PerspectiveAerospike, Inc.
 

More from Aerospike, Inc. (17)

2017 DB Trends for Powering Real-Time Systems of Engagement
2017 DB Trends for Powering Real-Time Systems of Engagement2017 DB Trends for Powering Real-Time Systems of Engagement
2017 DB Trends for Powering Real-Time Systems of Engagement
 
WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...
WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...
WEBINAR: Architectures for Digital Transformation and Next-Generation Systems...
 
Leveraging Big Data with Hadoop, NoSQL and RDBMS
Leveraging Big Data with Hadoop, NoSQL and RDBMSLeveraging Big Data with Hadoop, NoSQL and RDBMS
Leveraging Big Data with Hadoop, NoSQL and RDBMS
 
Using Databases and Containers From Development to Deployment
Using Databases and Containers  From Development to DeploymentUsing Databases and Containers  From Development to Deployment
Using Databases and Containers From Development to Deployment
 
01282016 Aerospike-Docker webinar
01282016 Aerospike-Docker webinar01282016 Aerospike-Docker webinar
01282016 Aerospike-Docker webinar
 
There are 250 Database products, are you running the right one?
There are 250 Database products, are you running the right one?There are 250 Database products, are you running the right one?
There are 250 Database products, are you running the right one?
 
The role of NoSQL in the Next Generation of Financial Informatics
The role of NoSQL in the Next Generation of Financial InformaticsThe role of NoSQL in the Next Generation of Financial Informatics
The role of NoSQL in the Next Generation of Financial Informatics
 
Tectonic Shift: A New Foundation for Data Driven Business
Tectonic Shift: A New Foundation for Data Driven BusinessTectonic Shift: A New Foundation for Data Driven Business
Tectonic Shift: A New Foundation for Data Driven Business
 
How to Get a Game Changing Performance Advantage with Intel SSDs and Aerospike
How to Get a Game Changing Performance Advantage with Intel SSDs and AerospikeHow to Get a Game Changing Performance Advantage with Intel SSDs and Aerospike
How to Get a Game Changing Performance Advantage with Intel SSDs and Aerospike
 
What the Spark!? Intro and Use Cases
What the Spark!? Intro and Use CasesWhat the Spark!? Intro and Use Cases
What the Spark!? Intro and Use Cases
 
Get Started with Data Science by Analyzing Traffic Data from California Highways
Get Started with Data Science by Analyzing Traffic Data from California HighwaysGet Started with Data Science by Analyzing Traffic Data from California Highways
Get Started with Data Science by Analyzing Traffic Data from California Highways
 
Running a High Performance NoSQL Database on Amazon EC2 for Just $1.68/Hour
Running a High Performance NoSQL Database on Amazon EC2 for Just $1.68/HourRunning a High Performance NoSQL Database on Amazon EC2 for Just $1.68/Hour
Running a High Performance NoSQL Database on Amazon EC2 for Just $1.68/Hour
 
ACID & CAP: Clearing CAP Confusion and Why C In CAP ≠ C in ACID
ACID & CAP:  Clearing CAP Confusion and Why C In CAP ≠ C in ACIDACID & CAP:  Clearing CAP Confusion and Why C In CAP ≠ C in ACID
ACID & CAP: Clearing CAP Confusion and Why C In CAP ≠ C in ACID
 
Flash Economics and Lessons learned from operating low latency platforms at h...
Flash Economics and Lessons learned from operating low latency platforms at h...Flash Economics and Lessons learned from operating low latency platforms at h...
Flash Economics and Lessons learned from operating low latency platforms at h...
 
Storm Persistence and Real-Time Analytics
Storm Persistence and Real-Time AnalyticsStorm Persistence and Real-Time Analytics
Storm Persistence and Real-Time Analytics
 
Aerospike: Maximizing Performance
Aerospike: Maximizing PerformanceAerospike: Maximizing Performance
Aerospike: Maximizing Performance
 
Big Data Learnings from a Vendor's Perspective
Big Data Learnings from a Vendor's PerspectiveBig Data Learnings from a Vendor's Perspective
Big Data Learnings from a Vendor's Perspective
 

Recently uploaded

Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlPeter Udo Diehl
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessUXDXConf
 
IESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIES VE
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualityInflectra
 
Motion for AI: Creating Empathy in Technology
Motion for AI: Creating Empathy in TechnologyMotion for AI: Creating Empathy in Technology
Motion for AI: Creating Empathy in TechnologyUXDXConf
 
In-Depth Performance Testing Guide for IT Professionals
In-Depth Performance Testing Guide for IT ProfessionalsIn-Depth Performance Testing Guide for IT Professionals
In-Depth Performance Testing Guide for IT ProfessionalsExpeed Software
 
Enterprise Security Monitoring, And Log Management.
Enterprise Security Monitoring, And Log Management.Enterprise Security Monitoring, And Log Management.
Enterprise Security Monitoring, And Log Management.Boni Yeamin
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor TurskyiFwdays
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoTAnalytics
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsPaul Groth
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaRTTS
 
PLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. StartupsPLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. StartupsStefano
 
Intelligent Gimbal FINAL PAPER Engineering.pdf
Intelligent Gimbal FINAL PAPER Engineering.pdfIntelligent Gimbal FINAL PAPER Engineering.pdf
Intelligent Gimbal FINAL PAPER Engineering.pdfAnthony Lucente
 
Strategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering TeamsStrategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering TeamsUXDXConf
 
Transforming The New York Times: Empowering Evolution through UX
Transforming The New York Times: Empowering Evolution through UXTransforming The New York Times: Empowering Evolution through UX
Transforming The New York Times: Empowering Evolution through UXUXDXConf
 
What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024Stephanie Beckett
 
Designing for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastDesigning for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastUXDXConf
 
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya HalderCustom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya HalderCzechDreamin
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Jeffrey Haguewood
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxAbida Shariff
 

Recently uploaded (20)

Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
 
IESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIESVE for Early Stage Design and Planning
IESVE for Early Stage Design and Planning
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Motion for AI: Creating Empathy in Technology
Motion for AI: Creating Empathy in TechnologyMotion for AI: Creating Empathy in Technology
Motion for AI: Creating Empathy in Technology
 
In-Depth Performance Testing Guide for IT Professionals
In-Depth Performance Testing Guide for IT ProfessionalsIn-Depth Performance Testing Guide for IT Professionals
In-Depth Performance Testing Guide for IT Professionals
 
Enterprise Security Monitoring, And Log Management.
Enterprise Security Monitoring, And Log Management.Enterprise Security Monitoring, And Log Management.
Enterprise Security Monitoring, And Log Management.
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
PLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. StartupsPLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. Startups
 
Intelligent Gimbal FINAL PAPER Engineering.pdf
Intelligent Gimbal FINAL PAPER Engineering.pdfIntelligent Gimbal FINAL PAPER Engineering.pdf
Intelligent Gimbal FINAL PAPER Engineering.pdf
 
Strategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering TeamsStrategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering Teams
 
Transforming The New York Times: Empowering Evolution through UX
Transforming The New York Times: Empowering Evolution through UXTransforming The New York Times: Empowering Evolution through UX
Transforming The New York Times: Empowering Evolution through UX
 
What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024
 
Designing for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastDesigning for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at Comcast
 
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya HalderCustom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
Custom Approval Process: A New Perspective, Pavel Hrbacek & Anindya Halder
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 

Aerospike: Key Value Data Access

  • 1. Aerospike aer . o . spike [air-oh- spahyk] noun, 1. tip of a rocket that enhances speed and stability
  • 3. Topics ➤ Structured v. Unstructured Data ➤ Database Hierarchy and Definitions ➤ Data Access Patterns © 2013 Aerospike. All rights reserved. | Records | Pg. 3
  • 4. Structured Databases For performance, many early databases were structured. Every table has a defined schema. Changes to the schema required a DBA, possibly a Change Control Board (CCB). © 2013 Aerospike. All rights reserved. | Records | Pg. 4 id (10 bytes) lname (40 bytes) fname (40 bytes) address (60 bytes) city (20 bytes) state (20 bytes) Phone (20 bytes) 1 Able John 123 First New York NY 2128675309 2 Baker Kris 234 Second UNKNOWN UNKNOWN UNKNOWN 3 Charlie Larry 345 Third Seattle WA 4258675309 4 Delta Moe 456 Fourth Austin TX 7378675309
  • 5. Pros + ACID + Familiarity Cons - Requires pre-defined schema - Changes to schema can be traumatic, limiting dynamic application development. - Poor durability on SSD © 2013 Aerospike. All rights reserved. | Records | Pg. 5 Structured Databases
  • 6. Unstructured Databases Unstructured databases do not have a pre-defined schema and bins may exist in some records, but not in others. Different kinds of records may be mixed in sets. © 2013 Aerospike. All rights reserved. | Records | Pg. 6 Id lname fname address city state Phone Size 1 Able John 123 First New York NY +81 2128 6753 909 45 bytes 2 Baker Kris 234 Second 20 bytes 3 Charlie 8 bytes 4 Delta Moe 456 Fourth Austin TX 7378675309 47 bytes
  • 7. Pros + No predefined schema + Addition of new bins can be done from client + Addition of new sets (like tables) can be done from client + Makes most of sequential write speed of disks Cons - Difficult to predict object size - Updates to a record require an entire record re-write (AS solution is LDTs) © 2013 Aerospike. All rights reserved. | Records | Pg. 7 Aerospike
  • 8. What Do You Want From A Distributed DB? • Hide the complexity of distribution. • Linear scalability. • Better service availability. © 2013 Aerospike. All rights reserved. Pg. 8
  • 9. Smart Partition Architecture © 2013 Aerospike. All rights reserved. Pg. 9 Cluster creates a map of how data is distributed, called a partition map. Combine features from other architectures to create a map.
  • 10. Smart Partitioning • Every key is hashed using the RIPEMD160 hash function • The creates a fixed 160 bits (20 bytes) string. • 12 bits of this hash are used to identify the partition id • There are 4096 partitions • Are distributed among the nodes PaikPaik 182023kh15hh3kahdjsh182023kh15hh3kahdjsh Partition ID Master node Replica node … 1 4 1820 2 3 1821 3 2 4096 4 1 © 2013 Aerospike. All rights reserved. Pg. 10 Aerospike uses a partition table
  • 11. Smart Partitioning For simplicity, let’s take a 3 node cluster with only 9 partitions and a replication factor of 2. © 2013 Aerospike. All rights reserved. Pg. 11
  • 12. © 2013 Aerospike. All rights reserved. | Records | Pg. 12 Database Hierarchy Term Definition Notes Cluster An Aerospike cluster services a single database service. While a company may deploy multiple clusters, applications will only connect to a single cluster. Node A single instance of an Aerospike database. For production deployments, a host should only have a single node. For development, you may place more than one node on a host. Namespace An area of storage related to the media. Can be either RAM or SSD based. Similar to a “database” or “tablespaces” in relational databases. Set An unstructured grouping of data that have some commonality. Similar to “tables” in a relational database, but do not require a schema. Record A key and all data related to that key. Similar to a “row” in a relational database. Bin One part of data related to a key. Bins in Aerospike are typed, but the same bin in different records can have different types. Bins are not required. Single bin optimizations are allowed. (Large Data Type) LDT LDTs provide functions for storing arbitrarily large amounts of data without requiring the database to read the entire record. Most commonly the data stored in LDTs will be time series data, but this is not a requirement. This feature is still in development.
  • 13. Data Hierarchy Cluster Node 1 Node 2 Node 3 Namespace Set Record Record BinBin © 2013 Aerospike. All rights reserved. | Records | Pg. 13 Bin
  • 14. Cluster ➤ Will be distributed on different nodes. ➤ Management of cluster is automated, so no manual rebalancing or reconfiguration is necessary. ➤ Will contain one or more namespaces. Adding/removing namespaces requires a cluster-wide restart. © 2013 Aerospike. All rights reserved. | Records | Pg. 14
  • 15. Nodes ➤ Each node is assumed to be identical. ➤ Data (and their associated traffic) will be evenly balanced across the nodes. ➤ Big differences between nodes imply a problem. ➤ Node capacity should take into account node failure patterns. © 2013 Aerospike. All rights reserved. | Records | Pg. 15
  • 16. Namespaces ➤ Are associated with the storage media:  Hybrid (ram for index and SSD for data)  RAM + disk for persistence only  RAM only ➤ Each can be configured with their own:  replication factor (change requires a cluster-wide restart)  RAM and disk configuration  settings for high-watermark  default TTL (if you have data that must never be automatically deleted, you must set this to “0”) © 2013 Aerospike. All rights reserved. | Records | Pg. 16
  • 17. Sets ➤ Similar to “tables” in relational databases. ➤ Sets are optional. ➤ Schema does not have to be pre-defined. ➤ In order to request a record, you must know its set. ➤ Scans can be done across a set © 2013 Aerospike. All rights reserved. | Records | Pg. 17
  • 18. Records ➤ Similar to a row in a relational database. ➤ All data for a record will be stored on the same node. This is true even for LDTs. ➤ Any change to a record will result in a complete write of the entire record, unless using LDTs. © 2013 Aerospike. All rights reserved. | Records | Pg. 18
  • 19. Bins ➤ Values Are typed. Current types are:  Simple (integer, string, blob [language specific])  Complex (list, map)  Large Data Types (LDTs) ➤ A single bin may be updated by the client.  Increment  Replacement  User Defined Function (UDF) © 2013 Aerospike. All rights reserved. | Records | Pg. 19
  • 20. Data Hierarchy Cluster Node 1 Node 2 Node 3 Namespace Set Record Record BinBin © 2013 Aerospike. All rights reserved. | Records | Pg. 20 Bin
  • 21. Data Access Patterns  Read  Write  Update © 2013 Aerospike. All rights reserved. | Records | Pg. 21
  • 22. Accessing An Object In Aerospike Reading A Standard Data Type With SSDs © 2013 Aerospike. All rights reserved. | Records | Pg. 22 128 KB Blocks Master Node SSD (DATA) Client RAM (Index) 1) Client finds Master Node from partition map. 2) Client makes read request to Master Node. 3) Master Node finds data location from index in RAM. 4) Master Node reads entire object from SSD. This is true even if only reading bin. 5) Master Node returns value. Index reference
  • 23. Accessing An Object In Aerospike Writing A New Standard Data Type Record With SSDs © 2013 Aerospike. All rights reserved. | Records | Pg. 23 128 KB Blocks Master Node SSD (DATA) Client RAM (Index) 1) Client finds Master Node from partition map. 2) Client makes write request to Master Node. 3) Master Node make an entry indo index (in RAM) and queues write in temporary write buffer. 4) Master Node coordinates write with replica nodes (not shown). 5) Master Node returns success to client. 6) Master Node asynchronously writes data in 128 KB blocks. 7) Index in RAM points to location on SSD. Asynchronous write
  • 24. Accessing An Object In Aerospike Updating A Standard Data Type Record With SSDs © 2013 Aerospike. All rights reserved. | Records | Pg. 24 128 KB Blocks Master Node SSD (DATA) Client RAM (Index) 1) Client finds Master Node from partition map. 2) Client makes update request to Master Node. 3) Master Node reads the existing record (if using multiple bins) 4) Master Node queues write of updated record in a temporary write buffer 5) Master Node coordinates write with replica nodes (not shown). 6) Master Node returns success to client. 7) Master Node asynchronously writes data in 128 KB blocks. 8) Index in RAM points to new location on SSD. Asynchronous write Old New New
  • 25. Accessing An Object In Aerospike Keeping It Efficient © 2013 Aerospike. All rights reserved. | Records | Pg. 25 128 KB Blocks Master Node SSD (DATA) Client RAM (Index) Index reference Minimize the number of network round trips Minimize the number of network round trips Minimize the network bandwidth Minimize the network bandwidth Minimize SSD reads/writ es Minimize SSD reads/writ es
  • 26. Issues With Standard Data Types ➤ Record size is limited by block size (128 KB by default). ➤ Even a small update to a record results in a complete record re-write. © 2013 Aerospike. All rights reserved. | Records | Pg. 26
  • 27. Example Use Case To compare different systems, let’s take a look at a standard task. ➤Find out if an object has some value ➤If it does, update the record and return a value © 2013 Aerospike. All rights reserved. | Records | Pg. 27
  • 28. Example: Simple KVS Method Value is one large string JSON object. Example record: ➤Key=user_id ➤Value={“name” : “john”, “dob” : “08-20-1970” , “gender” : “male” , “likes” : “cars,computers,goats”} Business logic is that if the person is older than 18 years old, put them into campaign “bluesky”. 1.Client will request entire value from the node 2.Node reads entire value from disk 3.Node sends entire value to client 4.Client parses data and check logic on age 5.Client updates record with new value Value={“name” : “john”, “dob” : “08-20-1970” , “gender” : “male” , “likes” : “cars,computers,goats” , “campaigns” : “bluesky”} 6.Node writes entire value to disk © 2013 Aerospike. All rights reserved. | Records | Pg. 28 Client Node Storage Read (all) Read (all) Read (all) Read (all) Write (all) Write (all) Return status
  • 29. Example: KVS with Bins Values are stored in bins Example record: ➤Key=user_id ➤Value= “name” = “john” “dob” = “08-20-1970” “gender” = “male” “likes” = “cars,computers,goats” Business logic is that if the person is older than 18 years old, put them into campaign “bluesky”. 1.Client will request dob and campaign bins from the node 2.Node reads entire value from storage 3.Node sends only dob and campaigns to client 4.Client checks logic on age 5.Client updates record with new bin 1.Node writes entire value to disk. Node must read value first. © 2013 Aerospike. All rights reserved. | Records | Pg. 29 Client Node Storage Read (bin) Read (all) Read (all) Read (bin) Write (bin) Write (all) Read (all) Return status
  • 30. Example: Using UDFs Values are stored in bins Example record: ➤Key=user_id ➤Value= “name” = “john” “dob” = “08-20-1970” “gender” = “male” “likes” = “cars,computers,goats” Business logic is that if the person is older than 18 years old, put them into campaign “bluesky”. 1.Client makes UDF request 2.Node reads entire value from storage 3.Node applies UDF on returned data 4.Nodes writes data 5.Node returns status © 2013 Aerospike. All rights reserved. | Records | Pg. 30 Client Node Storage UDF Read (all) Read (all) Return status Write (all) Write (all)
  • 31. Example: Connecting to a cluster © 2013 Aerospike. All rights reserved. | Records | Pg. 31 Policy contains operational defaults like timeout Policy contains operational defaults like timeout Seed hostSeed host Seed portSeed port Do some workDo some work Disconnect from the clusterDisconnect from the cluster List of hostsList of hosts
  • 32. Example: Get/Put operations © 2013 Aerospike. All rights reserved. | Records | Pg. 32 Setup some preliminary values Setup some preliminary values Write a record with two bin values Write a record with two bin values Read a record with all bin values Read a record with all bin values
  • 33. Example: Increment/Decrement operation © 2013 Aerospike. All rights reserved. | Records | Pg. 33 Setup some preliminary values Setup some preliminary values Add operation – avoids the read-add-write cycle Add operation – avoids the read-add-write cycle
  • 34. Example: Touch operation © 2013 Aerospike. All rights reserved. | Records | Pg. 34 Setup some preliminary values Setup some preliminary values Write a record with a 2 second expiry Write a record with a 2 second expiry Change it to a 5 second expiryChange it to a 5 second expiry

Editor's Notes

  1. Fastest Best uptime Predictable performance consistency
  2. Horizontal scaling can provide many benefits. Let’s take a look at some of the major features. This might seem odd, but first, you want features that prevent you from having to think about having a distributed database.
  3. The cluster