SlideShare a Scribd company logo
Greg Brockman
Andy Brody
Christian Anderson
Philipp Antoni
Carl Jackson
Jonas Schneider

Siddarth
Chandrasekaran
Ludwig Pettersson
Nelson Elhage
Steve Woodrow
Jorge Ortiz
Participation
● ~7.5k participants from 97 countries, 6
continents
● ~9.5k unique IP logins
● 216 capturers
Solvers
CAPTURE THE FLAG

ARCHITECTURE
Or, an illustrated guide to flowcharts
What’s the holy grail of scaling?

Ø
Challenges
Scaling up to unknown capacity
- 53 instances, 800 ECU at peak

User isolation
Reliability and Availability (*-abilities)
git push: what happens?
git push → lvl0-asdf@stripe-ctf.com:level0
stripe-ctf.com. IN A

ctfweb
ctfweb
ctfweb
(sinatra)

gate
gate

https://stripe-ctf.com/

(nginx, haproxy)

submitter
submitter
submitter
(poseidon)

colossus
(LDAP, scoring)

(poseidon)
(poseidon)

test case
test case
test case
generator
test case
generator
test case
generator
build
generator
generator

(sinatra)
(sinatra)

queue
queue

ctfdb
ctfdb
ctfdb
(mongo)
(mongo)
(mongo)

(RabbitMQ) .
(RabbitMQ)

(docker)

test case
test case
test case
generator
test case
generator
test case
generator
worker
generator
generator
(docker)

gitcoin

test case
test case
test case
generator
test case
generator
test case
test case
generator
generator.
generator
gen
What Went Wrong
– containerization
– garbage collection
- containers, filesystems, disk space
– system stability
– bugs, misconfiguration
What Went Right
– containerization
– service architecture
- queueing, separation of roles
– load balancing
– horizontal scaling
Level 0
The Mysterious Program
Level 0: Sets
Level 0: mmap
● mmap,munmap - map or unmap files or
devices into memory
● mmap the dictionary into memory
● You can actually mmap stdin as well!
● Binary search!
Level 0: Bloom filters
●
●
●
●
●

Hash function: f(str) => int
Look at the result of N hash functions.
Probabilistic.
False positives, but no false negatives.
If you run into false positives, just push
again!
Level 0: Minimal perfect hashing
Given dictionary D = {w₁, w₂, … wn}
use MATH to generate a hash function f
f : D → {0..n-1} is one-to-one
aka every word hashes to a different small
integer
● So you can build a no-collisions hash table
● CMPH - C Minimal Perfect Hashing Library
● Build this ahead of time, link it to the binary
●
●
●
●
Level 1
Gitcoin
Gitcoin
commit 000000216ba61aecaafb11135ee43b1674855d6ff7
Author: Alyssa P Hacker <alyssa@example.com>
Date:
Wed Jan 22 14:10:15 2014 -0800
Give myself a Gitcoin! nonce: tahf8buC
diff --git a/LEDGER.txt b/LEDGER.txt
index 3890681..41980b2 100644
--- a/LEDGER.txt
+++ b/LEDGER.txt
@@ -7,3 +7,4 @@ carl: 30
gdb: 12
nelhage: 45
jorge: 30
+user-aph123: 1
Why crypto currencies?
– distributed currency system
– git security model
– massively parallel problems
– using the right tools for the job
Git object model
Git object model
$ git cat-file -p 000000effe7d920b391a24633e7298469dcf51b5
tree 7da86a5b10ff6db916598b653ce63e1dc0cb73c8
parent 0000000df4815161b72f4c5ed23e9fbf5deed922
author Alyssa P Hacker <alyssa@example.com> 1391129313 +0000
committer Alyssa P Hacker <alyssa@example.com> 1391129313
+0000
Mined a Gitcoin!
nonce 0302d1e2

$ git show 000000
error: short SHA1 000000 is ambiguous.
error: short SHA1 000000 is ambiguous.
Remember wafflecopter?

