SlideShare a Scribd company logo
Systems that never
stop (and Erlang)
      Joe Armstrong
How can we get

10 nines reliability?
SIX LAWS
ONE

ISOLATION
ISOLATION

   10 nines = 99.99999999% availability
   P(fail) = 10-10
   If P(fail | one computer) = 10-3 then
       P(fail | four computers) = 10-12
   Fixed
TWO

CONCURRENCY
Concurrency

   World is concurrent
   Need at least TWO computers to make a non-stop
    sytem
   TWO computer is concurrent and distributed
“My first message is that
             concurrency
   is best regarded as a program
        structuring principle”

Structured concurrent programming
             – Tony Hoare
        Redmond, July 2001
THREE

     MUST
DETECT FAILURES
Failure detection
   If you can’t detect a failure you can’t fix it
   Must work across machine boundaries
    the entire machine might fail
   Implies distributed error handling,
    no shared state,
    asynchronous messaging
FOUR

    FAULT
IDENTIFICATION
Failure Identification

   Fault detection is not enough - you must no why
    the failure occurred
   Implies that you have sufficient information for
    post hock debugging
FIVE

  LIVE
 CODE
UPGRADE
Live code upgrade


   Must upgrade software while it is running
   Want zero down time
SIX

 STABLE
STORAGE
Stable storage

   Must store stuff forever
   No backup necessary - storage just works
   Implies multiple copies, distribution, ...
   Must keep crash reports
HISTORY

  Those who cannot learn from history are
doomed to repeat it.


                        George Santayana
GRAY
As with hardware, the key to software fault-tolerance is to
hierarchically decompose large systems into modules, each module being
a unit of service and a unit of failure. A failure of a module does
not propagate beyond the module.

...

 The process achieves fault containment by sharing no state with
other processes; its only contact with other processes is via messages
carried by a kernel message system

-                                                                 Jim Gray
-                        Why do computers stop and what can be done about it
-                           Technical Report, 85.7 - Tandem Computers,1985
SCHNEIDER
Halt on failure in the event of an error a processor
should halt instead of performing a possibly erroneous
operation.

Failure status property when a processor fails,
other processors in the system must be informed. The
reason for failure must be communicated.

Stable Storage Property The storage of a processor
should be partitioned into stable storage (which
survives a processor crash) and volatile storage which
is lost if a processor crashes.
                                             Schneider
              ACM Computing Surveys 22(4):229-319, 1990
GRAY
   Fault containment through fail-fast software modules.
   Process-pairs to tolerant hardware and transient software faults.
   Transaction mechanisms to provide data and message integrity.
   Transaction mechanisms combined with process-pairs to ease
    exception handling and tolerate software fault
   Software modularity through processes and messages.
KAY
Folks --

Just a gentle reminder that I took some pains at the last OOPSLA to
try to remind everyone that Smalltalk is not only NOT its syntax or
the class library, it is not even about classes. I'm sorry that I long ago
coined the term "objects" for this topic because it gets many people to
focus on the lesser idea.

The big idea is "messaging" -- that is what the kernal of Smalltalk/
Squeak is all about (and it's something that was never quite completed
in our Xerox PARC phase)....


http://lists.squeakfoundation.org/pipermail/squeak-dev/1998-October/
017019.html
GRAY
Software modularity through processes
and messages. As with hardware, the key
to software fault-tolerance is to
hierarchically decompose large systems
into modules, each module being a unit of
service and a unit of failure. A failure of a
module does not propagate beyond the
module.
Fail Fast
The process approach to fault isolation advocates that the process
software be fail-fast, it should either function correctly or it
should detect the fault, signal failure and stop operating.

 Processes are made fail-fast by defensive programming. They check
all their inputs, intermediate results and data structures as a matter
of course. If any error is detected, they signal a failure and stop. In
the terminology of [Cristian], fail-fast software has small fault
detection latency.

Gray
Why ...
Fail Early
A fault in a software system can cause one or more
errors. The latency time which is the interval between
the existence of the fault and the occurrence of the
error can be very high, which complicates the
backwards analysis of an error ...

For an effective error handling we must detect errors and
failures as early as possible

                                                            Renzel -
                    Error Handling for Business Information Systems,
 Software Design and Management, GmbH & Co. KG, München, 2003
ARMSTRONG
   Processes are the units of error encapsulation. Errors
    occurring in a process will not affect other processes in the
    system. We call this property strong isolation.
   Processes do what they are supposed to do or fail as soon
    as possible.
   Failure and the reason for failure can be detected by
    remote processes.
   Processes share no state, but communicate by message
    passing.

                                                    Armstrong
     Making reliable systems in the presence of software errors
                                      PhD Thesis, KTH, 2003
