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
65
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
52
Distributed Systems talk at PDX Python
wraithan
2
210
Other Decks in Programming
See All in Programming
AWS Infrastructure as Code の新機能 2025 総まとめ 〜SA 4人による怒涛のデモ祭り〜
konokenj
10
3.4k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
510
クライアントワークでSREをするということ。あるいは事業会社におけるSREと同じこと・違うこと
nnaka2992
1
340
grapheme_strrev関数が採択されました(あと雑感)
youkidearitai
PRO
1
220
How to stabilize UI tests using XCTest
akkeylab
0
120
ふつうの Rubyist、ちいさなデバイス、大きな一年
bash0c7
0
930
DevinとClaude Code、SREの現場で使い倒してみた件
karia
1
1k
「やめとこ」がなくなった — 1月にZennを始めて22本書いた AI共創開発のリアル
atani14
0
380
LangChain4jとは一味違うLangChain4j-CDI
kazumura
1
180
CS教育のDX AIによる育成の効率化
niftycorp
PRO
0
110
AI時代のソフトウェア開発でも「人が仕様を書く」から始めよう-医療IT現場での実践とこれから
koukimiura
0
150
encoding/json/v2のUnmarshalはこう変わった:内部実装で見る設計改善
kurakura0916
0
410
Featured
See All Featured
Imperfection Machines: The Place of Print at Facebook
scottboms
269
14k
How To Speak Unicorn (iThemes Webinar)
marktimemedia
1
410
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
1.9k
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
67
37k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.1k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
254
22k
Building Flexible Design Systems
yeseniaperezcruz
330
40k
From π to Pie charts
rasagy
0
150
Side Projects
sachag
455
43k
We Have a Design System, Now What?
morganepeng
55
8k
Ruling the World: When Life Gets Gamed
codingconduct
0
170
Writing Fast Ruby
sferik
630
63k
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.