Want to do as few rounds of SHA1 as possible
Compute prefix, update only for nonce
SHA1 is Embarrassingly Parallel

– Each miner can be totally independent
– Each miner requires little memory
– Each miner requires little code
Tools: a spoon (bash)
Tools: a shovel (go)
Tools: an army of backhoes (GPU)
Tools: big machines (ASIC)
Bonus Round
Hash Rates:
bash: 400 H/s
our go miners: 1.9 MH/s
100 cores EC2: 130 MH/s
GPU: 1-2 GH/s
Network: ~10 GH/s
WE DID IT!
Dogecoin is only at 80 GH/s
Level 2
DDOS Defense
Elephants and mice: a DDOS model
Elephants and mice: a DDOS model
The stub of a Node.js proxy
Balance across the backends
Balance across the backends
1. Round robin
Balance across the backends
1. Round robin
2. Choose backend with min. load
Balance across the backends
1. Round robin
2. Choose backend with min. load
3. Randomize
Let the mice through
Let the mice through
1. Reduce the overall load
Let the mice through
1. Reduce the overall load
2. Use an off-the-shelf solution
Let the mice through
1. Reduce the overall load
2. Use an off-the-shelf solution
3. Learn to recognize a mouse
If you had a global view
Recognize a mouse
1. Threshold rate or number
2. Learn by hand or with automation
The top solutions
➔ Balance load in a simple way
➔ Learn to recognize a mouse
➔ Keep an eye on the backends
Level 3
Instant Code Search
We’re sorry about the Scala
The problem
● Text search over ~100M of text
● Arbitrary substring search (not just whole
words)
● There is a “free” indexing stage
● Distribute across up to 4 nodes
● Each node is limited to 500M of RAM
Search 101: Inverted Index
/tree/A: “the quick brown fox jumps over …”
/tree/B: “the fox is red”

“the”

[A, B]

“quick”

[A]

“brown”

[A]

“fox”

[A, B]

“red”

[B]
Search 102: Arbitrary Substring
● “trigram index”
● Store an inverted index of trigrams
● “the quick brown fox …” →
“the”, “he_”, “e_q”, “_qu”, “qui”, “uic”, …

● To query, look up all trigrams in the search
term, and intersect
● Search(“rown”) →
index[“row”] ∩ index[“own”]
○ Check each result to verify the match
Sharding
● We give you four nodes
● …but they all run on the same physical node
during grading
● And we didn’t resource-limit grading
containers (other than memory)
● So you don’t actually get more CPU, disk
I/O, or memory bandwidth
● Sharding ended up not really mattering
Winning the contest
● The spec is for arbitrary substring search
● But we only generate/query words from a
dictionary
● Some words are substrings of other
words…
● … but not too many
● Use an inverted index over dictionary words
Handling substrings
● Option A
○ substrings : word → [all words containing that word]
○ index : word → [list of lines containing that full word]
○
○

for word in substrings[query]:
results += index[word]

○ Can compute substrings table by brute search
○ When indexing lines, just split into words

● Option B
○ index : word → [all lines containing that word,
including as a substring]
○ Need to do the substring search as you index each
line
Other ways to beat the level
● Slurp the entire tree into RAM and use a
decent string search
○ (not java.lang.String.indexOf() -- that’s slow!)

● Shell out to grep
○ GNU grep is fast
Level 4
SQLCluster
SQLCluster
●
●
●
●

5 SQLite nodes
Queries submitted to all nodes
Random network and node failures
Must maintain full linearizability of queries
Octopus

http://wallpaperswide.com/angry_octopus-wallpapers.html
Octopus
● (Grumpy) network simulator
● Submits queries and checks for correctness
● Several “monkeys” manipulate the network:
○
○
○
○

Netsplit monkey
Lagsplit monkey
SPOF monkey
etc.
Consensus Algorithms
● Raft (“In Search of an Understandable Consensus Algorithm”, Diego
Ongaro and John Ousterhout, 2013)