COMMERCIAL
  BREAK
Joe armstrong erlanga_languageforprogrammingreliablesystems
Joe’s 2’nd theorem

   Whatever Joe starts talking about, He will end up
    talking about Erlang
Erlang was
  designed
 to program
fault-tolerant
   systems
Concurrent
   programming             Functional
                          programming


Concurrency
 Oriented
programming
                 Erlang

      Fault                 Multicore
    tolerance
Erlang
   Very light-weight processes
   Very fast message passing
   Total separation between processes
   Automatic marshalling/demarshalling
   Fast sequential code
   Strict functional code
   Dynamic typing
   Transparent distribution
   Compose sequential AND concurrent code
Properties
   No sharing
   Hot code replacement
   Pure message passing
   No locks
   Lots of computers (= fault tolerant scalable ...)
   Functional programming (no side effects)
What is COP?
                    Machine


                    Process

                    Message




    ➡
      Large numbers of processes
    ➡ Complete isolation between processes
    ➡ Location transparency

    ➡ No Sharing of data

    ➡ Pure message passing systems
Thread Safety
 Erlang programs are
 automatically thread
 safe if they don't use
 an external resource.
Functional
        If you call the
   same function twice with
     the same arguments
it should return the same value




                                 “jolly good”
                              Joe Armstrong
No Mutable State
   Mutable state needs locks
   No mutable state = no locks = programmers bliss
Multicore ready
The rise of the cores
      2 cores won't hurt you
      4 cores will hurt a little
      8 cores will hurt a bit
      16 will start hurting
      32 cores will hurt a lot (2009)
      ...
      1 M cores ouch (2019)
          (complete paradigm shift)

      1997 1 Tflop = 850 KW
      2007 1 Tflop = 24 W (factor 35,000)
      2017 1 Tflop = ?
LAWS
ISOLATION
     CONCURRENCY
Pid = spawn(.....)
Pid = spawn(Node, ....)

Pid ! Message         receive
                          Pattern1 -> Actions1;
                          Pattern2 -> Actions2;
                          ...
                      end
FAULT
IDENTIFICATION
  link(Pid),
       receive
            {Pid, ‘EXIT’, Why} ->
                  ...
       end
LIVE CODE
            UPGRADE
   Can upgrade code while its running

   Existing processes continue to use original code, new
    processes run new code - no mixups of namespaces

   Sophisticated roll-forward, roll-back, roll-back-on-error
    functions in OTP libraries

   Properly designed systems can be rolled-forward and
    back with no loss of service. Not easy, but possible
STABLE STORAGE
   Performed in libraries

    mnesia:transaction(
        fun() ->
              Val = mnesia:read(Key),
               mnesia:write({Key,Val}),
               ...
        end)
Projects
   CouchDB
   Amazon SimpleDB
   Mochiweb (facebook chat)
   Scalaris
   Nitrogren
   Ejabberd (xmpp)
   Rabbit MQ (amqp)
   ....
Companies
   Ericsson
   Amazon
   Tail-f
   Kreditor
   Synapse
   ...
Books
THE END

More Related Content

PDF
Keynote joearmstrong
PPTX
Back end analytics_platform_2013_v1.0
PPS
Japan palaces
PDF
Gnt Flurry
PDF
Introduce play
PDF
SOCIAM: The Theory and Practice of Social Machines
PDF
Erlang
ODP
An introduction to erlang
Keynote joearmstrong
Back end analytics_platform_2013_v1.0
Japan palaces
Gnt Flurry
Introduce play
SOCIAM: The Theory and Practice of Social Machines
Erlang
An introduction to erlang

Similar to Joe armstrong erlanga_languageforprogrammingreliablesystems (20)

