Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Lessons from 6 Months of using Luigi
Search
peteowlett
May 07, 2016
Technology
4
880
Lessons from 6 Months of using Luigi
AKA Why it's better to be woken up by you cat than by the server alarm
peteowlett
May 07, 2016
Tweet
Share
More Decks by peteowlett
See All by peteowlett
Takeaway Tales
peteowlett
1
190
Send More Riders
peteowlett
4
920
Other Decks in Technology
See All in Technology
AndroidXR 開発ツールごとの できることできないこと
donabe3
0
130
Oracle Cloud Infrastructure:2025年2月度サービス・アップデート
oracle4engineer
PRO
1
190
転生CISOサバイバル・ガイド / CISO Career Transition Survival Guide
kanny
3
960
リーダブルテストコード 〜メンテナンスしやすい テストコードを作成する方法を考える〜 #DevSumi #DevSumiB / Readable test code
nihonbuson
11
7.1k
RSNA2024振り返り
nanachi
0
570
Helm , Kustomize に代わる !? 次世代 k8s パッケージマネージャー Glasskube 入門 / glasskube-entry
parupappa2929
0
250
Developer Summit 2025 [14-D-1] Yuki Hattori
yuhattor
19
6.1k
室長と気ままに学ぶマイクロソフトのビジネスアプリケーションとビジネスプロセス
ryoheig0405
0
360
Nekko Cloud、 これまでとこれから ~学生サークルが作る、 小さなクラウド
logica0419
2
960
スタートアップ1人目QAエンジニアが QAチームを立ち上げ、“個”からチーム、 そして“組織”に成長するまで / How to set up QA team at reiwatravel
mii3king
2
1.4k
「海外登壇」という 選択肢を与えるために 〜Gophers EX
logica0419
0
700
MC906491 を見据えた Microsoft Entra Connect アップグレード対応
tamaiyutaro
1
540
Featured
See All Featured
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
226
22k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
9
440
Faster Mobile Websites
deanohume
306
31k
The Art of Programming - Codeland 2020
erikaheidi
53
13k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
10
1.3k
How STYLIGHT went responsive
nonsquared
98
5.4k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
BBQ
matthewcrist
87
9.5k
Site-Speed That Sticks
csswizardry
4
380
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Code Review Best Practice
trishagee
67
18k
Transcript
Lessons from 6 months of using Luigi in production @peterowlett
@deliveroo
Hello! I’m Pete
None
I work for these folks
WE DO THIS
Why it’s better to be woken up by your cat
than by the server alarm A BETTER TITLE
This is Kitty
NO RESPECT FOR PERSONAL SPACE
This is PagerDuty
Even less respect for personal space
Let’s Compare! - Goes off at any time, day or
night - Loud ring tone, text messages, answer phone messages and flashing - Resolution can take hours - Goes off only once at precisely 6am - Cute batting motion to wake - Resolved in time it takes to open cat food packet
I think we can all agree with my premise Kitty
>> PagerDuty
Lets get to it
Chapter 1 “The Model”
Let’s build a model
I’m ready, where’s the data?
“Just pg_dump the prod db”
OH PLS PLS NO DON’T DO THAT
Lets spin up a read slave and ETL the data
to a warehouse …
… then train our models from that
How do we ensure tasks run in Order?
I want them to run one after the other 2
1 3 4 5 6 7 8
Directed Acyclic Graph
None
Enter Stage Left …
Simple Task
Postgres Loader Task
We string these together to make DAGs CHECK MAX ROW
ID LOAD DATA MOD DATA MAKE MODEL CHECK MAX ROW ID LOAD DATA TABLE1 TABLE2
DAGs solve the dependency problem
Bung it all on EC2
Define an entry point
Run the scheduler
Kick it all off with CRON
With luigi we were up and running in a few
hours
Chapter 2 “The Nuclear Option”
A few weeks later, something happened …
None
Schema can change anytime without warning HAS THE SCHEMA CHANGED?
RELOAD JUST NEW ROWS DROP AND CREATE WHOLE SCHEMA RELOAD ALL TABLES NO! YES!
None
Handle schema changes robustly
Let’s test our pipeline before we deploy it. But how?
Two new operating modes TEST MODE Run the whole pipeline
but only write to a test schema UNIT MODE Run the current task, ignoring its dependencies
Configure these modes in the pipeline using luigi.Parameter
Now nothing will ever go wrong, ever again …
Make your testing comprehensive
Make your testing fast
Adding in external API services
Build Loaders for each API
Loading Schedules
Plumbing them in
Keep def rows as short as possible
Be consistent in loader design pattern
Expect external API services to misbehave
Expect external API services to misbehave X
Trust external API services as if they actively want to
hurt you
Hey cool, all our data is in one place, we
might as well use it for BI Reporting
Chapter 3 “The Management Report”
This happened
And then your ad hoc database is now supporting global
business critical apps
None
Stuff that was happening • Irrelevant upstream failures • Low
priority upstream failures • Flakey Data (but it worked!)
Our DAG looked like this: START LOAD2 LOAD1 LOAD3 LOAD
DONE MAKE1 MAKE2 MAKE3 END
And this was happening START LOAD2 LOAD1 LOAD3 LOAD DONE
MAKE1 MAKE2 MAKE3 END
This one doesn’t need LOAD3 START LOAD2 LOAD1 LOAD3 LOAD
DONE MAKE1 MAKE2 MAKE3 END
So we changed it to this START LOAD2 LOAD1 LOAD3
LOAD ALL MAKE1 MAKE2 MAKE3 END
Now when 3 fails: START LOAD2 LOAD1 LOAD3 LOAD ALL
MAKE1 MAKE2 MAKE3 END
Decide about what can be allowed to fail, and what
can’t
Isolate the path to critical ops jobs
Loading tables more reliably 5AM SATURDAY
The currency table failed to update
Loading tables more reliably DROP TABLE CREATE TABLE LOAD DATA
Task 1 Task 2 Task 3
Loading tables more reliably DROP TABLE CREATE TABLE THIS CAN
GO WRONG LOAD DATA Task 1 Task 2 Task 3 THIS CAN GO WRONG THIS CAN GO WRONG
Expect Failure, Rollback Transaction CREATE TEMP TABLE Task 1 (There
is no task 2) LOAD DATA RENAME OLD TABLE RENAME NEW TABLE ROLLBACK
None
Encapsulate logic in bigger chunks
None
Anticipating problems early
Going beyond system monitoring
Defined Monitoring Tests
Measuring outcomes directly
And get gentler alerts in slack
Monitor (and alert on) outcomes as well as system metrics
Try / Except / Slack Alert low priority tasks
Chapter 4 “Hi, this is Australia calling …”
In the beginning there was the UK YAY! DOWNTIME!! Midnight
Midnight Midday UK Ops
Then Europe Ok cool still loads of downtime Midnight Midnight
Midday
Then Some Other Places No such thing as downtime anymore
Midnight Midnight Midday
Table Loading - Take 2 HASH THE TABLE SCHEMA COMPARE
TO LAST HASH SAME! CHANGED! DROP AND REBUILD JUST LOAD ROWS
Get rid of the nuclear option
SORRY RIPLEY
Chapter 5 “Moving to Scale”
When it comes to BI, Old School Rules Still Apply
Configuration Management (Docker + ECS)
Distributed workers make some pain go away
Protobuf3 on Message Bus
Final Thoughts
I regret nothing!
Everything is defined in code
Two people, tiny budget
Time spent speeding up the build process is time well
spent
Think carefully about what dependencies *mean*
To finish …
None
We’re hiring! Grab me after :) https://roo.it/peteo Also £5 off
your first order!
Sleep Well! @peterowlett @deliveroo Sleep Well!