● Zab (“Zab: High-performance broadcast for primary-backup systems”,
Flavio P. Junqueira, Benjamin C. Reed, and Marco Serafini, 2011)

● Paxos (“The Part-Time Parliament”, Leslie Lamport, 1998, originally
submitted 1990)

● Viewstamped Replication (“Viewstamped Replication:
A New Primary Copy Method to Support Highly Available Distributed
Systems”, Brian M. Oki and Barbara H. Liskov, 1988)
etc. etc.
Consensus Algorithms

Almost everyone chose Raft
https://github.com/goraft/raft
Gotchas: Idempotency
● Octopus sends node1 a commit
● Node1 forwards it to the leader, node0
● Node0 processes it and sends it back
● Octopus kills the node0 ⇔ node1 link
vs.
● Octopus sends node1 a commit
● Node1 forwards it to the leader, node0
● Octopus kills the node0 ⇔ node1 link
Gotchas: Idempotency
● How do you tell between these two cases?
● Naive: resubmit the query to find out!
● If the query was processed, return the old
result
● Common trick: Idempotency tokens
UPDATE ctf3 SET friendCount=friendCount+10,
requestCount=requestCount+1, favoriteWord="
jjfqcjamhpghnqq" WHERE name="carl"; SELECT * FROM ctf3
Making it Fast
● Every top solution replaced sql.go
● Two main strategies:
○ Write your own sqlite (or enough of it to pass)
○ Use sqlite bindings, :memory: database

● These perform roughly equally well
● Raft has a few timers you can tune
● Golf network traffic
Octopus Vulnerabilities
0
4

1

3
http://sweetclipart.com/octopus-line-art-756

2
First Solve: Single Master
0
4

1

3

2
Forward-to-Master
0
4

1

3

2
Single Point of Failure Detection
0
4

1

3

2
Redirect-to-Master
0
4

1

3

2
Redirect-to-Master
0
302 http:
//node0/sql

4

1

3

2
Redirect-to-Master
0
4

1

3

2
Leaderboard Top 10
●
●
●
●

Everyone changed SQLite “bindings”
Seven solutions used go-raft
Two solutions used redirect-to-master
One solution implemented Raft in C++

● If at first you don’t succeed…
○ Mean submissions: 1444 (stddev 1031)
○ Max: 3946
○ Min: 58 (the C++ solution)
Speculative: Time-based consensus
●
●
●
●
●

All nodes were run on the same host
Local clock: total ordering on events
Leaderless state machine
???
Profit?

● Similar ideas to Spanner (Google)
Greg Brockman
Andy Brody
Christian Anderson
Philipp Antoni
Carl Jackson
Jonas Schneider

Siddarth
Chandrasekaran
Ludwig Pettersson
Nelson Elhage
Steve Woodrow
Jorge Ortiz

More Related Content

PDF
DConf 2016: Keynote by Walter Bright
PPTX
RealmDB for Android
PPTX
Nicety of Java 8 Multithreading
PDF
Asynchronous single page applications without a line of HTML or Javascript, o...
PDF
Handling 20 billion requests a month
PDF
Tweaking performance on high-load projects
PDF
Linux Binary Exploitation - Return-oritend Programing
PPTX
PageRank and The Google Matrix
DConf 2016: Keynote by Walter Bright
RealmDB for Android
Nicety of Java 8 Multithreading
Asynchronous single page applications without a line of HTML or Javascript, o...
Handling 20 billion requests a month
Tweaking performance on high-load projects
Linux Binary Exploitation - Return-oritend Programing
PageRank and The Google Matrix

What's hot (20)

