SlideShare a Scribd company logo
1 of 53
Download to read offline
®

Fractal Tree Indexes
Theory to Practice
Percona Live London 2013
Tim Callaghan, Tokutek
tim@tokutek.com
@tmcallaghan
®

Tuesday, November 12, 13
Ever seen this?

IO Utilization Graph, performance is IO limited

®

Tuesday, November 12, 13
Who is Tokutek?

Tokutek builds highperformance database
software!
TokuDB - storage engine for
MySQL and MariaDB
TokuMX - storage engine for
MongoDB

Developer Interface"
"
Storage Engine"

HDD & SSD!
storage"

®

Tuesday, November 12, 13
Who am I?

• 17 year database consumer
• schema design, development, deployment
• database administration + infrastructure
• mostly Oracle
• 5 year database producer
• 2 years @ VoltDB
• 2+ years @ Tokutek

®

Tuesday, November 12, 13
Housekeeping

• Feedback is important to me
• Ideas for Webinars or Presentations?
• Who’s using MongoDB?
• Anyone using TokuDB or TokuMX?
• Please ask questions

®

Tuesday, November 12, 13
Agenda

• Why Fractal Tree indexes are cool
• What they enable in MySQL® (TokuDB)
• What they enable in MongoDB® (TokuMX)
• Q+A

®

Tuesday, November 12, 13
Indexing:
B-trees and
Fractal Tree Indexes

®

Tuesday, November 12, 13
B-trees

®

Tuesday, November 12, 13
B-tree Overview - vocabulary

Pivots
Pointers

Internal Nodes Path to data

Leaf Nodes Actual Data Sorted
®

Tuesday, November 12, 13
B-tree Overview - example
22

10

2, 3, 4

10,20

99

22,25

99

* Pivot Rule is >=

®

Tuesday, November 12, 13
B-tree Overview - search
“Find 25”
22

10

2, 3, 4

10,20

99

22,25

99

®

Tuesday, November 12, 13
B-tree Overview - insert
“Insert 15”
22

10

2, 3, 4

10,15,20

99

22,25

99

®

Tuesday, November 12, 13
B-tree Overview - performance
Performance is IO limited when data > RAM,
one IO is needed for each insert/update
(actually it’s one IO for every index on the table)
RAM

22

10

99

RAM

DISK
2, 3, 4

10,20

22,25

99

®

Tuesday, November 12, 13
Fractal Tree Indexes

®

Tuesday, November 12, 13
Fractal Tree Indexes
message
buffer

message
buffer

All internal nodes
have message
buffers

message
buffer

As buffers overflow,
they cascade down
the tree

Messages are
eventually applied to
leaf nodes

similar to B-trees
•store data in leaf nodes
•use index key for ordering

different than B-trees
•message buffers
•big nodes (4MB vs. ~16KB)
®

Tuesday, November 12, 13
Fractal Tree Indexes - sample data
25

10

2,3,4

10,20

99

22,25

99

Looks a lot like a b-tree!

®

Tuesday, November 12, 13
Fractal Tree Indexes - insert
insert 15;
insert (15)

25

10

2,3,4

•
•
•
•

99

10,20

22,25

99

search operations must consider messages along the way
messages cascade down the tree as buffers fill up
they are eventually applied to the leaf nodes, hundreds or
thousands of operations for a single IO
CPU and cache are conserved as important data is not ejected
®

Tuesday, November 12, 13
Fractal Tree Indexes - other operations
25

delete(8)
delete(2)
insert (8)

2,3,4

10

10,20

add_column(c4 bigint)
delete(99)
increment(22,+5)
...

99

22,25

insert (100)

99

Lots of operations can be messages!

®

Tuesday, November 12, 13
TokuDB
Fractal Tree Indexing +
MySQL/MariaDB

®

Tuesday, November 12, 13
What is TokuDB?

Transactional MySQL Storage Engine - think InnoDB
Available for MySQL 5.5 and MariaDB 5.5
ACID and MVCC
Free/OSS Community Edition
– http://github.com/Tokutek/ft-engine
• Enterprise Edition
– Commercial support + hot backup
•
•
•
•

Performance + Compression + Agility

20

Tuesday, November 12, 13

®
TokuDB Performance
Warning - Benchmarks Ahead!

®

Tuesday, November 12, 13
Indexed Insertion Performance
• High-performance insert/update/delete for large
databases (> RAM) while maintaining indexes

* old numbers, now > 25K/sec
22

Tuesday, November 12, 13

®
Sysbench Performance
Sysbench read/write workload, > RAM

The fastest IO is the one you never have to do (compression)
23

Tuesday, November 12, 13

®
Performance Advantages
•
•

•
•

