"Systems that run forever self-heal and scale" by Joe Armstrong (2013)

  Рет қаралды 76,103

Strange Loop Conference

Strange Loop Conference

Күн бұрын

Пікірлер: 27
@user-uq5qw1fk3d
@user-uq5qw1fk3d 3 жыл бұрын
I loved Joe's The Mess We're In talk and have rewatched it multiple times over the years and am looking forward to watching this. Thanks for uploading all the older content recently!
@wuschelthepuschel
@wuschelthepuschel 3 жыл бұрын
I upvoted this before seeing it because there is no such thing as a bad Joe Armstrong talk.
@AFerreiraV
@AFerreiraV 2 жыл бұрын
I never get tired of reviewing Joe's past talks. I didn't know him personally and I didn't always agree with him on some non-technical opinions but his disappearance was something I felt personally.
@linkernick5379
@linkernick5379 3 жыл бұрын
I had the first enlightenment in my way of grasping CS at the moment of the end of reading Joe Armstrong's thesis.
@udirt
@udirt Жыл бұрын
I love the all sequential programming languages get error handling wrong, this would better explain the communication barrier admins face reporting structural errors to devs than any other explanation ever thought of.
@mahdi2761
@mahdi2761 3 жыл бұрын
RIP Joe
3 жыл бұрын
"Scaling down" sounds good, if you know what system you're building before you start. If you don't, which is always the case, you're basically building your best guess of what the system should be and then iterating and changing it. Doing this with an already scaled up system seems unnecessarily complex to me. You first need to find your problems, fix them, and then worry about scaling those fixes up.
@LeviRamsey
@LeviRamsey 3 жыл бұрын
The problem with that approach is that it's amazingly easy to (especially via premature optimization: it's fairly common that algorithms that are slow (even Big-O slow) don't parallelize well, especially when parallelism entails network communication) fix problems at small scales in ways that will require a top-down rewrite to work at larger scales.
@csbnikhil
@csbnikhil 3 жыл бұрын
I feel happy listening to him.
@triularity
@triularity Жыл бұрын
@39:37 - You still need backups. It doesn't matter how reliable your storage is if the data gets corrupted (intentionally or unintentionally) and then gets propagated through out your network. Too late to realize this after your long running system has accumulated month, years, or decades of data, which is now useless due to it being invalidated. Imagine in today's world having someone hack into such a banking system and change everyone's transaction/balance history. Even if you you could detect the data was altered, you still wouldn't know what it is suppose to be. He does mention using snapshots.. but seemingly in the context of short-term restarting, not "I can go back 2 years and do a full data audit", which long term [protected] backups can provide.
@owenimholte3835
@owenimholte3835 Жыл бұрын
Whoah. He called the WhatsApp acquisition perfectly! 1:02:00
@laughingvampire7555
@laughingvampire7555 Жыл бұрын
sensei 🙇🏻
@Kenbomp
@Kenbomp 3 жыл бұрын
Brilliant.
@a0um
@a0um 3 жыл бұрын
He glossed over runtime upgrades… are they really working smoothly? Any pointer for further study would be greatly appreciated.
@davidjohnston4240
@davidjohnston4240 2 жыл бұрын
That's Erlang's best party trick. You can find videos of examples on youtube.
@Oktokolo
@Oktokolo Жыл бұрын
Runtime upgrades definitely do work, but you probably don't need them. If you have multiple machines, you can always just stop a machine from accepting more work, wait, till it is idle, shut it down, update and start it again. It probably was more useful in the mainframe era, where a single machine represented a huge chunk of the combined processing power and you didn't want to restart them for a minor bug fix.
@lepidoptera9337
@lepidoptera9337 Жыл бұрын
@@Oktokolo The limitations on old hardware were IO based. Unloading and re-loading memory was expensive. Today a well architected SSD array is close to saturating main memory bandwidth. A reliable architecture has to be able to freeze state anyway.
@AlexRodriguez-gb9ez
@AlexRodriguez-gb9ez 6 ай бұрын
Makes me want to learn Elixir... Any starter project ideas?
@mortenbjoernsvik6550
@mortenbjoernsvik6550 Жыл бұрын
kubernetes done right 🙂
@a0um
@a0um 3 жыл бұрын
There seems to be an error at 33:30 where it’s written “World is concurrent“, shouldn’t that be “parallel”? Concurrency is when processes are interleaved on a single executor, parallel is when they run on independent executor, or not?
@justin883
@justin883 3 жыл бұрын
The world is at least concurrent and it might be parallel. Maybe we don't have access to the hardware it runs on to check.
@efraimcardona8452
@efraimcardona8452 2 жыл бұрын
Concurrency is processes being executed independently taking care at nodes of possibly shared resources. Parallelism means executing all processes at the same time while coordinating them globally with as many processors as needed. That is to say parallelism is a "synchronization" of concurrency
@kurbads74
@kurbads74 2 жыл бұрын
Machine B does not know that it is a replica. Machine A does not know it is not a replica.
@winrid
@winrid Жыл бұрын
that's why you need Machine C :)
@Luredreier
@Luredreier 2 жыл бұрын
I wonder what he'd do with Rust...
"Inside the Wolfram Language" by Stephen Wolfram
1:08:54
Strange Loop Conference
Рет қаралды 43 М.
"The Mess We're In" by Joe Armstrong
45:50
Strange Loop Conference
Рет қаралды 382 М.
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 37 МЛН
快乐总是短暂的!😂 #搞笑夫妻 #爱美食爱生活 #搞笑达人
00:14
朱大帅and依美姐
Рет қаралды 14 МЛН
Одну кружечку 😂❤️
00:12
Денис Кукояка
Рет қаралды 2,2 МЛН
"Simple Made Easy" - Rich Hickey (2011)
1:01:39
Strange Loop Conference
Рет қаралды 101 М.
"Performance Matters" by Emery Berger
42:15
Strange Loop Conference
Рет қаралды 485 М.
An Evening at Erlang Factory: Joe Armstrong, Mike Williams, Robert Virding
35:51
"Type-Driven API Design in Rust" by Will Crichton
40:57
Strange Loop Conference
Рет қаралды 125 М.
Joe Armstrong & Alan Kay - Joe Armstrong interviews Alan Kay
1:16:55
Erlang Solutions
Рет қаралды 71 М.
Why Can't We Make Simple Software? - Peter van Hardenberg
41:34
Handmade Cities
Рет қаралды 80 М.
How we program multicores - Joe Armstrong
58:53
RISE SICS
Рет қаралды 71 М.
"From Geometry to Algebra and Back Again: 4000 Years of Papers" by Jack Rusher
31:35
"Concatenative programming and stack-based languages" by Douglas Creager
40:30
Strange Loop Conference
Рет қаралды 15 М.
FOREVER BUNNY
00:14
Natan por Aí
Рет қаралды 37 МЛН