PDF
Learning groovy -EU workshop
PDF
Как мы охотимся на гонки (data races) или «найди багу до того, как она нашла ...
PDF
Introductory Clojure Presentation
PPT
JVM performance options. How it works
PPTX
Optimizing Communicating Event-Loop Languages with Truffle
PDF
Cryptography 202
PDF
Memory management
PPTX
Synchronization
PDF
Hyperloglog Project
PPTX
DConf 2016: Bitpacking Like a Madman by Amaury Sechet
PDF
Collections forceawakens
PPT
{"JSON, Swift and Type Safety" : "It's a wrap"}
PDF
Start Wrap Episode 11: A New Rope
ODP
Pushing the rule engine to its limits with drools planner (parisjug 2010-11-09)
PPTX
Intro to data oriented design
PDF
Stream Processing in the Cloud - Athens Kubernetes Meetup 16.07.2019
PDF
Lisp for Python Programmers
PDF
Triton and symbolic execution on gdb
PPTX
Andriy Shalaenko - GO security tips
PDF
PyCon Poland 2016: Maintaining a high load Python project: typical mistakes
Learning groovy -EU workshop
Как мы охотимся на гонки (data races) или «найди багу до того, как она нашла ...
Introductory Clojure Presentation
JVM performance options. How it works
Optimizing Communicating Event-Loop Languages with Truffle
Cryptography 202
Memory management
Synchronization
Hyperloglog Project
DConf 2016: Bitpacking Like a Madman by Amaury Sechet
Collections forceawakens
{"JSON, Swift and Type Safety" : "It's a wrap"}
Start Wrap Episode 11: A New Rope
Pushing the rule engine to its limits with drools planner (parisjug 2010-11-09)
Intro to data oriented design
Stream Processing in the Cloud - Athens Kubernetes Meetup 16.07.2019
Lisp for Python Programmers
Triton and symbolic execution on gdb
Andriy Shalaenko - GO security tips
PyCon Poland 2016: Maintaining a high load Python project: typical mistakes
Ad

Similar to Stripe CTF3 wrap-up (20)

PDF
NSC #2 - Challenge Solution
PDF
Fast dynamic analysis, Kostya Serebryany
PDF
Константин Серебряный "Быстрый динамичекский анализ программ на примере поиск...
PDF
Approximate "Now" is Better Than Accurate "Later"
PDF
2013.02.02 지앤선 테크니컬 세미나 - Xcode를 활용한 디버깅 팁(OSXDEV)
PDF
Kettunen, miaubiz fuzzing at scale and in style
PPTX
Troubleshooting .net core on linux
PDF
Going Multi-Node
PPTX
Provenance for Data Munging Environments
PDF
“Show Me the Garbage!”, Garbage Collection a Friend or a Foe
PPT
Nibiru: Building your own NoSQL store
PPT
Building your own NSQL store
PPT
Nibiru: Building your own NoSQL store
PDF
Killer Bugs From Outer Space
PDF
Search Engine-Building with Lucene and Solr, Part 2 (SoCal Code Camp LA 2013)
PPTX
BSides LV 2016 - Beyond the tip of the iceberg - fuzzing binary protocols for...
PDF
Mp26 : Tachyon, sloppiness is bliss
PDF
Static analysis for beginners
PDF
Performance optimization techniques for Java code
PDF
Address/Thread/Memory Sanitizer
NSC #2 - Challenge Solution
Fast dynamic analysis, Kostya Serebryany
Константин Серебряный "Быстрый динамичекский анализ программ на примере поиск...
Approximate "Now" is Better Than Accurate "Later"
2013.02.02 지앤선 테크니컬 세미나 - Xcode를 활용한 디버깅 팁(OSXDEV)
Kettunen, miaubiz fuzzing at scale and in style
Troubleshooting .net core on linux
Going Multi-Node
Provenance for Data Munging Environments
“Show Me the Garbage!”, Garbage Collection a Friend or a Foe
Nibiru: Building your own NoSQL store
Building your own NSQL store
Nibiru: Building your own NoSQL store
Killer Bugs From Outer Space
Search Engine-Building with Lucene and Solr, Part 2 (SoCal Code Camp LA 2013)
BSides LV 2016 - Beyond the tip of the iceberg - fuzzing binary protocols for...
Mp26 : Tachyon, sloppiness is bliss
Static analysis for beginners
Performance optimization techniques for Java code
Address/Thread/Memory Sanitizer
Ad

