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
64
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
CSC305 Lecture 04
javiergs
PRO
0
260
なぜあの開発者はDevRelに伴走し続けるのか / Why Does That Developer Keep Running Alongside DevRel?
nrslib
3
400
AI Coding Meetup #3 - 導入セッション / ai-coding-meetup-3
izumin5210
0
3.3k
kiroとCodexで最高のSpec駆動開発を!!数時間で web3ネイティブなミニゲームを作ってみたよ!
mashharuki
0
120
PHPに関数型の魂を宿す〜PHP 8.5 で実現する堅牢なコードとは〜 #phpcon_hiroshima / phpcon-hiroshima-2025
shogogg
1
130
その面倒な作業、「Dart」にやらせませんか? Flutter開発者のための業務効率化
yordgenome03
1
120
Catch Up: Go Style Guide Update
andpad
0
220
Go言語はstack overflowの夢を見るか?
logica0419
0
120
クラシルを支える技術と組織
rakutek
0
200
オープンソースソフトウェアへの解像度🔬
utam0k
12
2.6k
XP, Testing and ninja testing ZOZ5
m_seki
3
620
スマホから Youtube Shortsを見られないようにする
lemolatoon
27
30k
Featured
See All Featured
Bash Introduction
62gerente
615
210k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Measuring & Analyzing Core Web Vitals
bluesmoon
9
620
Code Reviewing Like a Champion
maltzj
526
40k
[RailsConf 2023] Rails as a piece of cake
palkan
57
5.9k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.5k
How GitHub (no longer) Works
holman
315
140k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
Building Better People: How to give real-time feedback that sticks.
wjessup
369
20k
Gamification - CAS2011
davidbonilla
81
5.5k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
30
2.9k
jQuery: Nuts, Bolts and Bling
dougneiner
65
7.9k
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.