SlideShare a Scribd company logo
1 of 94
PRESENTED BY
PRESENTED BY
Why Redis ?
100 msec
50 msec
50 msec
1 msec
DatabaseApp Servers
PRESENTED BY
Why Redis ?
100 msec
50 msec
50 msec
1 msec
App Servers
PRESENTED BY
We are building Redis to deal with new application use cases
PRESENTED BY
Q1:
Is Reliable ?
PRESENTED BY
• 6+ years in production
• 1M+ database created
• Running on over 500+ data-centers/zones
• 3000+ node failure events
• 100+ complete data-center outages
Redis Enterprise production deployment history
PRESENTED BY
• 6+ years in production
• 1M database created
• Running on over 500+ data-centers/zones
• 3000+ node failure events
• 100+ complete data-center outages
Redis Enterprise production deployment history
PRESENTED BY
The reliability ingredients of a database
Data-PersistenceHA + Failover Backup & Restore Active-Active
PRESENTED BY
The reliability ingredients of a database
Data-PersistenceHA + Failover Backup & Restore Active-Active
PRESENTED BY
HA Concept #1 – pure in-memory replication
Disk-based Replication
(OSS default)
M R
OSS Diskless Replication
M S
Pure In-Memory Replication
M S
1
2
3 1 2
1
PRESENTED BY
HA Concept #1 – pure in-memory replication
Disk-based Replication
(OSS default)
M R
OSS Diskless Replication
M R
Pure In-Memory Replication
M S
1
2
3 1 2
1
PRESENTED BY
HA Concept #1 – pure in-memory replication
Disk-based Replication
(OSS default)
M R
OSS Diskless Replication
M R
Pure In-Memory Replication
M R
1
2
3 1 2
1
x2 faster
PRESENTED BY
HA Concept #2 – watchdogs should be part of the cluster
M1 R1 R2 M1 R1 R2
PRESENTED BY
HA Concept #2 – watchdogs should be part of the cluster
M1 R1 R2 R1 R2M1
PRESENTED BY
HA Concept #2 – watchdogs should be part of the cluster
M1 R1 R2 M1 R1M1
PRESENTED BY
HA Concept #3 – how to deploy a multi-az/rack cluster
(1) At least 3 zones
A B
C
PRESENTED BY
HA Concept #3 – how to deploy a multi-az/rack cluster
M3
R3
R2M2
R1
M1
(2) Master and replica of each shard should be deployed on a different zone
A B
C
PRESENTED BY
HA Concept #3 – how to deploy a multi-az/rack cluster
M3
R3
R2M2
R1
M1
(3) Distance between zones < 10msec
A B
C
<10msec
<10msec
<10msec
PRESENTED BY
HA Concept #3 – how to deploy a multi-az/rack cluster
M3
R3
R2M2
R1
M1
(4) The majority of the node shouldn’t be deployed on one zone
A B
C
PRESENTED BY
%oftimesdatawaslost
Averagetimetorecoverinseconds
Redis
Enterprise
AWS
ElastiCache
Heroku
Redis
Compose (IBM)
Redis
Azure
Redis Cache
<5sec
Redis Failover Benchmark
PRESENTED BY
The reliability ingredients of a database
Data-PersistenceHA + Failover Backup & Restore Active-Active
PRESENTED BY
Why do you need Active-Active ?
Session Management
PRESENTED BY
Why do you need Active-Active ?
Bidding, Polling, Leaderboards
₤$
$
₱
€
Session Management
PRESENTED BY
Why do you need Active-Active ?
Bidding, Polling, Leaderboards
₤$
$
₱
€
Session Management Disaster Recovery
PRESENTED BY
Active-Active: existing approaches are slow
App
Eventual Consistency → 100msec
Cassandra/DynamoDB
App
App
PRESENTED BY
Active-Active: existing approaches are slow
App
App
App
App
App
App
Eventual Consistency → 100msec Strong Consistency → 200msec
Cassandra/DynamoDB Spanner
PRESENTED BY
• Application level solution → too complex to write
• LWW (Last Write Wins) → doesn’t work for many of the Redis data-types,
e.g.:
Conflict Resolution is hard
Lists
BitmapsBit field
Sorted SetsSets
Counters
PRESENTED BY
REDIS
CRDTs(Conflict Free Replicated Data-Types)
PRESENTED BY
Redis CRDTs – solving the Active-Active latency problem
App
App
App
Strong Eventual Consistency → 1 msec
PRESENTED BY
Redis CRDTs – solving the conflict resolution problem
Data-Type Conflict Resolution
• Simple value: LWW (Last Write Wins)
• Counters: no conflicts
• Simple value: LWW (Last Write Wins)
• Counters: no conflicts
Observed Removed Add Wins
• Observed Removed Add Wins
• Scores: no conflicts
Cumulative
Strings
Hashes
SETs
Sorted-Sets
List
PRESENTED BY
Active-Active comparison
App
App
App App
App
App
Eventual Consistency Strong Consistency
App
App
App
Strong Eventual Consistency
+
Causal Consistency
100msec 200msec <1msec
Cassandra/DynamoDB Spanner Redis CRDTs
PRESENTED BY
Monthly Uptime Percentage Service Credit Percentage
Active-Active SLA
26.30sec downtime/mo
Less than 99.999%, but equal
to or greater than 99%
10%
Less than 99% 25%
Multi-AZ SLA
4.38min downtime/mo
Less than 99.99%, but equal
to or greater than 99%
10%
Less than 99% 25%
Standard SLA
43.83min downtime/mo
Less than 99.9%, but equal to
or greater than 99%
10%
Less than 99% 25%
Redis (Enterprise) Cloud – 99.999% uptime
PRESENTED BY
Q2:
How fast can go ?
PRESENTED BY
App
App
App
Node 1
Node 2
Node M
Application <> Redis in one network hop1
PRESENTED BY
Node 1
Node 2
Node M
Use all available cores2
Running on N1 cores
Running on N2 cores
Running on Nm cores
App
App
App
PRESENTED BY
Node 1
Node 2
Node M
Shared nothing architecture3
Minimalinter-node/Rediscommunication
Running on N1 cores
Running on N2 cores
Running on Nm cores
App
App
App
PRESENTED BY
How does it work in Redis Enterprise ?
Multi-Threaded
Proxy
Shard 1 Shard 2 Shard N
Multi-Core
=
PRESENTED BY
x2 Faster
Application
1 2 3 4
Same Node
How does the proxy work ?
1
2
3
4
5
6
7
1 2 3 4
5 6 7
PRESENTED BY
App
App
App
Node 1
Node 2
Node M
Linearly scalable architecture
Minimalinter-node/Rediscommunication
A single network hop, multi-core, shared nothing architecture
Proxy 1 Shard 1 Shard 2 Shard n
Proxy 2 Shard n+1 Shard n+2 Shard 2n
Proxy M Shard n*(m-1)+1 Shard n*mShard n*(m-1)+2
PRESENTED BY
What we showed @ Redisconf18
20M ops/sec 30M ops/sec 50M ops/sec
1.92M – per node
97.65K – per shard
§
5,020,000
11,380,000
21,120,000
30,200,000
41,190,000
50,420,000
3 6 12 18 24 26
ops/sec
# of nodes
Cluster Throughput (@ 1 msec Latency)
PRESENTED BY
What we have done since Redisconf18
Redis 5.0 includes multiple performance improvements
(e.g. big pipeline)
Improved proxy performance & proxy<>shard communication
m4.16xlarge (64 vCore @ 2.4GHz)  c5.18xlarge (72 vCores @ 3.5GHz)
NUMA binding and CPU affinity
PRESENTED BY
Shards 4 6 8 8 10
Proxy threads 16 24 28 28 32
NUMA setting Default Default Default Tuned Tuned
Latency (msec) 0.92 0.91 0.98 0.81 0.92
Throughput (M ops/sec) 2.9 3.89 4.2 4.8 5.3
Throughput per shard
(K ops/sec)
725 648 525 600 530
Optimal performance on a single c5.18xlarge instance
SET:GET ratio – 1:1; Pipeline -9; Value size – 100B
PRESENTED BY
How to tune Redis Enterprise with NUMA and CPU affinity
Proxy threads affinity
Redis shards CPU/Memory bind to node0
Proxy threads affinity
Redis shards CPU/Memory bind to node1
PRESENTED BY
PRESENTED BY
200M+ ops/sec on 40 only c5.18xlarge instances
5,350,000
51,720,000
102,370,000
201,170,000
1 10 20 40
ops/sec
# of nodes
Cluster Throughput (@<1 msec latency)
PRESENTED BY
Close to optimal linear scaling - 94%
5,350,000
51,720,000
102,370,000
201,170,0005,350,000 5,172,000 5,118,500
5,029,250
3,400,000
3,900,000
4,400,000
4,900,000
5,400,000
5,900,000
0
50,000,000
100,000,000
150,000,000
200,000,000
250,000,000
1 10 20 40
Nodeops/sec
Clusterops/sec
# of nodes
Cluster and Node Throughput (@ < 1msec latncy)
PRESENTED BY
Breaking our own record (big time!) in just 15 months!
March 2018 June 2019 Improvement
Cluster throughput 50M ops/sec 200M ops/sec x4
# of nodes 26 40 x2.6
# of shards 512 400 x5
PRESENTED BY
Q3:
is affordable ?
PRESENTED BY
GBs → TBs → PB
in
PRESENTED BY
Running Redis on multiple memory technologies
DRAM = 768GB
On DRAM
1M+ ops/sec, $$$
PRESENTED BY
DRAM = 768GB
SSD = 3,072GB
DRAM = 768GB
On DRAM
1M+ ops/sec, $$$
On Flash/SSD
100K+ ops/sec, $
Paying just +15%
for
x5 memory capacity
Running Redis on multiple memory technologies
PRESENTED BY
1TB replicated dataset (2TB in total) @ 100K ops/sec
<1msec <1msec <10msec <1msec
presented by
$725,217.00
$507,652
$418,108
$145,745
$0.00
$100,000.00
$200,000.00
$300,000.00
$400,000.00
$500,000.00
$600,000.00
$700,000.00
$800,000.00
ElastiCache OSS Redis DynamoDB Redis Enterprise (RoF)
Redis by Cloud
Providers
OSS Redis Other NoSQL Redis on Flash
PRESENTED BY
DRAM = 768GB
SSD = 3,072GB
DRAM = 768GB
On DRAM
1M+ ops/sec, $$$
On Flash/SSD
100K+ ops/sec, $
Running Redis on multiple memory technologies
Can Redis run
1M+ ops/sec
on a single server
with multi-TB dataset
@ affordable cost
?
PRESENTED BY
DRAM = 768GB
SSD = 3,072GB
On Flash/SSD
100K+ ops/sec, $
On DRAM
1M+ ops/sec, $$$
DRAM = 768GB
On Persistent Memory
1M+ ops/sec, $$
Redis Enterprise on multiple memory technologies
PMEM = 3,840GB
PRESENTED BY
DRAM = 768GB
SSD = 3,072GB
On Flash/SSD
100K+ ops/sec, $
On DRAM
1M+ ops/sec, $$$
DRAM = 768GB
On Persistent Memory
1M+ ops/sec, $$
Redis Enterprise on multiple memory technologies
PMEM = 7680GB
PRESENTED BY
56
Same Redis performance at lower cost and higher capacity
DRAM
Optane DC Persistent
Memory system
2.41M ops/sec 0.89msec
0.87msec2.26M ops/sec
PRESENTED BY
Q4:
What else can I do
with ?
PRESENTED BY
Redis & TimeSeries
PRESENTED BY
Time-Series in Redis – the traditional way
Sorted Sets
{ eventid1: timestamp1, eventId2: timestamp2,…}
{ timestamp1: f/v-pair1, timestamp2:f/v-pair2,…}
1 Hashes
{ eventid1: f/v-pair1, eventId2: f/v-pair2,…}
+
2
Streams
PRESENTED BY
Time Series
PRESENTED BY
• Downsampling (compaction)
• Aggregation
(e.g.: avg, sum, min, max, range, count,
first, last)
• Labeling
(e.g.: sensor_id:2, cpu:8, area:5)
What is missing ?
• Retention rules
• Enhanced queries
• Connector to standard monitoring tools
• Compression (e.g. double delta)
PRESENTED BY
RedisTimeSeries
Announcing GA
PRESENTED BY
• Downsampling
• Aggregation
• Labeling + Search
• Retention rules
RedisTimeSeries
Raw data Downsampling & Aggregation
• Counters operations
• Ranged query with multi-key results
• Industry standard connectors
• Compression (soon)
PRESENTED BY
RedisTimeSeries architecture
Chunk 1
---------------------
Sample 1
Sample 2
Label1
f/v-pair1
Label2
f/v-pair2
Labels search
index
Timestamp indexing using Radix Tree
Key
Chunk 2
---------------------
Sample 1
Sample 2
Chunk 3
---------------------
Sample 1
Sample 2
key [Labels..]: {(timestamp1:numeric_value1), (timestamp2: numeric_value2), …}
AggregatedKey
Chunk 1
---------------------
Sample 1
Sample 2
Chunk 2
---------------------
Sample 1
Sample 2
PRESENTED BY
Can RedisTimeSeries be as fast and efficient as Redis?
The benchmark:
• 4000 devices
• Each sends 10 CPU
metrics every 10 sec for
3 hours, total 10,800
metrics
• Server –1xc5.18xlarge
• Client - 1xc5.18xlarge
9,879,392.87
11,548,460.21
32,479,407.31
2,338,343.30
Redis Streams
RedisTimeSeries
Sorted-Set per Device
Sorted-Set per Metric
Metrics ingest/sec
631
124,324
808
1,896
Redis Streams
RedisTimeSeries
Sorted-Set per Device
Sorted-Set per Metric
Queries/sec
1.54
3.27
5.33
40.75
Redis Streams
RedisTimeSeries
Sorted-Set per Device
Sorted-Set per Metric
GB Used
PRESENTED BY
RedisTimeSeries integrated with Prometheus and Grafana
PRESENTED BY
Redis & AI
PRESENTED BY
RedisAI
New data type:
Tensor
def addsq(a, b):
return (a + b)**2
TorchScript
CPU
GPU0
GPU1
…
PRESENTED BY
Transactions Scoring – serving AI far from the data
App Servers
AI serving
1
PRESENTED BY
Transactions Scoring – serving AI far from the data
2
3
App Servers
AI serving
1
PRESENTED BY
Transactions Scoring – serving AI far from the data
2
3
App Servers
AI serving
4 Vectorization
1
PRESENTED BY
Transactions Scoring – serving AI far from the data
2
3
App Servers
AI serving
5
6
4 Vectorization
1
PRESENTED BY
Transactions Scoring – serving AI far from the data
2
3
App Servers
AI serving
5
6
4 Vectorization
7
1
~200msec
PRESENTED BY
Transactions Scoring – serving AI near the data
1
App Servers
+
PRESENTED BY
Transactions Scoring – serving AI near the data
1
App Servers
2
3
+
PRESENTED BY
Transactions Scoring – serving AI near the data
1
App Servers
2
34
+
1msec1msec10msec
<15msec
PRESENTED BY
Redis & Data Models
PRESENTED BY
Top 5 database models
PRESENTED BY
Top 5 7 database models
AI
+
Streams
PRESENTED BY
Challenge: multi-model operations < 1msec
1 msec
App Servers
PRESENTED BY
Direct Inter-Model Communication
Graph Search
RedisGraph runs with RediSearch
PRESENTED BY
Single Dataset Copy
Hashes
Active-Active RediSearch
PRESENTED BY
In-database serverless for multi-model operations
RedisGears
Infinite programable options!
PRESENTED BY
RedisGears – high-performance architecture
GearsCoordinator MapReducerGearsExecuter
Gears infrastructure is written in C
C - API
PRESENTED BY
Stream processing example
Build a gear that creates a timeseries of the number of messages that come into the
stream every second
RedisTimeSeriesRedis Streams
Every sec
PRESENTED BY
# create a pipe of operations
gb = GearsBuilder('StreamReader’)
# Increment a timeseries counter for this second
gb.foreach(lambda x: execute('TS.INCRBY', 'msg_count', 1, 'RESET', 1))
# register the execution on `stream`
gb.register(‘stream’)
Build a gear that creates a timeseries of the number of messages that come into the
stream every second
Stream processing example
PRESENTED BY
Robotics arm use case
PRESENTED BY
Robotics arm use case
1000/sec
PRESENTED BY
Robotics arm use case
1000/sec Sensors
data
Streams2TS
PRESENTED BY
Robotics arm use case
1000/sec Sensors
data
Filtered
data
Streams2TS TS2AI
PRESENTED BY
Robotics arm use case
1000/sec Sensors
data
Filtered
data
Commands
Streams2TS TS2AI AI2Streams
PRESENTED BY
Robotics arm use case
1000/sec Sensors
data
EDGE
Filtered
data
Commands
Streams2TS TS2AI AI2Streams
PRESENTED BY
Q1 Is Redis reliable ?  99.999% availability
Q2 How fast can Redis go ?  200M ops/sec @ < 1msec latency on only 40 nodes
cluster
Q3 Is Redis affordable  80% savings with Redis on Flash, Intel PM as a DRAM
replacements
Recap
Q4 What else Redis can do ?  RedisTimeSeries GA; multi-model operation
@ < 1msec, everywhere (cloud, on-prem, edge)
Thank you!
Thank you!

More Related Content

What's hot

Introduction to redis
Introduction to redisIntroduction to redis
Introduction to redisTanu Siwag
 
An Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAn Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAli MasudianPour
 
Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017
Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017
Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017Amazon Web Services
 
Apache Iceberg - A Table Format for Hige Analytic Datasets
Apache Iceberg - A Table Format for Hige Analytic DatasetsApache Iceberg - A Table Format for Hige Analytic Datasets
Apache Iceberg - A Table Format for Hige Analytic DatasetsAlluxio, Inc.
 
Apache Kafka 0.8 basic training - Verisign
Apache Kafka 0.8 basic training - VerisignApache Kafka 0.8 basic training - Verisign
Apache Kafka 0.8 basic training - VerisignMichael Noll
 
대용량 분산 아키텍쳐 설계 #5. rest
대용량 분산 아키텍쳐 설계 #5. rest대용량 분산 아키텍쳐 설계 #5. rest
대용량 분산 아키텍쳐 설계 #5. restTerry Cho
 
Introduction to redis - version 2
Introduction to redis - version 2Introduction to redis - version 2
Introduction to redis - version 2Dvir Volk
 
RocksDB Performance and Reliability Practices
RocksDB Performance and Reliability PracticesRocksDB Performance and Reliability Practices
RocksDB Performance and Reliability PracticesYoshinori Matsunobu
 
[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...
[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...
[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...OpenStack Korea Community
 
Crimson: Ceph for the Age of NVMe and Persistent Memory
Crimson: Ceph for the Age of NVMe and Persistent MemoryCrimson: Ceph for the Age of NVMe and Persistent Memory
Crimson: Ceph for the Age of NVMe and Persistent MemoryScyllaDB
 
BlueStore: a new, faster storage backend for Ceph
BlueStore: a new, faster storage backend for CephBlueStore: a new, faster storage backend for Ceph
BlueStore: a new, faster storage backend for CephSage Weil
 
Redis persistence in practice
Redis persistence in practiceRedis persistence in practice
Redis persistence in practiceEugene Fidelin
 
Redis overview for Software Architecture Forum
Redis overview for Software Architecture ForumRedis overview for Software Architecture Forum
Redis overview for Software Architecture ForumChristopher Spring
 
MySQL Group Replication - Ready For Production? (2018-04)
MySQL Group Replication - Ready For Production? (2018-04)MySQL Group Replication - Ready For Production? (2018-04)
MySQL Group Replication - Ready For Production? (2018-04)Kenny Gryp
 
Intro into Rook and Ceph on Kubernetes
Intro into Rook and Ceph on KubernetesIntro into Rook and Ceph on Kubernetes
Intro into Rook and Ceph on KubernetesKublr
 
Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...
Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...
Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...Daniel Hochman
 
What you need to know about ceph
What you need to know about cephWhat you need to know about ceph
What you need to know about cephEmma Haruka Iwao
 
Flink SQL & TableAPI in Large Scale Production at Alibaba
Flink SQL & TableAPI in Large Scale Production at AlibabaFlink SQL & TableAPI in Large Scale Production at Alibaba
Flink SQL & TableAPI in Large Scale Production at AlibabaDataWorks Summit
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to RedisDvir Volk
 

What's hot (20)

Introduction to redis
Introduction to redisIntroduction to redis
Introduction to redis
 
An Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL databaseAn Introduction to REDIS NoSQL database
An Introduction to REDIS NoSQL database
 
Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017
Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017
Best Practices for Running PostgreSQL on AWS - DAT314 - re:Invent 2017
 
Apache Iceberg - A Table Format for Hige Analytic Datasets
Apache Iceberg - A Table Format for Hige Analytic DatasetsApache Iceberg - A Table Format for Hige Analytic Datasets
Apache Iceberg - A Table Format for Hige Analytic Datasets
 
Apache Kafka 0.8 basic training - Verisign
Apache Kafka 0.8 basic training - VerisignApache Kafka 0.8 basic training - Verisign
Apache Kafka 0.8 basic training - Verisign
 
대용량 분산 아키텍쳐 설계 #5. rest
대용량 분산 아키텍쳐 설계 #5. rest대용량 분산 아키텍쳐 설계 #5. rest
대용량 분산 아키텍쳐 설계 #5. rest
 
Introduction to redis - version 2
Introduction to redis - version 2Introduction to redis - version 2
Introduction to redis - version 2
 
RocksDB Performance and Reliability Practices
RocksDB Performance and Reliability PracticesRocksDB Performance and Reliability Practices
RocksDB Performance and Reliability Practices
 
[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...
[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...
[OpenInfra Days Korea 2018] Day 2 - CEPH 운영자를 위한 Object Storage Performance T...
 
Crimson: Ceph for the Age of NVMe and Persistent Memory
Crimson: Ceph for the Age of NVMe and Persistent MemoryCrimson: Ceph for the Age of NVMe and Persistent Memory
Crimson: Ceph for the Age of NVMe and Persistent Memory
 
BlueStore: a new, faster storage backend for Ceph
BlueStore: a new, faster storage backend for CephBlueStore: a new, faster storage backend for Ceph
BlueStore: a new, faster storage backend for Ceph
 
Redis persistence in practice
Redis persistence in practiceRedis persistence in practice
Redis persistence in practice
 
Redis overview for Software Architecture Forum
Redis overview for Software Architecture ForumRedis overview for Software Architecture Forum
Redis overview for Software Architecture Forum
 
MySQL Group Replication - Ready For Production? (2018-04)
MySQL Group Replication - Ready For Production? (2018-04)MySQL Group Replication - Ready For Production? (2018-04)
MySQL Group Replication - Ready For Production? (2018-04)
 
Ceph issue 해결 사례
Ceph issue 해결 사례Ceph issue 해결 사례
Ceph issue 해결 사례
 
Intro into Rook and Ceph on Kubernetes
Intro into Rook and Ceph on KubernetesIntro into Rook and Ceph on Kubernetes
Intro into Rook and Ceph on Kubernetes
 
Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...
Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...
Geospatial Indexing at Scale: The 15 Million QPS Redis Architecture Powering ...
 
What you need to know about ceph
What you need to know about cephWhat you need to know about ceph
What you need to know about ceph
 
Flink SQL & TableAPI in Large Scale Production at Alibaba
Flink SQL & TableAPI in Large Scale Production at AlibabaFlink SQL & TableAPI in Large Scale Production at Alibaba
Flink SQL & TableAPI in Large Scale Production at Alibaba
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to Redis
 

Similar to Redis Reliability, Performance & Innovation

DAT202_Getting started with Amazon Aurora
DAT202_Getting started with Amazon AuroraDAT202_Getting started with Amazon Aurora
DAT202_Getting started with Amazon AuroraAmazon Web Services
 
RedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach Shoolman
RedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach ShoolmanRedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach Shoolman
RedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach ShoolmanRedis Labs
 
3. ami big data hadoop on ucs seminar may 2013
3. ami big data hadoop on ucs seminar may 20133. ami big data hadoop on ucs seminar may 2013
3. ami big data hadoop on ucs seminar may 2013Taldor Group
 
Orcl siebel-sun-s282213-oow2006
Orcl siebel-sun-s282213-oow2006Orcl siebel-sun-s282213-oow2006
Orcl siebel-sun-s282213-oow2006Sal Marcus
 
Unleash oracle 12c performance with cisco ucs
Unleash oracle 12c performance with cisco ucsUnleash oracle 12c performance with cisco ucs
Unleash oracle 12c performance with cisco ucssolarisyougood
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon RedshiftAmazon Web Services
 
Collaborate07kmohiuddin
Collaborate07kmohiuddinCollaborate07kmohiuddin
Collaborate07kmohiuddinSal Marcus
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon RedshiftAmazon Web Services
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon RedshiftAmazon Web Services
 
What's new with enterprise Redis - Leena Joshi, Redis Labs
What's new with enterprise Redis - Leena Joshi, Redis LabsWhat's new with enterprise Redis - Leena Joshi, Redis Labs
What's new with enterprise Redis - Leena Joshi, Redis LabsRedis Labs
 
Azure Databases for PostgreSQL, MySQL and MariaDB
Azure Databases for PostgreSQL, MySQL and MariaDBAzure Databases for PostgreSQL, MySQL and MariaDB
Azure Databases for PostgreSQL, MySQL and MariaDBrockplace
 
AWS June Webinar Series - Getting Started: Amazon Redshift
AWS June Webinar Series - Getting Started: Amazon RedshiftAWS June Webinar Series - Getting Started: Amazon Redshift
AWS June Webinar Series - Getting Started: Amazon RedshiftAmazon Web Services
 
Redis Day TLV 2018 - 10 Reasons why Redis should be your Primary Database
Redis Day TLV 2018 - 10 Reasons why Redis should be your Primary DatabaseRedis Day TLV 2018 - 10 Reasons why Redis should be your Primary Database
Redis Day TLV 2018 - 10 Reasons why Redis should be your Primary DatabaseRedis Labs
 
MySQL on AWS RDS
MySQL on AWS RDSMySQL on AWS RDS
MySQL on AWS RDSMydbops
 
(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and Scalable
(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and Scalable(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and Scalable
(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and ScalableAmazon Web Services
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon RedshiftAmazon Web Services
 
How Ceph performs on ARM Microserver Cluster
How Ceph performs on ARM Microserver ClusterHow Ceph performs on ARM Microserver Cluster
How Ceph performs on ARM Microserver ClusterAaron Joue
 
MT41 Dell EMC VMAX: Ask the Experts
MT41 Dell EMC VMAX: Ask the Experts MT41 Dell EMC VMAX: Ask the Experts
MT41 Dell EMC VMAX: Ask the Experts Dell EMC World
 

Similar to Redis Reliability, Performance & Innovation (20)

DAT202_Getting started with Amazon Aurora
DAT202_Getting started with Amazon AuroraDAT202_Getting started with Amazon Aurora
DAT202_Getting started with Amazon Aurora
 
RedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach Shoolman
RedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach ShoolmanRedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach Shoolman
RedisConf17 - Doing More With Redis - Ofer Bengal and Yiftach Shoolman
 
3. ami big data hadoop on ucs seminar may 2013
3. ami big data hadoop on ucs seminar may 20133. ami big data hadoop on ucs seminar may 2013
3. ami big data hadoop on ucs seminar may 2013
 
Mellanox Storage Solutions
Mellanox Storage SolutionsMellanox Storage Solutions
Mellanox Storage Solutions
 
Orcl siebel-sun-s282213-oow2006
Orcl siebel-sun-s282213-oow2006Orcl siebel-sun-s282213-oow2006
Orcl siebel-sun-s282213-oow2006
 
Unleash oracle 12c performance with cisco ucs
Unleash oracle 12c performance with cisco ucsUnleash oracle 12c performance with cisco ucs
Unleash oracle 12c performance with cisco ucs
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon Redshift
 
Collaborate07kmohiuddin
Collaborate07kmohiuddinCollaborate07kmohiuddin
Collaborate07kmohiuddin
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon Redshift
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon Redshift
 
What's new with enterprise Redis - Leena Joshi, Redis Labs
What's new with enterprise Redis - Leena Joshi, Redis LabsWhat's new with enterprise Redis - Leena Joshi, Redis Labs
What's new with enterprise Redis - Leena Joshi, Redis Labs
 
Azure Databases for PostgreSQL, MySQL and MariaDB
Azure Databases for PostgreSQL, MySQL and MariaDBAzure Databases for PostgreSQL, MySQL and MariaDB
Azure Databases for PostgreSQL, MySQL and MariaDB
 
AWS June Webinar Series - Getting Started: Amazon Redshift
AWS June Webinar Series - Getting Started: Amazon RedshiftAWS June Webinar Series - Getting Started: Amazon Redshift
AWS June Webinar Series - Getting Started: Amazon Redshift
 
Redis Day TLV 2018 - 10 Reasons why Redis should be your Primary Database
Redis Day TLV 2018 - 10 Reasons why Redis should be your Primary DatabaseRedis Day TLV 2018 - 10 Reasons why Redis should be your Primary Database
Redis Day TLV 2018 - 10 Reasons why Redis should be your Primary Database
 
MySQL on AWS RDS
MySQL on AWS RDSMySQL on AWS RDS
MySQL on AWS RDS
 
(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and Scalable
(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and Scalable(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and Scalable
(DAT303) Oracle on AWS and Amazon RDS: Secure, Fast, and Scalable
 
NFS and Oracle
NFS and OracleNFS and Oracle
NFS and Oracle
 
Getting Started with Amazon Redshift
Getting Started with Amazon RedshiftGetting Started with Amazon Redshift
Getting Started with Amazon Redshift
 
How Ceph performs on ARM Microserver Cluster
How Ceph performs on ARM Microserver ClusterHow Ceph performs on ARM Microserver Cluster
How Ceph performs on ARM Microserver Cluster
 
MT41 Dell EMC VMAX: Ask the Experts
MT41 Dell EMC VMAX: Ask the Experts MT41 Dell EMC VMAX: Ask the Experts
MT41 Dell EMC VMAX: Ask the Experts
 

More from Redis Labs

Redis Day Bangalore 2020 - Session state caching with redis
Redis Day Bangalore 2020 - Session state caching with redisRedis Day Bangalore 2020 - Session state caching with redis
Redis Day Bangalore 2020 - Session state caching with redisRedis Labs
 
Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020
Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020
Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020Redis Labs
 
The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...
The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...
The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...Redis Labs
 
SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020
SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020
SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020Redis Labs
 
Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...
Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...
Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...Redis Labs
 
Redis for Data Science and Engineering by Dmitry Polyakovsky of Oracle
Redis for Data Science and Engineering by Dmitry Polyakovsky of OracleRedis for Data Science and Engineering by Dmitry Polyakovsky of Oracle
Redis for Data Science and Engineering by Dmitry Polyakovsky of OracleRedis Labs
 
Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020
Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020
Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020Redis Labs
 
Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020
Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020
Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020Redis Labs
 
Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...
Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...
Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...Redis Labs
 
JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...
JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...
JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...Redis Labs
 
Highly Available Persistent Session Management Service by Mohamed Elmergawi o...
Highly Available Persistent Session Management Service by Mohamed Elmergawi o...Highly Available Persistent Session Management Service by Mohamed Elmergawi o...
Highly Available Persistent Session Management Service by Mohamed Elmergawi o...Redis Labs
 
Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...
Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...
Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...Redis Labs
 
Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...
Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...
Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...Redis Labs
 
RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020
RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020
RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020Redis Labs
 
RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020
RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020
RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020Redis Labs
 
RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020
RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020
RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020Redis Labs
 
RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020
RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020
RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020Redis Labs
 
Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...
Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...
Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...Redis Labs
 
Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...
Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...
Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...Redis Labs
 
Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...
Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...
Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...Redis Labs
 

More from Redis Labs (20)

Redis Day Bangalore 2020 - Session state caching with redis
Redis Day Bangalore 2020 - Session state caching with redisRedis Day Bangalore 2020 - Session state caching with redis
Redis Day Bangalore 2020 - Session state caching with redis
 
Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020
Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020
Protecting Your API with Redis by Jane Paek - Redis Day Seattle 2020
 
The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...
The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...
The Happy Marriage of Redis and Protobuf by Scott Haines of Twilio - Redis Da...
 
SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020
SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020
SQL, Redis and Kubernetes by Paul Stanton of Windocks - Redis Day Seattle 2020
 
Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...
Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...
Rust and Redis - Solving Problems for Kubernetes by Ravi Jagannathan of VMwar...
 
Redis for Data Science and Engineering by Dmitry Polyakovsky of Oracle
Redis for Data Science and Engineering by Dmitry Polyakovsky of OracleRedis for Data Science and Engineering by Dmitry Polyakovsky of Oracle
Redis for Data Science and Engineering by Dmitry Polyakovsky of Oracle
 
Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020
Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020
Practical Use Cases for ACLs in Redis 6 by Jamie Scott - Redis Day Seattle 2020
 
Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020
Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020
Moving Beyond Cache by Yiftach Shoolman Redis Labs - Redis Day Seattle 2020
 
Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...
Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...
Leveraging Redis for System Monitoring by Adam McCormick of SBG - Redis Day S...
 
JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...
JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...
JSON in Redis - When to use RedisJSON by Jay Won of Coupang - Redis Day Seatt...
 
Highly Available Persistent Session Management Service by Mohamed Elmergawi o...
Highly Available Persistent Session Management Service by Mohamed Elmergawi o...Highly Available Persistent Session Management Service by Mohamed Elmergawi o...
Highly Available Persistent Session Management Service by Mohamed Elmergawi o...
 
Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...
Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...
Anatomy of a Redis Command by Madelyn Olson of Amazon Web Services - Redis Da...
 
Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...
Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...
Building a Multi-dimensional Analytics Engine with RedisGraph by Matthew Goos...
 
RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020
RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020
RediSearch 1.6 by Pieter Cailliau - Redis Day Bangalore 2020
 
RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020
RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020
RedisGraph 2.0 by Pieter Cailliau - Redis Day Bangalore 2020
 
RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020
RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020
RedisTimeSeries 1.2 by Pieter Cailliau - Redis Day Bangalore 2020
 
RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020
RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020
RedisAI 0.9 by Sherin Thomas of Tensorwerk - Redis Day Bangalore 2020
 
Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...
Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...
Rate-Limiting 30 Million requests by Vijay Lakshminarayanan and Girish Koundi...
 
Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...
Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...
Three Pillars of Observability by Rajalakshmi Raji Srinivasan of Site24x7 Zoh...
 
Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...
Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...
Solving Complex Scaling Problems by Prashant Kumar and Abhishek Jain of Myntr...
 

Recently uploaded

Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
"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
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
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
 
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
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
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
 

Recently uploaded (20)

E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
"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
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
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
 
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)
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
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
 

Redis Reliability, Performance & Innovation

  • 2. PRESENTED BY Why Redis ? 100 msec 50 msec 50 msec 1 msec DatabaseApp Servers
  • 3. PRESENTED BY Why Redis ? 100 msec 50 msec 50 msec 1 msec App Servers
  • 4. PRESENTED BY We are building Redis to deal with new application use cases
  • 6. PRESENTED BY • 6+ years in production • 1M+ database created • Running on over 500+ data-centers/zones • 3000+ node failure events • 100+ complete data-center outages Redis Enterprise production deployment history
  • 7. PRESENTED BY • 6+ years in production • 1M database created • Running on over 500+ data-centers/zones • 3000+ node failure events • 100+ complete data-center outages Redis Enterprise production deployment history
  • 8. PRESENTED BY The reliability ingredients of a database Data-PersistenceHA + Failover Backup & Restore Active-Active
  • 9. PRESENTED BY The reliability ingredients of a database Data-PersistenceHA + Failover Backup & Restore Active-Active
  • 10. PRESENTED BY HA Concept #1 – pure in-memory replication Disk-based Replication (OSS default) M R OSS Diskless Replication M S Pure In-Memory Replication M S 1 2 3 1 2 1
  • 11. PRESENTED BY HA Concept #1 – pure in-memory replication Disk-based Replication (OSS default) M R OSS Diskless Replication M R Pure In-Memory Replication M S 1 2 3 1 2 1
  • 12. PRESENTED BY HA Concept #1 – pure in-memory replication Disk-based Replication (OSS default) M R OSS Diskless Replication M R Pure In-Memory Replication M R 1 2 3 1 2 1 x2 faster
  • 13. PRESENTED BY HA Concept #2 – watchdogs should be part of the cluster M1 R1 R2 M1 R1 R2
  • 14. PRESENTED BY HA Concept #2 – watchdogs should be part of the cluster M1 R1 R2 R1 R2M1
  • 15. PRESENTED BY HA Concept #2 – watchdogs should be part of the cluster M1 R1 R2 M1 R1M1
  • 16. PRESENTED BY HA Concept #3 – how to deploy a multi-az/rack cluster (1) At least 3 zones A B C
  • 17. PRESENTED BY HA Concept #3 – how to deploy a multi-az/rack cluster M3 R3 R2M2 R1 M1 (2) Master and replica of each shard should be deployed on a different zone A B C
  • 18. PRESENTED BY HA Concept #3 – how to deploy a multi-az/rack cluster M3 R3 R2M2 R1 M1 (3) Distance between zones < 10msec A B C <10msec <10msec <10msec
  • 19. PRESENTED BY HA Concept #3 – how to deploy a multi-az/rack cluster M3 R3 R2M2 R1 M1 (4) The majority of the node shouldn’t be deployed on one zone A B C
  • 21. PRESENTED BY The reliability ingredients of a database Data-PersistenceHA + Failover Backup & Restore Active-Active
  • 22. PRESENTED BY Why do you need Active-Active ? Session Management
  • 23. PRESENTED BY Why do you need Active-Active ? Bidding, Polling, Leaderboards ₤$ $ ₱ € Session Management
  • 24. PRESENTED BY Why do you need Active-Active ? Bidding, Polling, Leaderboards ₤$ $ ₱ € Session Management Disaster Recovery
  • 25. PRESENTED BY Active-Active: existing approaches are slow App Eventual Consistency → 100msec Cassandra/DynamoDB App App
  • 26. PRESENTED BY Active-Active: existing approaches are slow App App App App App App Eventual Consistency → 100msec Strong Consistency → 200msec Cassandra/DynamoDB Spanner
  • 27. PRESENTED BY • Application level solution → too complex to write • LWW (Last Write Wins) → doesn’t work for many of the Redis data-types, e.g.: Conflict Resolution is hard Lists BitmapsBit field Sorted SetsSets Counters
  • 28. PRESENTED BY REDIS CRDTs(Conflict Free Replicated Data-Types)
  • 29. PRESENTED BY Redis CRDTs – solving the Active-Active latency problem App App App Strong Eventual Consistency → 1 msec
  • 30. PRESENTED BY Redis CRDTs – solving the conflict resolution problem Data-Type Conflict Resolution • Simple value: LWW (Last Write Wins) • Counters: no conflicts • Simple value: LWW (Last Write Wins) • Counters: no conflicts Observed Removed Add Wins • Observed Removed Add Wins • Scores: no conflicts Cumulative Strings Hashes SETs Sorted-Sets List
  • 31. PRESENTED BY Active-Active comparison App App App App App App Eventual Consistency Strong Consistency App App App Strong Eventual Consistency + Causal Consistency 100msec 200msec <1msec Cassandra/DynamoDB Spanner Redis CRDTs
  • 32. PRESENTED BY Monthly Uptime Percentage Service Credit Percentage Active-Active SLA 26.30sec downtime/mo Less than 99.999%, but equal to or greater than 99% 10% Less than 99% 25% Multi-AZ SLA 4.38min downtime/mo Less than 99.99%, but equal to or greater than 99% 10% Less than 99% 25% Standard SLA 43.83min downtime/mo Less than 99.9%, but equal to or greater than 99% 10% Less than 99% 25% Redis (Enterprise) Cloud – 99.999% uptime
  • 34. PRESENTED BY App App App Node 1 Node 2 Node M Application <> Redis in one network hop1
  • 35. PRESENTED BY Node 1 Node 2 Node M Use all available cores2 Running on N1 cores Running on N2 cores Running on Nm cores App App App
  • 36. PRESENTED BY Node 1 Node 2 Node M Shared nothing architecture3 Minimalinter-node/Rediscommunication Running on N1 cores Running on N2 cores Running on Nm cores App App App
  • 37. PRESENTED BY How does it work in Redis Enterprise ? Multi-Threaded Proxy Shard 1 Shard 2 Shard N Multi-Core =
  • 38. PRESENTED BY x2 Faster Application 1 2 3 4 Same Node How does the proxy work ? 1 2 3 4 5 6 7 1 2 3 4 5 6 7
  • 39. PRESENTED BY App App App Node 1 Node 2 Node M Linearly scalable architecture Minimalinter-node/Rediscommunication A single network hop, multi-core, shared nothing architecture Proxy 1 Shard 1 Shard 2 Shard n Proxy 2 Shard n+1 Shard n+2 Shard 2n Proxy M Shard n*(m-1)+1 Shard n*mShard n*(m-1)+2
  • 40. PRESENTED BY What we showed @ Redisconf18 20M ops/sec 30M ops/sec 50M ops/sec 1.92M – per node 97.65K – per shard § 5,020,000 11,380,000 21,120,000 30,200,000 41,190,000 50,420,000 3 6 12 18 24 26 ops/sec # of nodes Cluster Throughput (@ 1 msec Latency)
  • 41. PRESENTED BY What we have done since Redisconf18 Redis 5.0 includes multiple performance improvements (e.g. big pipeline) Improved proxy performance & proxy<>shard communication m4.16xlarge (64 vCore @ 2.4GHz)  c5.18xlarge (72 vCores @ 3.5GHz) NUMA binding and CPU affinity
  • 42. PRESENTED BY Shards 4 6 8 8 10 Proxy threads 16 24 28 28 32 NUMA setting Default Default Default Tuned Tuned Latency (msec) 0.92 0.91 0.98 0.81 0.92 Throughput (M ops/sec) 2.9 3.89 4.2 4.8 5.3 Throughput per shard (K ops/sec) 725 648 525 600 530 Optimal performance on a single c5.18xlarge instance SET:GET ratio – 1:1; Pipeline -9; Value size – 100B
  • 43. PRESENTED BY How to tune Redis Enterprise with NUMA and CPU affinity Proxy threads affinity Redis shards CPU/Memory bind to node0 Proxy threads affinity Redis shards CPU/Memory bind to node1
  • 45. PRESENTED BY 200M+ ops/sec on 40 only c5.18xlarge instances 5,350,000 51,720,000 102,370,000 201,170,000 1 10 20 40 ops/sec # of nodes Cluster Throughput (@<1 msec latency)
  • 46. PRESENTED BY Close to optimal linear scaling - 94% 5,350,000 51,720,000 102,370,000 201,170,0005,350,000 5,172,000 5,118,500 5,029,250 3,400,000 3,900,000 4,400,000 4,900,000 5,400,000 5,900,000 0 50,000,000 100,000,000 150,000,000 200,000,000 250,000,000 1 10 20 40 Nodeops/sec Clusterops/sec # of nodes Cluster and Node Throughput (@ < 1msec latncy)
  • 47. PRESENTED BY Breaking our own record (big time!) in just 15 months! March 2018 June 2019 Improvement Cluster throughput 50M ops/sec 200M ops/sec x4 # of nodes 26 40 x2.6 # of shards 512 400 x5
  • 49. PRESENTED BY GBs → TBs → PB in
  • 50. PRESENTED BY Running Redis on multiple memory technologies DRAM = 768GB On DRAM 1M+ ops/sec, $$$
  • 51. PRESENTED BY DRAM = 768GB SSD = 3,072GB DRAM = 768GB On DRAM 1M+ ops/sec, $$$ On Flash/SSD 100K+ ops/sec, $ Paying just +15% for x5 memory capacity Running Redis on multiple memory technologies
  • 52. PRESENTED BY 1TB replicated dataset (2TB in total) @ 100K ops/sec <1msec <1msec <10msec <1msec presented by $725,217.00 $507,652 $418,108 $145,745 $0.00 $100,000.00 $200,000.00 $300,000.00 $400,000.00 $500,000.00 $600,000.00 $700,000.00 $800,000.00 ElastiCache OSS Redis DynamoDB Redis Enterprise (RoF) Redis by Cloud Providers OSS Redis Other NoSQL Redis on Flash
  • 53. PRESENTED BY DRAM = 768GB SSD = 3,072GB DRAM = 768GB On DRAM 1M+ ops/sec, $$$ On Flash/SSD 100K+ ops/sec, $ Running Redis on multiple memory technologies Can Redis run 1M+ ops/sec on a single server with multi-TB dataset @ affordable cost ?
  • 54. PRESENTED BY DRAM = 768GB SSD = 3,072GB On Flash/SSD 100K+ ops/sec, $ On DRAM 1M+ ops/sec, $$$ DRAM = 768GB On Persistent Memory 1M+ ops/sec, $$ Redis Enterprise on multiple memory technologies PMEM = 3,840GB
  • 55. PRESENTED BY DRAM = 768GB SSD = 3,072GB On Flash/SSD 100K+ ops/sec, $ On DRAM 1M+ ops/sec, $$$ DRAM = 768GB On Persistent Memory 1M+ ops/sec, $$ Redis Enterprise on multiple memory technologies PMEM = 7680GB
  • 56. PRESENTED BY 56 Same Redis performance at lower cost and higher capacity DRAM Optane DC Persistent Memory system 2.41M ops/sec 0.89msec 0.87msec2.26M ops/sec
  • 57. PRESENTED BY Q4: What else can I do with ?
  • 58. PRESENTED BY Redis & TimeSeries
  • 59. PRESENTED BY Time-Series in Redis – the traditional way Sorted Sets { eventid1: timestamp1, eventId2: timestamp2,…} { timestamp1: f/v-pair1, timestamp2:f/v-pair2,…} 1 Hashes { eventid1: f/v-pair1, eventId2: f/v-pair2,…} + 2 Streams
  • 61. PRESENTED BY • Downsampling (compaction) • Aggregation (e.g.: avg, sum, min, max, range, count, first, last) • Labeling (e.g.: sensor_id:2, cpu:8, area:5) What is missing ? • Retention rules • Enhanced queries • Connector to standard monitoring tools • Compression (e.g. double delta)
  • 63. PRESENTED BY • Downsampling • Aggregation • Labeling + Search • Retention rules RedisTimeSeries Raw data Downsampling & Aggregation • Counters operations • Ranged query with multi-key results • Industry standard connectors • Compression (soon)
  • 64. PRESENTED BY RedisTimeSeries architecture Chunk 1 --------------------- Sample 1 Sample 2 Label1 f/v-pair1 Label2 f/v-pair2 Labels search index Timestamp indexing using Radix Tree Key Chunk 2 --------------------- Sample 1 Sample 2 Chunk 3 --------------------- Sample 1 Sample 2 key [Labels..]: {(timestamp1:numeric_value1), (timestamp2: numeric_value2), …} AggregatedKey Chunk 1 --------------------- Sample 1 Sample 2 Chunk 2 --------------------- Sample 1 Sample 2
  • 65. PRESENTED BY Can RedisTimeSeries be as fast and efficient as Redis? The benchmark: • 4000 devices • Each sends 10 CPU metrics every 10 sec for 3 hours, total 10,800 metrics • Server –1xc5.18xlarge • Client - 1xc5.18xlarge 9,879,392.87 11,548,460.21 32,479,407.31 2,338,343.30 Redis Streams RedisTimeSeries Sorted-Set per Device Sorted-Set per Metric Metrics ingest/sec 631 124,324 808 1,896 Redis Streams RedisTimeSeries Sorted-Set per Device Sorted-Set per Metric Queries/sec 1.54 3.27 5.33 40.75 Redis Streams RedisTimeSeries Sorted-Set per Device Sorted-Set per Metric GB Used
  • 66. PRESENTED BY RedisTimeSeries integrated with Prometheus and Grafana
  • 68. PRESENTED BY RedisAI New data type: Tensor def addsq(a, b): return (a + b)**2 TorchScript CPU GPU0 GPU1 …
  • 69. PRESENTED BY Transactions Scoring – serving AI far from the data App Servers AI serving 1
  • 70. PRESENTED BY Transactions Scoring – serving AI far from the data 2 3 App Servers AI serving 1
  • 71. PRESENTED BY Transactions Scoring – serving AI far from the data 2 3 App Servers AI serving 4 Vectorization 1
  • 72. PRESENTED BY Transactions Scoring – serving AI far from the data 2 3 App Servers AI serving 5 6 4 Vectorization 1
  • 73. PRESENTED BY Transactions Scoring – serving AI far from the data 2 3 App Servers AI serving 5 6 4 Vectorization 7 1 ~200msec
  • 74. PRESENTED BY Transactions Scoring – serving AI near the data 1 App Servers +
  • 75. PRESENTED BY Transactions Scoring – serving AI near the data 1 App Servers 2 3 +
  • 76. PRESENTED BY Transactions Scoring – serving AI near the data 1 App Servers 2 34 + 1msec1msec10msec <15msec
  • 77. PRESENTED BY Redis & Data Models
  • 78. PRESENTED BY Top 5 database models
  • 79. PRESENTED BY Top 5 7 database models AI + Streams
  • 80. PRESENTED BY Challenge: multi-model operations < 1msec 1 msec App Servers
  • 81. PRESENTED BY Direct Inter-Model Communication Graph Search RedisGraph runs with RediSearch
  • 82. PRESENTED BY Single Dataset Copy Hashes Active-Active RediSearch
  • 83. PRESENTED BY In-database serverless for multi-model operations RedisGears Infinite programable options!
  • 84. PRESENTED BY RedisGears – high-performance architecture GearsCoordinator MapReducerGearsExecuter Gears infrastructure is written in C C - API
  • 85. PRESENTED BY Stream processing example Build a gear that creates a timeseries of the number of messages that come into the stream every second RedisTimeSeriesRedis Streams Every sec
  • 86. PRESENTED BY # create a pipe of operations gb = GearsBuilder('StreamReader’) # Increment a timeseries counter for this second gb.foreach(lambda x: execute('TS.INCRBY', 'msg_count', 1, 'RESET', 1)) # register the execution on `stream` gb.register(‘stream’) Build a gear that creates a timeseries of the number of messages that come into the stream every second Stream processing example
  • 88. PRESENTED BY Robotics arm use case 1000/sec
  • 89. PRESENTED BY Robotics arm use case 1000/sec Sensors data Streams2TS
  • 90. PRESENTED BY Robotics arm use case 1000/sec Sensors data Filtered data Streams2TS TS2AI
  • 91. PRESENTED BY Robotics arm use case 1000/sec Sensors data Filtered data Commands Streams2TS TS2AI AI2Streams
  • 92. PRESENTED BY Robotics arm use case 1000/sec Sensors data EDGE Filtered data Commands Streams2TS TS2AI AI2Streams
  • 93. PRESENTED BY Q1 Is Redis reliable ?  99.999% availability Q2 How fast can Redis go ?  200M ops/sec @ < 1msec latency on only 40 nodes cluster Q3 Is Redis affordable  80% savings with Redis on Flash, Intel PM as a DRAM replacements Recap Q4 What else Redis can do ?  RedisTimeSeries GA; multi-model operation @ < 1msec, everywhere (cloud, on-prem, edge)