PDF
Sioux Hot-or-Not: Functional programming: unlocking the real power of multi-c...
PPTX
Networking and Computer Troubleshooting
PDF
NDC London 2014: Erlang Patterns Matching Business Needs
PPT
Erlang OTP
PDF
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
PPTX
Fault tolerance
PDF
RTOS - Real Time Operating Systems
PDF
Nt1330 Unit 1 Problem Analysis Paper
ODP
Writing and testing high frequency trading engines in java
PDF
Let it crash! The Erlang Approach to Building Reliable Services
PDF
44CON 2014 - Switches Get Stitches, Eireann Leverett & Matt Erasmus
PDF
Linux Internals - Interview essentials - 1.0
PDF
Peyton jones-2011-parallel haskell-the_future
PDF
Simon Peyton Jones: Managing parallelism
PPTX
Techno-Fest-15nov16
KEY
Osdc 2011 michael_neale
PDF
KEY CONCEPTS FOR SCALABLE STATEFUL SERVICES
PPTX
How smartly Erlang uses Distributed Computing
PPTX
The pragmatic programmer
Sioux Hot-or-Not: Functional programming: unlocking the real power of multi-c...
Networking and Computer Troubleshooting
NDC London 2014: Erlang Patterns Matching Business Needs
Erlang OTP
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
Fault tolerance
RTOS - Real Time Operating Systems
Nt1330 Unit 1 Problem Analysis Paper
Writing and testing high frequency trading engines in java
Let it crash! The Erlang Approach to Building Reliable Services
44CON 2014 - Switches Get Stitches, Eireann Leverett & Matt Erasmus
Linux Internals - Interview essentials - 1.0
Peyton jones-2011-parallel haskell-the_future
Simon Peyton Jones: Managing parallelism
Techno-Fest-15nov16
Osdc 2011 michael_neale
KEY CONCEPTS FOR SCALABLE STATEFUL SERVICES
How smartly Erlang uses Distributed Computing
The pragmatic programmer
Ad

Recently uploaded (20)

PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Modernizing your data center with Dell and AMD
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
KodekX | Application Modernization Development
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Cloud computing and distributed systems.
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Electronic commerce courselecture one. Pdf
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPT
Teaching material agriculture food technology
PDF
Spectral efficient network and resource selection model in 5G networks
NewMind AI Monthly Chronicles - July 2025
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
20250228 LYD VKU AI Blended-Learning.pptx
Digital-Transformation-Roadmap-for-Companies.pptx
Modernizing your data center with Dell and AMD
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
KodekX | Application Modernization Development
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Network Security Unit 5.pdf for BCA BBA.
Cloud computing and distributed systems.
“AI and Expert System Decision Support & Business Intelligence Systems”
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Unlocking AI with Model Context Protocol (MCP)
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Electronic commerce courselecture one. Pdf
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Teaching material agriculture food technology
Spectral efficient network and resource selection model in 5G networks
Ad