Efficient index maintenance, especially secondary
indexes
Clustered secondary indexes
• Additional copy of the row is stored in the index
• No additional IO to get row data from primary key
• Think better covering index (all non-indexed columns)
• Compression eliminates size concerns
Big blocks = sequential IO for range scans
• Basement nodes are always co-located
Multi-threaded bulk loader

®

24

Tuesday, November 12, 13
TokuDB Compression

®

Tuesday, November 12, 13
Compression: TokuDB vs. InnoDB

• InnoDB compression misses force node splits, which
greatly reduces performance
– MySQL 5.6 “dynamic padding” (from FB), less cache
• Larger block size and flexible on-disk size wins!
• Multiple compression algorithms (lzma, quicklz, zlib)
• Larger, less frequent writes (much less IO)
• Why it matters on spinning disks:
– Compressed reads and amortized compressed writes
overcome IO limitations
• Why it matters on flash/SSD:
– Buy less : 250GB * 10x = as 2.5TB)
– Large/less frequent writes are flash friendly
26

Tuesday, November 12, 13

®
Compression + IO Reduction

• Server was at 90% IO utilization with InnoDB,
10% IO utilization with TokuDB

27

Tuesday, November 12, 13

®
Compression Performance
• iiBench benchmark

28

Tuesday, November 12, 13

®
Compression Achieved
• log data (extremely compressible)

29

Tuesday, November 12, 13

®
TokuDB Agility

®

Tuesday, November 12, 13
The Challenge of MySQL Schema Changes
• Common schema changes can take hours in
MySQL
– Adding, dropping, or expanding a column
– Adding an index
• And the table is unavailable for writes during the
process
• As a workaround, people generally
– Use a replication slave, then swap with master
– Use helper tools: Percona OSC, MySQL 5.6
o These have IO, CPU, RAM consequences

31

Tuesday, November 12, 13

®
Schema Changes Without Downtime
• In TokuDB, column add/drop/expand is
instantaneous
– “it’s just a message”
• Indexes can be created in the background while
table is fully available
– TokuDB just builds the index, it does not
rebuild the table (MySQL getting better)

32

Tuesday, November 12, 13

®
TokuMX
Fractal Tree Indexing +
MongoDB

®

Tuesday, November 12, 13
What is TokuMX?

• TokuMX = MongoDB with improved storage (Fractal Tree indexes)
• Drop in replacement for MongoDB v2.2 applications
– Including replication and sharding
– Same data model
– Same query language
– Drivers just work
• Open Source
– http://github.com/Tokutek/mongo

Performance + Compression + Transactions
®

Tuesday, November 12, 13
MongoDB Storage
memory mapped heap

db.test.insert({foo:55})
db.test.ensureIndex({foo:1})

PK index (_id + pointer)

Secondary index (foo + pointer)

18

85

4

(1,ptr5)

(4,ptr1),
(12,ptr8)

5555

(19,ptr7)

40

(10000,ptr2)

(2,ptr5),
(22,ptr6)

(50,ptr4)

120

(100,ptr7)

(222,ptr3)

The “pointer” tells MongoDB where to look in the heap for the requested
document (another IO)
®

35

Tuesday, November 12, 13
TokuMX Storage
db.test.insert({foo:55})
db.test.ensureIndex({foo:1})

memory mapped heap

PK index (_id + document)

Secondary index (foo + _id)

18

4

(1,doc)

(4,doc),
(12,doc)

85

5555

(19,doc)

40

(10000,doc)

(2,4), (22,12)

(50,19)

120

(100,10000)

(222,1)

One less IO per _id lookup, document is clustered in the index
®

36

Tuesday, November 12, 13
TokuMX Performance

®

Tuesday, November 12, 13
Performance - Indexed Insertion
• 100mm inserts into a collection with 3 secondary indexes

38

Tuesday, November 12, 13

®
Performance - Inserts on Indexed Arrays
• Indexed Insertion : Multikey (100 inserts per doc)

39

Tuesday, November 12, 13

®
Performance - Replication
• TokuMX replication allows secondary servers to process
replication without IO
– Simply injecting messages into the Fractal Tree
Indexes on the secondary server
– The “Hard Work” was done on the primary
o Uniqueness checking
o Transactional locking
o Update effort (read-before-write)
– Elimination of replication lag
• Your secondaries are fully available for read scaling!
– Wasn’t that the point?

40

Tuesday, November 12, 13

®
Performance - Lock Refinement
• TokuMX performs locking at the document level
– Extreme concurrency!
instance
database
collection

MongoDB v2.0
database

collection collection

collection

document

document document document

document

document

document

MongoDB v2.2

TokuMX

document
document
document

41

Tuesday, November 12, 13

®
Performance - Lock Refinement

42

