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

Dongwon Kim – A Comparative Performance Evaluation of Flink
Dongwon Kim – A Comparative Performance Evaluation of FlinkDongwon Kim – A Comparative Performance Evaluation of Flink
Dongwon Kim – A Comparative Performance Evaluation of Flink
Flink Forward
 
MongoDB Memory Management Demystified
MongoDB Memory Management DemystifiedMongoDB Memory Management Demystified
MongoDB Memory Management Demystified
MongoDB
 

What's hot (20)

Dongwon Kim – A Comparative Performance Evaluation of Flink
Dongwon Kim – A Comparative Performance Evaluation of FlinkDongwon Kim – A Comparative Performance Evaluation of Flink
Dongwon Kim – A Comparative Performance Evaluation of Flink
 
M|18 Deep Dive: InnoDB Transactions and Write Paths
M|18 Deep Dive: InnoDB Transactions and Write PathsM|18 Deep Dive: InnoDB Transactions and Write Paths
M|18 Deep Dive: InnoDB Transactions and Write Paths
 
Exadata_X10M-Hardware-Overview.pdf
Exadata_X10M-Hardware-Overview.pdfExadata_X10M-Hardware-Overview.pdf
Exadata_X10M-Hardware-Overview.pdf
 
Top NoSQL Data Modeling Mistakes
Top NoSQL Data Modeling MistakesTop NoSQL Data Modeling Mistakes
Top NoSQL Data Modeling Mistakes
 
NoSQL
NoSQLNoSQL
NoSQL
 
Parquet Hadoop Summit 2013
Parquet Hadoop Summit 2013Parquet Hadoop Summit 2013
Parquet Hadoop Summit 2013
 
PostgreSQL 15 and its Major Features -(Aakash M - Mydbops) - Mydbops Opensour...
PostgreSQL 15 and its Major Features -(Aakash M - Mydbops) - Mydbops Opensour...PostgreSQL 15 and its Major Features -(Aakash M - Mydbops) - Mydbops Opensour...
PostgreSQL 15 and its Major Features -(Aakash M - Mydbops) - Mydbops Opensour...
 
Capacity Planning For Your Growing MongoDB Cluster
Capacity Planning For Your Growing MongoDB ClusterCapacity Planning For Your Growing MongoDB Cluster
Capacity Planning For Your Growing MongoDB Cluster
 
Mongo DB: Fundamentals & Basics/ An Overview of MongoDB/ Mongo DB tutorials
Mongo DB: Fundamentals & Basics/ An Overview of MongoDB/ Mongo DB tutorialsMongo DB: Fundamentals & Basics/ An Overview of MongoDB/ Mongo DB tutorials
Mongo DB: Fundamentals & Basics/ An Overview of MongoDB/ Mongo DB tutorials
 
Backup, Restore, and Disaster Recovery
Backup, Restore, and Disaster RecoveryBackup, Restore, and Disaster Recovery
Backup, Restore, and Disaster Recovery
 
Management Zabbix with Terraform
Management Zabbix with TerraformManagement Zabbix with Terraform
Management Zabbix with Terraform
 
MongoDB Backup & Disaster Recovery
MongoDB Backup & Disaster RecoveryMongoDB Backup & Disaster Recovery
MongoDB Backup & Disaster Recovery
 
State transfer With Galera
State transfer With GaleraState transfer With Galera
State transfer With Galera
 
MongoDB Memory Management Demystified
MongoDB Memory Management DemystifiedMongoDB Memory Management Demystified
MongoDB Memory Management Demystified
 
1.mysql disk io 모니터링 및 분석사례
1.mysql disk io 모니터링 및 분석사례1.mysql disk io 모니터링 및 분석사례
1.mysql disk io 모니터링 및 분석사례
 
MySQL Space Management
MySQL Space ManagementMySQL Space Management
MySQL Space Management
 
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...
 
MongoDB WiredTiger Internals: Journey To Transactions
MongoDB WiredTiger Internals: Journey To TransactionsMongoDB WiredTiger Internals: Journey To Transactions
MongoDB WiredTiger Internals: Journey To Transactions
 
NOSQL uma breve introdução
NOSQL uma breve introduçãoNOSQL uma breve introdução
NOSQL uma breve introdução
 
ELK: Moose-ively scaling your log system
ELK: Moose-ively scaling your log systemELK: Moose-ively scaling your log system
ELK: Moose-ively scaling your log system
 

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
 
Performance of fractal tree databases
Performance of fractal tree databasesPerformance of fractal tree databases
Performance of fractal tree databases
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 (20)

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新技术探索与实践
 
Performance of fractal tree databases
Performance of fractal tree databasesPerformance of fractal tree databases
Performance of fractal tree databases
 
阿里云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 开发
 
RocksDB Performance and Reliability Practices
RocksDB Performance and Reliability PracticesRocksDB Performance and Reliability Practices
RocksDB Performance and Reliability Practices
 
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
 

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

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Recently uploaded (20)

"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
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...
 
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
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
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
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

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 ®