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
Distributed Systems talk at BarCamp Portland 6
Search
wraithan
April 05, 2012
Programming
1
58
Distributed Systems talk at BarCamp Portland 6
This was put together rather quickly while learning how to use Keynote for the first time.
wraithan
April 05, 2012
Tweet
Share
More Decks by wraithan
See All by wraithan
Read the Docs: Call to Arms
wraithan
1
49
Distributed Systems talk at PDX Python
wraithan
2
200
Other Decks in Programming
See All in Programming
AWS CDKにおけるL2 Constructの仕組み / aws-cdk-l2-construct
gotok365
4
560
コードジェネレーターで 効率的な開発をする / Efficient development with code generators
linyows
0
110
Expoによるアプリ開発の現在地とReact Server Componentsが切り開く未来
yukukotani
2
330
❄️ NixOS/nixpkgsにSATySFiサポートを実装する
momeemt
1
110
Datadog DBMでなにができる? JDDUG Meetup#7
nealle
0
160
RailsでCQRS/ESをやってみたきづき
suzukimar
0
170
Boos Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
950
技術好きなエンジニアが "リーダーへの進化" によって得たものと失ったもの
pospome
4
640
[JAWS DAYS 2025] 最近の DB の競合解決の仕組みが分かった気になってみた
maroon1st
0
200
OUPC2024 Day 1 解説
kowerkoint
0
250
技術を改善し続ける
gumioji
0
190
15分で学ぶDuckDBの可愛い使い方 DuckDBの最近の更新
notrogue
3
890
Featured
See All Featured
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
Art, The Web, and Tiny UX
lynnandtonic
298
20k
StorybookのUI Testing Handbookを読んだ
zakiyama
28
5.5k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
Music & Morning Musume
bryan
46
6.4k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
49k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
7.1k
How STYLIGHT went responsive
nonsquared
99
5.4k
How to Think Like a Performance Engineer
csswizardry
22
1.4k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.2k
GraphQLとの向き合い方2022年版
quramy
44
14k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
46
2.4k
Transcript
DISTRIBUTED SYSTEMS WITH PUB/SUB or how micro services can rock
your socks
It’s actually quite simple You have two processes You send
a message from one to the other Surprise! Distributed system.
Why would I bother?! Separation of concerns. More robust in
the face of nodes failing. Easier to bring up and take down nodes.
Ok but what are WE doing? We have an IRC
bot. It listens to and writes to a couple Pub/Sub channels. This lets us do our logic in other processes.
The real fun. They don’t have to be on the
same server.