Tuesday, November 12, 13

®
Performance - Lock Refinement + Reduced IO
• Sysbench benchmark (> RAM)

43

Tuesday, November 12, 13

®
Performance - Reduced IO
– Indexed insertion benchmark

44

Tuesday, November 12, 13

®
Performance - Clustered Indexes
•

Clustered secondary indexes
• Additional copy of the document is stored in the index
• No additional IO to get row data from primary key
• Think better covered index (all non-indexed fields)
• Good for point queries, great for range scans
• Compression eliminates size concerns

45

Tuesday, November 12, 13

®
Performance - Memory Management

• Two approaches to memory management
– MongoDB = memory-mapped files
o Operating system determines what data is
important
– TokuMX = managed cache
o User defined size
o TokuMX determines what data is important
• Run multiple TokuMX instances on a single server
– Each has it’s own fixed cache size

46

Tuesday, November 12, 13

®
TokuMX Compression

®

Tuesday, November 12, 13
Compression
• MongoDB does not offer compression
– Compressed file systems?
– Shortened field names?
o Remember: each field name is stored in every single document

• TokuMX easily achieves 5x-10x compression
– Buy less disk or flash
– Compressed reads and writes reduce overall IO
• TokuMX support 3 compression types
– zlib, quicklz, lzma (size vs. speed)
– all data is compressed
• Use descriptive field names!
– They are easy to compress

48

Tuesday, November 12, 13

®
Compression
• 31 million documents, bit torrent peer data
– http://cs.brown.edu/~pavlo/torrent/

49

Tuesday, November 12, 13

®
TokuMX Transactions

®

Tuesday, November 12, 13
ACID + MVCC
• ACID
– In MongoDB, multi-insertion operations allow for
partial success
o Asked to store 5 documents, 3 succeeded

– We offer “all or nothing” behavior
– Document level locking

• MVCC
– In MongoDB, queries can be interrupted by writers.
o The effect of these writers are visible to the reader

– TokuMX offers MVCC
o Reads are consistent as of the operation start

51

Tuesday, November 12, 13

®
Multi-statement Transactions

• TokuMX brings the following to MongoDB
– db.runCommand({“beginTransaction”, “isolation”:
“mvcc”})
– ... perform 1 or more operations
– db.runCommand(“rollbackTransaction”) |
db.runCommand(“commitTransaction”)
• Not allowed in sharded environments
– mongos will reject

52

Tuesday, November 12, 13

®
Questions?

Tim Callaghan
VP/Engineering, Tokutek
tim@tokutek.com
@tmcallaghan

®

Tuesday, November 12, 13

More Related Content

What's hot

ETL With Cassandra Streaming Bulk Loading
ETL With Cassandra Streaming Bulk LoadingETL With Cassandra Streaming Bulk Loading
ETL With Cassandra Streaming Bulk Loading
alex_araujo
 
Introduction to Storm
Introduction to Storm Introduction to Storm
Introduction to Storm
Chandler Huang
 
Cassandra overview
Cassandra overviewCassandra overview
Cassandra overview
Sean Murphy
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to Redis
Dvir Volk
 

What's hot (20)

What is NoSQL and CAP Theorem
What is NoSQL and CAP TheoremWhat is NoSQL and CAP Theorem
What is NoSQL and CAP Theorem
 
RocksDB detail
RocksDB detailRocksDB detail
RocksDB detail
 
Ceph - A distributed storage system
Ceph - A distributed storage systemCeph - A distributed storage system
Ceph - A distributed storage system
 
TokuDB vs RocksDB
TokuDB vs RocksDBTokuDB vs RocksDB
TokuDB vs RocksDB
 
ETL With Cassandra Streaming Bulk Loading
ETL With Cassandra Streaming Bulk LoadingETL With Cassandra Streaming Bulk Loading
ETL With Cassandra Streaming Bulk Loading
 
Ceph and RocksDB
Ceph and RocksDBCeph and RocksDB
Ceph and RocksDB
 
Apache Kudu: Technical Deep Dive


Apache Kudu: Technical Deep Dive

Apache Kudu: Technical Deep Dive