Recently uploaded (20)

PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Electronic commerce courselecture one. Pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
PDF
Transforming Manufacturing operations through Intelligent Integrations
PDF
AI And Its Effect On The Evolving IT Sector In Australia - Elevate
PDF
Modernizing your data center with Dell and AMD
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Advanced Soft Computing BINUS July 2025.pdf
PPTX
Big Data Technologies - Introduction.pptx
PPTX
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
PDF
KodekX | Application Modernization Development
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
PPTX
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
PPT
Teaching material agriculture food technology
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
Review of recent advances in non-invasive hemoglobin estimation
Electronic commerce courselecture one. Pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
The Rise and Fall of 3GPP – Time for a Sabbatical?
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
Transforming Manufacturing operations through Intelligent Integrations
AI And Its Effect On The Evolving IT Sector In Australia - Elevate
Modernizing your data center with Dell and AMD
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Advanced Soft Computing BINUS July 2025.pdf
Big Data Technologies - Introduction.pptx
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
KodekX | Application Modernization Development
Spectral efficient network and resource selection model in 5G networks
CIFDAQ's Market Insight: SEC Turns Pro Crypto
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
Teaching material agriculture food technology
NewMind AI Monthly Chronicles - July 2025
Reach Out and Touch Someone: Haptics and Empathic Computing