Joe armstrong erlanga_languageforprogrammingreliablesystems

  • 1. Systems that never stop (and Erlang) Joe Armstrong
  • 2. How can we get 10 nines reliability?
  • 5. ISOLATION  10 nines = 99.99999999% availability  P(fail) = 10-10  If P(fail | one computer) = 10-3 then P(fail | four computers) = 10-12  Fixed
  • 7. Concurrency  World is concurrent  Need at least TWO computers to make a non-stop sytem  TWO computer is concurrent and distributed
  • 8. “My first message is that concurrency is best regarded as a program structuring principle” Structured concurrent programming – Tony Hoare Redmond, July 2001
  • 9. THREE MUST DETECT FAILURES
  • 10. Failure detection  If you can’t detect a failure you can’t fix it  Must work across machine boundaries the entire machine might fail  Implies distributed error handling, no shared state, asynchronous messaging
  • 11. FOUR FAULT IDENTIFICATION
  • 12. Failure Identification  Fault detection is not enough - you must no why the failure occurred  Implies that you have sufficient information for post hock debugging
  • 13. FIVE LIVE CODE UPGRADE
  • 14. Live code upgrade  Must upgrade software while it is running  Want zero down time
  • 16. Stable storage  Must store stuff forever  No backup necessary - storage just works  Implies multiple copies, distribution, ...  Must keep crash reports
  • 17. HISTORY Those who cannot learn from history are doomed to repeat it. George Santayana
  • 18. GRAY As with hardware, the key to software fault-tolerance is to hierarchically decompose large systems into modules, each module being a unit of service and a unit of failure. A failure of a module does not propagate beyond the module. ... The process achieves fault containment by sharing no state with other processes; its only contact with other processes is via messages carried by a kernel message system - Jim Gray - Why do computers stop and what can be done about it - Technical Report, 85.7 - Tandem Computers,1985
  • 19. SCHNEIDER Halt on failure in the event of an error a processor should halt instead of performing a possibly erroneous operation. Failure status property when a processor fails, other processors in the system must be informed. The reason for failure must be communicated. Stable Storage Property The storage of a processor should be partitioned into stable storage (which survives a processor crash) and volatile storage which is lost if a processor crashes. Schneider ACM Computing Surveys 22(4):229-319, 1990
  • 20. GRAY  Fault containment through fail-fast software modules.  Process-pairs to tolerant hardware and transient software faults.  Transaction mechanisms to provide data and message integrity.  Transaction mechanisms combined with process-pairs to ease exception handling and tolerate software fault  Software modularity through processes and messages.
  • 21. KAY Folks -- Just a gentle reminder that I took some pains at the last OOPSLA to try to remind everyone that Smalltalk is not only NOT its syntax or the class library, it is not even about classes. I'm sorry that I long ago coined the term "objects" for this topic because it gets many people to focus on the lesser idea. The big idea is "messaging" -- that is what the kernal of Smalltalk/ Squeak is all about (and it's something that was never quite completed in our Xerox PARC phase).... http://lists.squeakfoundation.org/pipermail/squeak-dev/1998-October/ 017019.html
  • 22. GRAY Software modularity through processes and messages. As with hardware, the key to software fault-tolerance is to hierarchically decompose large systems into modules, each module being a unit of service and a unit of failure. A failure of a module does not propagate beyond the module.
  • 23. Fail Fast The process approach to fault isolation advocates that the process software be fail-fast, it should either function correctly or it should detect the fault, signal failure and stop operating. Processes are made fail-fast by defensive programming. They check all their inputs, intermediate results and data structures as a matter of course. If any error is detected, they signal a failure and stop. In the terminology of [Cristian], fail-fast software has small fault detection latency. Gray Why ...
  • 24. Fail Early A fault in a software system can cause one or more errors. The latency time which is the interval between the existence of the fault and the occurrence of the error can be very high, which complicates the backwards analysis of an error ... For an effective error handling we must detect errors and failures as early as possible Renzel - Error Handling for Business Information Systems, Software Design and Management, GmbH & Co. KG, München, 2003
  • 25. ARMSTRONG  Processes are the units of error encapsulation. Errors occurring in a process will not affect other processes in the system. We call this property strong isolation.  Processes do what they are supposed to do or fail as soon as possible.  Failure and the reason for failure can be detected by remote processes.  Processes share no state, but communicate by message passing. Armstrong Making reliable systems in the presence of software errors PhD Thesis, KTH, 2003
  • 28. Joe’s 2’nd theorem  Whatever Joe starts talking about, He will end up talking about Erlang
  • 29. Erlang was designed to program fault-tolerant systems
  • 30. Concurrent programming Functional programming Concurrency Oriented programming Erlang Fault Multicore tolerance
  • 31. Erlang  Very light-weight processes  Very fast message passing  Total separation between processes  Automatic marshalling/demarshalling  Fast sequential code  Strict functional code  Dynamic typing  Transparent distribution  Compose sequential AND concurrent code
  • 32. Properties  No sharing  Hot code replacement  Pure message passing  No locks  Lots of computers (= fault tolerant scalable ...)  Functional programming (no side effects)
  • 33. What is COP? Machine Process Message ➡ Large numbers of processes ➡ Complete isolation between processes ➡ Location transparency ➡ No Sharing of data ➡ Pure message passing systems
  • 34. Thread Safety Erlang programs are automatically thread safe if they don't use an external resource.
  • 35. Functional If you call the same function twice with the same arguments it should return the same value “jolly good” Joe Armstrong
  • 36. No Mutable State  Mutable state needs locks  No mutable state = no locks = programmers bliss
  • 38. The rise of the cores  2 cores won't hurt you  4 cores will hurt a little  8 cores will hurt a bit  16 will start hurting  32 cores will hurt a lot (2009)  ...  1 M cores ouch (2019)  (complete paradigm shift)  1997 1 Tflop = 850 KW  2007 1 Tflop = 24 W (factor 35,000)  2017 1 Tflop = ?
  • 39. LAWS
  • 40. ISOLATION CONCURRENCY Pid = spawn(.....) Pid = spawn(Node, ....) Pid ! Message receive Pattern1 -> Actions1; Pattern2 -> Actions2; ... end
  • 41. FAULT IDENTIFICATION link(Pid), receive {Pid, ‘EXIT’, Why} -> ... end
  • 42. LIVE CODE UPGRADE  Can upgrade code while its running  Existing processes continue to use original code, new processes run new code - no mixups of namespaces  Sophisticated roll-forward, roll-back, roll-back-on-error functions in OTP libraries  Properly designed systems can be rolled-forward and back with no loss of service. Not easy, but possible
  • 43. STABLE STORAGE  Performed in libraries mnesia:transaction( fun() -> Val = mnesia:read(Key), mnesia:write({Key,Val}), ... end)
  • 44. Projects  CouchDB  Amazon SimpleDB  Mochiweb (facebook chat)  Scalaris  Nitrogren  Ejabberd (xmpp)  Rabbit MQ (amqp)  ....
  • 45. Companies  Ericsson  Amazon  Tail-f  Kreditor  Synapse  ...
  • 46. Books