Apache Kudu: Technical Deep Dive


 
[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...
 
Introduction to memcached
Introduction to memcachedIntroduction to memcached
Introduction to memcached
 
Introduction to Storm
Introduction to Storm Introduction to Storm
Introduction to Storm
 
DataStax: Extreme Cassandra Optimization: The Sequel
DataStax: Extreme Cassandra Optimization: The SequelDataStax: Extreme Cassandra Optimization: The Sequel
DataStax: Extreme Cassandra Optimization: The Sequel
 
Cassandra overview
Cassandra overviewCassandra overview
Cassandra overview
 
Introduction to Redis
Introduction to RedisIntroduction to Redis
Introduction to Redis
 
How we got to 1 millisecond latency in 99% under repair, compaction, and flus...
How we got to 1 millisecond latency in 99% under repair, compaction, and flus...How we got to 1 millisecond latency in 99% under repair, compaction, and flus...
How we got to 1 millisecond latency in 99% under repair, compaction, and flus...
 
Logging with Logback in Scala
Logging with Logback in ScalaLogging with Logback in Scala
Logging with Logback in Scala
 
RocksDB Performance and Reliability Practices
RocksDB Performance and Reliability PracticesRocksDB Performance and Reliability Practices
RocksDB Performance and Reliability Practices
 
Database Performance at Scale Masterclass: Database Internals by Pavel Emelya...
Database Performance at Scale Masterclass: Database Internals by Pavel Emelya...Database Performance at Scale Masterclass: Database Internals by Pavel Emelya...
Database Performance at Scale Masterclass: Database Internals by Pavel Emelya...
 
Scylla Summit 2022: How to Migrate a Counter Table for 68 Billion Records
Scylla Summit 2022: How to Migrate a Counter Table for 68 Billion RecordsScylla Summit 2022: How to Migrate a Counter Table for 68 Billion Records
Scylla Summit 2022: How to Migrate a Counter Table for 68 Billion Records
 
Best Practices – Extreme Performance with Data Warehousing on Oracle Database
Best Practices – Extreme Performance with Data Warehousing on Oracle DatabaseBest Practices – Extreme Performance with Data Warehousing on Oracle Database
Best Practices – Extreme Performance with Data Warehousing on Oracle Database
 
Spark Performance Tuning .pdf
Spark Performance Tuning .pdfSpark Performance Tuning .pdf
Spark Performance Tuning .pdf
 

Viewers also liked

Database Design and Implementation
Database Design and ImplementationDatabase Design and Implementation
Database Design and Implementation
Christian Reina
 
Fractals presentation
Fractals presentationFractals presentation
Fractals presentation
gbdriver80
 
MySQL源码分析.02.Handler API
MySQL源码分析.02.Handler APIMySQL源码分析.02.Handler API
MySQL源码分析.02.Handler API
Lixun Peng
 
MySQL优化、新特性和新架构 彭立勋
MySQL优化、新特性和新架构 彭立勋MySQL优化、新特性和新架构 彭立勋
MySQL优化、新特性和新架构 彭立勋
Lixun Peng
 
MySQL源码分析.01.代码结构与基本流程
MySQL源码分析.01.代码结构与基本流程MySQL源码分析.01.代码结构与基本流程
MySQL源码分析.01.代码结构与基本流程
Lixun Peng
 
MySQL新技术探索与实践
MySQL新技术探索与实践MySQL新技术探索与实践
MySQL新技术探索与实践
Lixun Peng
 
阿里云RDS for MySQL的若干优化
阿里云RDS for MySQL的若干优化阿里云RDS for MySQL的若干优化
阿里云RDS for MySQL的若干优化
Lixun Peng
 
DoubleBinlog方案
DoubleBinlog方案DoubleBinlog方案
DoubleBinlog方案
Lixun Peng
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
sameerraaj
 
State of the Cloud 2017
State of the Cloud 2017State of the Cloud 2017
State of the Cloud 2017
Bessemer Venture Partners
 

Viewers also liked (19)

MySQL 5.7 + Java
MySQL 5.7 + JavaMySQL 5.7 + Java
MySQL 5.7 + Java
 
Big challenges
Big challengesBig challenges
Big challenges
 
Web design basics 1
Web design basics 1Web design basics 1
Web design basics 1
 
Database Design and Implementation
Database Design and ImplementationDatabase Design and Implementation
Database Design and Implementation
 
Fractals presentation
Fractals presentationFractals presentation
Fractals presentation
 
Lessons Learned From Running Spark On Docker
Lessons Learned From Running Spark On DockerLessons Learned From Running Spark On Docker
Lessons Learned From Running Spark On Docker
 
MySQL源码分析.02.Handler API
MySQL源码分析.02.Handler APIMySQL源码分析.02.Handler API
MySQL源码分析.02.Handler API
 
MySQL优化、新特性和新架构 彭立勋
MySQL优化、新特性和新架构 彭立勋MySQL优化、新特性和新架构 彭立勋
MySQL优化、新特性和新架构 彭立勋
 
MySQL源码分析.01.代码结构与基本流程
MySQL源码分析.01.代码结构与基本流程MySQL源码分析.01.代码结构与基本流程
MySQL源码分析.01.代码结构与基本流程
 
MySQL新技术探索与实践
MySQL新技术探索与实践MySQL新技术探索与实践
MySQL新技术探索与实践
 
阿里云RDS for MySQL的若干优化
阿里云RDS for MySQL的若干优化阿里云RDS for MySQL的若干优化
阿里云RDS for MySQL的若干优化
 
DoubleBinlog方案
DoubleBinlog方案DoubleBinlog方案
DoubleBinlog方案
 
Database - Design & Implementation - 1
Database - Design & Implementation - 1Database - Design & Implementation - 1
Database - Design & Implementation - 1
 
Dbms slides
Dbms slidesDbms slides
Dbms slides
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
 
The traditional data center is dead: How to win with hybrid DR
The traditional data center is dead: How to win with hybrid DRThe traditional data center is dead: How to win with hybrid DR
The traditional data center is dead: How to win with hybrid DR
 
State of the Cloud 2017
State of the Cloud 2017State of the Cloud 2017
State of the Cloud 2017
 
FractalTreeIndex
FractalTreeIndexFractalTreeIndex
FractalTreeIndex
 
Conf orm - explain
Conf orm - explainConf orm - explain
Conf orm - explain
 

Similar to Fractal Tree Indexes : From Theory to Practice

Scalable and High available Distributed File System Metadata Service Using gR...
Scalable and High available Distributed File System Metadata Service Using gR...Scalable and High available Distributed File System Metadata Service Using gR...
Scalable and High available Distributed File System Metadata Service Using gR...
Alluxio, Inc.
 
Meetup#2: Building responsive Symbology & Suggest WebService
Meetup#2: Building responsive Symbology & Suggest WebServiceMeetup#2: Building responsive Symbology & Suggest WebService
Meetup#2: Building responsive Symbology & Suggest WebService
Minsk MongoDB User Group
 

Similar to Fractal Tree Indexes : From Theory to Practice (20)

Get More Out of MongoDB with TokuMX
Get More Out of MongoDB with TokuMXGet More Out of MongoDB with TokuMX
Get More Out of MongoDB with TokuMX
 
5 Pitfalls to Avoid with MongoDB
5 Pitfalls to Avoid with MongoDB5 Pitfalls to Avoid with MongoDB
5 Pitfalls to Avoid with MongoDB
 
20140128 webinar-get-more-out-of-mysql-with-tokudb-140319063324-phpapp02
20140128 webinar-get-more-out-of-mysql-with-tokudb-140319063324-phpapp0220140128 webinar-get-more-out-of-mysql-with-tokudb-140319063324-phpapp02
20140128 webinar-get-more-out-of-mysql-with-tokudb-140319063324-phpapp02
 
Use Your MySQL Knowledge to Become a MongoDB Guru
Use Your MySQL Knowledge to Become a MongoDB GuruUse Your MySQL Knowledge to Become a MongoDB Guru
Use Your MySQL Knowledge to Become a MongoDB Guru
 
Toku DB by Aswin
Toku DB by AswinToku DB by Aswin
Toku DB by Aswin
 
Get More Out of MySQL with TokuDB
Get More Out of MySQL with TokuDBGet More Out of MySQL with TokuDB
Get More Out of MySQL with TokuDB
 
Introduction to TokuDB v7.5 and Read Free Replication
Introduction to TokuDB v7.5 and Read Free ReplicationIntroduction to TokuDB v7.5 and Read Free Replication
Introduction to TokuDB v7.5 and Read Free Replication
 
week1slides1704202828322.pdf
week1slides1704202828322.pdfweek1slides1704202828322.pdf
week1slides1704202828322.pdf
 
Say Hello to MyRocks
Say Hello to MyRocksSay Hello to MyRocks
Say Hello to MyRocks
 
MongoDB.pdf
MongoDB.pdfMongoDB.pdf
MongoDB.pdf
 
Scalable and High available Distributed File System Metadata Service Using gR...
Scalable and High available Distributed File System Metadata Service Using gR...Scalable and High available Distributed File System Metadata Service Using gR...
Scalable and High available Distributed File System Metadata Service Using gR...
 
Meetup#2: Building responsive Symbology & Suggest WebService
Meetup#2: Building responsive Symbology & Suggest WebServiceMeetup#2: Building responsive Symbology & Suggest WebService
Meetup#2: Building responsive Symbology & Suggest WebService
 
MongoDB Pros and Cons
MongoDB Pros and ConsMongoDB Pros and Cons
MongoDB Pros and Cons
 
MySQL 开发
MySQL 开发MySQL 开发
MySQL 开发
 
Introduction to Apache Tajo: Data Warehouse for Big Data
Introduction to Apache Tajo: Data Warehouse for Big DataIntroduction to Apache Tajo: Data Warehouse for Big Data
Introduction to Apache Tajo: Data Warehouse for Big Data
 
Percona FT / TokuDB
Percona FT / TokuDBPercona FT / TokuDB
Percona FT / TokuDB
 
Making the case for write-optimized database algorithms / Mark Callaghan (Fac...
Making the case for write-optimized database algorithms / Mark Callaghan (Fac...Making the case for write-optimized database algorithms / Mark Callaghan (Fac...
Making the case for write-optimized database algorithms / Mark Callaghan (Fac...
 
When is Myrocks good? 2020 Webinar Series
When is Myrocks good? 2020 Webinar SeriesWhen is Myrocks good? 2020 Webinar Series
When is Myrocks good? 2020 Webinar Series
 
SQLDAY 2023 Chodkowski Adrian Databricks Performance Tuning
SQLDAY 2023 Chodkowski Adrian Databricks Performance TuningSQLDAY 2023 Chodkowski Adrian Databricks Performance Tuning
SQLDAY 2023 Chodkowski Adrian Databricks Performance Tuning
 
FlashSQL 소개 & TechTalk
FlashSQL 소개 & TechTalkFlashSQL 소개 & TechTalk
FlashSQL 소개 & TechTalk
 

More from Tim Callaghan (7)

Is It Fast? : Measuring MongoDB Performance
Is It Fast? : Measuring MongoDB PerformanceIs It Fast? : Measuring MongoDB Performance
Is It Fast? : Measuring MongoDB Performance
 
Benchmarking MongoDB for Fame and Fortune
Benchmarking MongoDB for Fame and FortuneBenchmarking MongoDB for Fame and Fortune
Benchmarking MongoDB for Fame and Fortune
 
So you want to be a software developer? (version 2.0)
So you want to be a software developer? (version 2.0)So you want to be a software developer? (version 2.0)
So you want to be a software developer? (version 2.0)
 
Performance Benchmarking: Tips, Tricks, and Lessons Learned
Performance Benchmarking: Tips, Tricks, and Lessons LearnedPerformance Benchmarking: Tips, Tricks, and Lessons Learned
Performance Benchmarking: Tips, Tricks, and Lessons Learned
 
Use Your MySQL Knowledge to Become an Instant Cassandra Guru
Use Your MySQL Knowledge to Become an Instant Cassandra GuruUse Your MySQL Knowledge to Become an Instant Cassandra Guru
Use Your MySQL Knowledge to Become an Instant Cassandra Guru
 
Creating a Benchmarking Infrastructure That Just Works
Creating a Benchmarking Infrastructure That Just WorksCreating a Benchmarking Infrastructure That Just Works
Creating a Benchmarking Infrastructure That Just Works
 
VoltDB : A Technical Overview
VoltDB : A Technical OverviewVoltDB : A Technical Overview
VoltDB : A Technical Overview
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

Fractal Tree Indexes : From Theory to Practice

  • 1. ® Fractal Tree Indexes Theory to Practice Percona Live London 2013 Tim Callaghan, Tokutek tim@tokutek.com @tmcallaghan ® Tuesday, November 12, 13
  • 2. Ever seen this? IO Utilization Graph, performance is IO limited ® Tuesday, November 12, 13
  • 3. Who is Tokutek? Tokutek builds highperformance database software! TokuDB - storage engine for MySQL and MariaDB TokuMX - storage engine for MongoDB Developer Interface" " Storage Engine" HDD & SSD! storage" ® Tuesday, November 12, 13
  • 4. Who am I? • 17 year database consumer • schema design, development, deployment • database administration + infrastructure • mostly Oracle • 5 year database producer • 2 years @ VoltDB • 2+ years @ Tokutek ® Tuesday, November 12, 13
  • 5. Housekeeping • Feedback is important to me • Ideas for Webinars or Presentations? • Who’s using MongoDB? • Anyone using TokuDB or TokuMX? • Please ask questions ® Tuesday, November 12, 13
  • 6. Agenda • Why Fractal Tree indexes are cool • What they enable in MySQL® (TokuDB) • What they enable in MongoDB® (TokuMX) • Q+A ® Tuesday, November 12, 13
  • 7. Indexing: B-trees and Fractal Tree Indexes ® Tuesday, November 12, 13
  • 9. B-tree Overview - vocabulary Pivots Pointers Internal Nodes Path to data Leaf Nodes Actual Data Sorted ® Tuesday, November 12, 13
  • 10. B-tree Overview - example 22 10 2, 3, 4 10,20 99 22,25 99 * Pivot Rule is >= ® Tuesday, November 12, 13
  • 11. B-tree Overview - search “Find 25” 22 10 2, 3, 4 10,20 99 22,25 99 ® Tuesday, November 12, 13
  • 12. B-tree Overview - insert “Insert 15” 22 10 2, 3, 4 10,15,20 99 22,25 99 ® Tuesday, November 12, 13
  • 13. B-tree Overview - performance Performance is IO limited when data > RAM, one IO is needed for each insert/update (actually it’s one IO for every index on the table) RAM 22 10 99 RAM DISK 2, 3, 4 10,20 22,25 99 ® Tuesday, November 12, 13
  • 15. Fractal Tree Indexes message buffer message buffer All internal nodes have message buffers message buffer As buffers overflow, they cascade down the tree Messages are eventually applied to leaf nodes similar to B-trees •store data in leaf nodes •use index key for ordering different than B-trees •message buffers •big nodes (4MB vs. ~16KB) ® Tuesday, November 12, 13
  • 16. Fractal Tree Indexes - sample data 25 10 2,3,4 10,20 99 22,25 99 Looks a lot like a b-tree! ® Tuesday, November 12, 13
  • 17. Fractal Tree Indexes - insert insert 15; insert (15) 25 10 2,3,4 • • • • 99 10,20 22,25 99 search operations must consider messages along the way messages cascade down the tree as buffers fill up they are eventually applied to the leaf nodes, hundreds or thousands of operations for a single IO CPU and cache are conserved as important data is not ejected ® Tuesday, November 12, 13
  • 18. Fractal Tree Indexes - other operations 25 delete(8) delete(2) insert (8) 2,3,4 10 10,20 add_column(c4 bigint) delete(99) increment(22,+5) ... 99 22,25 insert (100) 99 Lots of operations can be messages! ® Tuesday, November 12, 13
  • 19. TokuDB Fractal Tree Indexing + MySQL/MariaDB ® Tuesday, November 12, 13
  • 20. What is TokuDB? Transactional MySQL Storage Engine - think InnoDB Available for MySQL 5.5 and MariaDB 5.5 ACID and MVCC Free/OSS Community Edition – http://github.com/Tokutek/ft-engine • Enterprise Edition – Commercial support + hot backup • • • • Performance + Compression + Agility 20 Tuesday, November 12, 13 ®
  • 21. TokuDB Performance Warning - Benchmarks Ahead! ® Tuesday, November 12, 13
  • 22. Indexed Insertion Performance • High-performance insert/update/delete for large databases (> RAM) while maintaining indexes * old numbers, now > 25K/sec 22 Tuesday, November 12, 13 ®
  • 23. Sysbench Performance Sysbench read/write workload, > RAM The fastest IO is the one you never have to do (compression) 23 Tuesday, November 12, 13 ®
  • 24. Performance Advantages • • • • Efficient index maintenance, especially secondary indexes Clustered secondary indexes • Additional copy of the row is stored in the index • No additional IO to get row data from primary key • Think better covering index (all non-indexed columns) • Compression eliminates size concerns Big blocks = sequential IO for range scans • Basement nodes are always co-located Multi-threaded bulk loader ® 24 Tuesday, November 12, 13
  • 26. Compression: TokuDB vs. InnoDB • InnoDB compression misses force node splits, which greatly reduces performance – MySQL 5.6 “dynamic padding” (from FB), less cache • Larger block size and flexible on-disk size wins! • Multiple compression algorithms (lzma, quicklz, zlib) • Larger, less frequent writes (much less IO) • Why it matters on spinning disks: – Compressed reads and amortized compressed writes overcome IO limitations • Why it matters on flash/SSD: – Buy less : 250GB * 10x = as 2.5TB) – Large/less frequent writes are flash friendly 26 Tuesday, November 12, 13 ®
  • 27. Compression + IO Reduction • Server was at 90% IO utilization with InnoDB, 10% IO utilization with TokuDB 27 Tuesday, November 12, 13 ®
  • 28. Compression Performance • iiBench benchmark 28 Tuesday, November 12, 13 ®
  • 29. Compression Achieved • log data (extremely compressible) 29 Tuesday, November 12, 13 ®
  • 31. The Challenge of MySQL Schema Changes • Common schema changes can take hours in MySQL – Adding, dropping, or expanding a column – Adding an index • And the table is unavailable for writes during the process • As a workaround, people generally – Use a replication slave, then swap with master – Use helper tools: Percona OSC, MySQL 5.6 o These have IO, CPU, RAM consequences 31 Tuesday, November 12, 13 ®
  • 32. Schema Changes Without Downtime • In TokuDB, column add/drop/expand is instantaneous – “it’s just a message” • Indexes can be created in the background while table is fully available – TokuDB just builds the index, it does not rebuild the table (MySQL getting better) 32 Tuesday, November 12, 13 ®
  • 33. TokuMX Fractal Tree Indexing + MongoDB ® Tuesday, November 12, 13
  • 34. What is TokuMX? • TokuMX = MongoDB with improved storage (Fractal Tree indexes) • Drop in replacement for MongoDB v2.2 applications – Including replication and sharding – Same data model – Same query language – Drivers just work • Open Source – http://github.com/Tokutek/mongo Performance + Compression + Transactions ® Tuesday, November 12, 13
  • 35. MongoDB Storage memory mapped heap db.test.insert({foo:55}) db.test.ensureIndex({foo:1}) PK index (_id + pointer) Secondary index (foo + pointer) 18 85 4 (1,ptr5) (4,ptr1), (12,ptr8) 5555 (19,ptr7) 40 (10000,ptr2) (2,ptr5), (22,ptr6) (50,ptr4) 120 (100,ptr7) (222,ptr3) The “pointer” tells MongoDB where to look in the heap for the requested document (another IO) ® 35 Tuesday, November 12, 13
  • 36. TokuMX Storage db.test.insert({foo:55}) db.test.ensureIndex({foo:1}) memory mapped heap PK index (_id + document) Secondary index (foo + _id) 18 4 (1,doc) (4,doc), (12,doc) 85 5555 (19,doc) 40 (10000,doc) (2,4), (22,12) (50,19) 120 (100,10000) (222,1) One less IO per _id lookup, document is clustered in the index ® 36 Tuesday, November 12, 13
  • 38. Performance - Indexed Insertion • 100mm inserts into a collection with 3 secondary indexes 38 Tuesday, November 12, 13 ®
  • 39. Performance - Inserts on Indexed Arrays • Indexed Insertion : Multikey (100 inserts per doc) 39 Tuesday, November 12, 13 ®
  • 40. Performance - Replication • TokuMX replication allows secondary servers to process replication without IO – Simply injecting messages into the Fractal Tree Indexes on the secondary server – The “Hard Work” was done on the primary o Uniqueness checking o Transactional locking o Update effort (read-before-write) – Elimination of replication lag • Your secondaries are fully available for read scaling! – Wasn’t that the point? 40 Tuesday, November 12, 13 ®
  • 41. Performance - Lock Refinement • TokuMX performs locking at the document level – Extreme concurrency! instance database collection MongoDB v2.0 database collection collection collection document document document document document document document MongoDB v2.2 TokuMX document document document 41 Tuesday, November 12, 13 ®
  • 42. Performance - Lock Refinement 42 Tuesday, November 12, 13 ®
  • 43. Performance - Lock Refinement + Reduced IO • Sysbench benchmark (> RAM) 43 Tuesday, November 12, 13 ®
  • 44. Performance - Reduced IO – Indexed insertion benchmark 44 Tuesday, November 12, 13 ®
  • 45. Performance - Clustered Indexes • Clustered secondary indexes • Additional copy of the document is stored in the index • No additional IO to get row data from primary key • Think better covered index (all non-indexed fields) • Good for point queries, great for range scans • Compression eliminates size concerns 45 Tuesday, November 12, 13 ®
  • 46. Performance - Memory Management • Two approaches to memory management – MongoDB = memory-mapped files o Operating system determines what data is important – TokuMX = managed cache o User defined size o TokuMX determines what data is important • Run multiple TokuMX instances on a single server – Each has it’s own fixed cache size 46 Tuesday, November 12, 13 ®
  • 48. Compression • MongoDB does not offer compression – Compressed file systems? – Shortened field names? o Remember: each field name is stored in every single document • TokuMX easily achieves 5x-10x compression – Buy less disk or flash – Compressed reads and writes reduce overall IO • TokuMX support 3 compression types – zlib, quicklz, lzma (size vs. speed) – all data is compressed • Use descriptive field names! – They are easy to compress 48 Tuesday, November 12, 13 ®
  • 49. Compression • 31 million documents, bit torrent peer data – http://cs.brown.edu/~pavlo/torrent/ 49 Tuesday, November 12, 13 ®
  • 51. ACID + MVCC • ACID – In MongoDB, multi-insertion operations allow for partial success o Asked to store 5 documents, 3 succeeded – We offer “all or nothing” behavior – Document level locking • MVCC – In MongoDB, queries can be interrupted by writers. o The effect of these writers are visible to the reader – TokuMX offers MVCC o Reads are consistent as of the operation start 51 Tuesday, November 12, 13 ®
  • 52. Multi-statement Transactions • TokuMX brings the following to MongoDB – db.runCommand({“beginTransaction”, “isolation”: “mvcc”}) – ... perform 1 or more operations – db.runCommand(“rollbackTransaction”) | db.runCommand(“commitTransaction”) • Not allowed in sharded environments – mongos will reject 52 Tuesday, November 12, 13 ®