Stripe CTF3 wrap-up

  • 1. Greg Brockman Andy Brody Christian Anderson Philipp Antoni Carl Jackson Jonas Schneider Siddarth Chandrasekaran Ludwig Pettersson Nelson Elhage Steve Woodrow Jorge Ortiz
  • 2. Participation ● ~7.5k participants from 97 countries, 6 continents ● ~9.5k unique IP logins ● 216 capturers
  • 4. CAPTURE THE FLAG ARCHITECTURE Or, an illustrated guide to flowcharts
  • 5. What’s the holy grail of scaling? Ø
  • 6. Challenges Scaling up to unknown capacity - 53 instances, 800 ECU at peak User isolation Reliability and Availability (*-abilities)
  • 7. git push: what happens?
  • 8. git push → [email protected]:level0 stripe-ctf.com. IN A ctfweb ctfweb ctfweb (sinatra) gate gate https://stripe-ctf.com/ (nginx, haproxy) submitter submitter submitter (poseidon) colossus (LDAP, scoring) (poseidon) (poseidon) test case test case test case generator test case generator test case generator build generator generator (sinatra) (sinatra) queue queue ctfdb ctfdb ctfdb (mongo) (mongo) (mongo) (RabbitMQ) . (RabbitMQ) (docker) test case test case test case generator test case generator test case generator worker generator generator (docker) gitcoin test case test case test case generator test case generator test case test case generator generator. generator gen
  • 9. What Went Wrong – containerization – garbage collection - containers, filesystems, disk space – system stability – bugs, misconfiguration
  • 10. What Went Right – containerization – service architecture - queueing, separation of roles – load balancing – horizontal scaling
  • 13. Level 0: mmap ● mmap,munmap - map or unmap files or devices into memory ● mmap the dictionary into memory ● You can actually mmap stdin as well! ● Binary search!
  • 14. Level 0: Bloom filters ● ● ● ● ● Hash function: f(str) => int Look at the result of N hash functions. Probabilistic. False positives, but no false negatives. If you run into false positives, just push again!
  • 15. Level 0: Minimal perfect hashing Given dictionary D = {w₁, w₂, … wn} use MATH to generate a hash function f f : D → {0..n-1} is one-to-one aka every word hashes to a different small integer ● So you can build a no-collisions hash table ● CMPH - C Minimal Perfect Hashing Library ● Build this ahead of time, link it to the binary ● ● ● ●
  • 17. Gitcoin commit 000000216ba61aecaafb11135ee43b1674855d6ff7 Author: Alyssa P Hacker <[email protected]> Date: Wed Jan 22 14:10:15 2014 -0800 Give myself a Gitcoin! nonce: tahf8buC diff --git a/LEDGER.txt b/LEDGER.txt index 3890681..41980b2 100644 --- a/LEDGER.txt +++ b/LEDGER.txt @@ -7,3 +7,4 @@ carl: 30 gdb: 12 nelhage: 45 jorge: 30 +user-aph123: 1
  • 18. Why crypto currencies? – distributed currency system – git security model – massively parallel problems – using the right tools for the job
  • 20. Git object model $ git cat-file -p 000000effe7d920b391a24633e7298469dcf51b5 tree 7da86a5b10ff6db916598b653ce63e1dc0cb73c8 parent 0000000df4815161b72f4c5ed23e9fbf5deed922 author Alyssa P Hacker <[email protected]> 1391129313 +0000 committer Alyssa P Hacker <[email protected]> 1391129313 +0000 Mined a Gitcoin! nonce 0302d1e2 $ git show 000000 error: short SHA1 000000 is ambiguous. error: short SHA1 000000 is ambiguous.
  • 21. Remember wafflecopter? Want to do as few rounds of SHA1 as possible Compute prefix, update only for nonce
  • 22. SHA1 is Embarrassingly Parallel – Each miner can be totally independent – Each miner requires little memory – Each miner requires little code
  • 23. Tools: a spoon (bash)
  • 25. Tools: an army of backhoes (GPU)
  • 27. Bonus Round Hash Rates: bash: 400 H/s our go miners: 1.9 MH/s 100 cores EC2: 130 MH/s GPU: 1-2 GH/s Network: ~10 GH/s
  • 28. WE DID IT! Dogecoin is only at 80 GH/s
  • 30. Elephants and mice: a DDOS model
  • 31. Elephants and mice: a DDOS model
  • 32. The stub of a Node.js proxy
  • 33. Balance across the backends
  • 34. Balance across the backends 1. Round robin
  • 35. Balance across the backends 1. Round robin 2. Choose backend with min. load
  • 36. Balance across the backends 1. Round robin 2. Choose backend with min. load 3. Randomize
  • 37. Let the mice through
  • 38. Let the mice through 1. Reduce the overall load
  • 39. Let the mice through 1. Reduce the overall load 2. Use an off-the-shelf solution
  • 40. Let the mice through 1. Reduce the overall load 2. Use an off-the-shelf solution 3. Learn to recognize a mouse
  • 41. If you had a global view
  • 42. Recognize a mouse 1. Threshold rate or number 2. Learn by hand or with automation
  • 43. The top solutions ➔ Balance load in a simple way ➔ Learn to recognize a mouse ➔ Keep an eye on the backends
  • 45. We’re sorry about the Scala
  • 46. The problem ● Text search over ~100M of text ● Arbitrary substring search (not just whole words) ● There is a “free” indexing stage ● Distribute across up to 4 nodes ● Each node is limited to 500M of RAM
  • 47. Search 101: Inverted Index /tree/A: “the quick brown fox jumps over …” /tree/B: “the fox is red” “the” [A, B] “quick” [A] “brown” [A] “fox” [A, B] “red” [B]
  • 48. Search 102: Arbitrary Substring ● “trigram index” ● Store an inverted index of trigrams ● “the quick brown fox …” → “the”, “he_”, “e_q”, “_qu”, “qui”, “uic”, … ● To query, look up all trigrams in the search term, and intersect ● Search(“rown”) → index[“row”] ∩ index[“own”] ○ Check each result to verify the match
  • 49. Sharding ● We give you four nodes ● …but they all run on the same physical node during grading ● And we didn’t resource-limit grading containers (other than memory) ● So you don’t actually get more CPU, disk I/O, or memory bandwidth ● Sharding ended up not really mattering
  • 50. Winning the contest ● The spec is for arbitrary substring search ● But we only generate/query words from a dictionary ● Some words are substrings of other words… ● … but not too many ● Use an inverted index over dictionary words
  • 51. Handling substrings ● Option A ○ substrings : word → [all words containing that word] ○ index : word → [list of lines containing that full word] ○ ○ for word in substrings[query]: results += index[word] ○ Can compute substrings table by brute search ○ When indexing lines, just split into words ● Option B ○ index : word → [all lines containing that word, including as a substring] ○ Need to do the substring search as you index each line
  • 52. Other ways to beat the level ● Slurp the entire tree into RAM and use a decent string search ○ (not java.lang.String.indexOf() -- that’s slow!) ● Shell out to grep ○ GNU grep is fast
  • 54. SQLCluster ● ● ● ● 5 SQLite nodes Queries submitted to all nodes Random network and node failures Must maintain full linearizability of queries
  • 56. Octopus ● (Grumpy) network simulator ● Submits queries and checks for correctness ● Several “monkeys” manipulate the network: ○ ○ ○ ○ Netsplit monkey Lagsplit monkey SPOF monkey etc.
  • 57. Consensus Algorithms ● Raft (“In Search of an Understandable Consensus Algorithm”, Diego Ongaro and John Ousterhout, 2013) ● Zab (“Zab: High-performance broadcast for primary-backup systems”, Flavio P. Junqueira, Benjamin C. Reed, and Marco Serafini, 2011) ● Paxos (“The Part-Time Parliament”, Leslie Lamport, 1998, originally submitted 1990) ● Viewstamped Replication (“Viewstamped Replication: A New Primary Copy Method to Support Highly Available Distributed Systems”, Brian M. Oki and Barbara H. Liskov, 1988) etc. etc.
  • 58. Consensus Algorithms Almost everyone chose Raft https://github.com/goraft/raft
  • 59. Gotchas: Idempotency ● Octopus sends node1 a commit ● Node1 forwards it to the leader, node0 ● Node0 processes it and sends it back ● Octopus kills the node0 ⇔ node1 link vs. ● Octopus sends node1 a commit ● Node1 forwards it to the leader, node0 ● Octopus kills the node0 ⇔ node1 link
  • 60. Gotchas: Idempotency ● How do you tell between these two cases? ● Naive: resubmit the query to find out! ● If the query was processed, return the old result ● Common trick: Idempotency tokens UPDATE ctf3 SET friendCount=friendCount+10, requestCount=requestCount+1, favoriteWord=" jjfqcjamhpghnqq" WHERE name="carl"; SELECT * FROM ctf3
  • 61. Making it Fast ● Every top solution replaced sql.go ● Two main strategies: ○ Write your own sqlite (or enough of it to pass) ○ Use sqlite bindings, :memory: database ● These perform roughly equally well ● Raft has a few timers you can tune ● Golf network traffic
  • 63. First Solve: Single Master 0 4 1 3 2
  • 65. Single Point of Failure Detection 0 4 1 3 2
  • 69. Leaderboard Top 10 ● ● ● ● Everyone changed SQLite “bindings” Seven solutions used go-raft Two solutions used redirect-to-master One solution implemented Raft in C++ ● If at first you don’t succeed… ○ Mean submissions: 1444 (stddev 1031) ○ Max: 3946 ○ Min: 58 (the C++ solution)
  • 70. Speculative: Time-based consensus ● ● ● ● ● All nodes were run on the same host Local clock: total ordering on events Leaderless state machine ??? Profit? ● Similar ideas to Spanner (Google)
  • 71. Greg Brockman Andy Brody Christian Anderson Philipp Antoni Carl Jackson Jonas Schneider Siddarth Chandrasekaran Ludwig Pettersson Nelson Elhage Steve Woodrow Jorge Ortiz