9 comments

  • joshsegall4 hours ago
    I think the practitioner angle is what makes interesting. Too many BEAM advocacy posts are theoretical.<p>I would push back on the &quot;shared state with locks vs isolated state with message passing&quot; framing. Both approaches model concurrency as execution that needs coordination. Switching from locks to mailboxes changes the syntax of failure, not the structure. A mailbox is still a shared mutable queue between sender and receiver, and actors still deadlock through circular messages.
    • IsTom1 hour ago
      &gt; actors still deadlock through circular messages<p>I&#x27;ve rarely seen naked sends&#x2F;receives in Erlang, you mostly go through OTP behaviors. And if you happen to use them and get stuck (without &quot;after&quot; clause), the fact you can just attach a console to a running system and inspect processes&#x27; states makes it much easier to debug.
    • stingraycharles2 hours ago
      Stateless vs stateful concurrency management is very different, though; I can roll back &#x2F; replay a mail box, while this isn’t possible with shared locks. It’s a much cleaner architecture in general if you want to scale out, but it has more overhead.
  • rustyhancock30 minutes ago
    I love the idea of Erlang (and by association Elixir), OTP, BEAM...<p>In practice? Urgh.<p>The live is all so cerebral and theoretical and I&#x27;m certain the right people know how to implement it for the right tasks in the right way and it screams along.<p>But as yet no one has been able to give me an incling of how it would work well for me.<p>I read learn you some Erlang for great good quite a while back and loved the idea. But it just never comes together for me in practice. Perhaps I&#x27;m simply in the wrong domain for it.<p>What I really needed was a mentor and existing project to contribute to at work. But it&#x27;s impossible to get hold of either in the areas I&#x27;m in.
  • mrngm1 hour ago
    Related thread from 11 days ago: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47067395">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=47067395</a> &quot;What years of production-grade concurrency teaches us about building AI agents&quot;, 144 points, 51 comments.
  • EdNutting48 minutes ago
    How closely is BEAM&#x2F;OTP related to the foundational work on CSP (and the implementation in Occam&#x2F;Transputer way back when…)?
    • lou130625 minutes ago
      Good question! It&#x27;s a bit of a stretch. BEAM has mailboxes, non-blocking sends, and asynchronous handling of messages, whereas the original CSP is based on blocking sends and symmetric channels. Symmetric means you have no real difference between sends and receives: two processes synchrnoise when they are willing to send the same data on the same channel. (A &quot;receive&quot; is just a nondeterministic action where you are willing to send <i>anything</i> on a channel).<p>Occam added types to channels and distinguished sends&#x2F;receives, which is the design also inherited by Go.<p>In principle you can emulate a mailbox&#x2F;message queue in CSP by a sequence of processes, one per queue slot, but accounting for BEAM&#x27;s weak-ish ordering guarantees might be complicated (I suppose you should allow queue slots to swap messages under specific conditions).
  • baud96002 hours ago
    Very interesting. Reading this made me think of occam on the transputer: concurrent lightweight processes, message passing, dedicated memory! I spent some happy years in that world. Perhaps I should look at BEAM and see what work comes along?
  • emperorz054 minutes ago
    Zero-sharing message passing is known. But what about shared state? Given the majority of systems manage shared access to arbitrarily constrained shared state or shared resources, I&#x27;d be interested to see how this should be handled without just saying &quot;database&quot;. Maybe another article?
    • sriram_malhar10 minutes ago
      One process is made the logical goto for all operations on that data. The process identity is logically the identity of the shared state.<p>In other words, it is exactly a database, albeit an in-memory one.
  • rapsey3 hours ago
    &gt; Backpressure is built in. If a process receives messages faster than it can handle them, the mailbox grows. This is visible and monitorable. You can inspect any process’s mailbox length, set up alerts, and make architectural decisions about it. Contrast this with thread-based systems where overload manifests as increasing latency, deadlocks, or OOM crashes — symptoms that are harder to diagnose and attribute.<p>Sorry but this is wrong. This is no kind of backpressure as any experienced erlang developer will tell you: properly doing backpressure is a massive pain in erlang. By default your system is almost guaranteed to break in random places under pressure that you are surprised by.
    • Twisol3 hours ago
      Yes, this is missing the &quot;pressure&quot; part of &quot;backpressure&quot;, where the recipient is able to signal to the producer that they should slow down or stop producing messages. Observability is useful, sure, but it&#x27;s not the same as backpressure.
      • IsTom1 hour ago
        Sending message to a process has a cost (for purposes of preemption) relative to the current size of receiver&#x27;s mailbox, so the sender will get preempted earlier. This isn&#x27;t perfect, but it is <i>something</i>.
    • mnsc2 hours ago
      I wonder how much the roots of erlang is showing now? Telephone calls had a very specific &quot;natural&quot; profile. High but bounded concurrency (number of persons alive), long process lifetime (1 min - hours), few state changes&#x2F;messages per process (I know nothing of the actual protocol). I could imagine that the agentic scenario matches this somewhat where other scenarios, eg HFT, would be have a totally different profile making beam a bad choice. But then again, that&#x27;s just the typical right-tool-for-the-job challenge.
    • librasteve3 hours ago
      Occam (1982 ish) shared most of BEAMs ideas, but strongly enforced synchronous message passing on both channel output and input … so back pressure was just there in all code. The advantage was that most deadlock conditions were placed in the category of “if it can lock, then it will lock” which meant that debugging done at small scale would preemptively resolve issues before scaling up process &#x2F; processor count.
      • baud96002 hours ago
        Once you were familiar with occam you could see deadlocks in code very quickly. It was a productive way to build scaled concurrent systems. At the time we laughed at the idea of using C for the same task
        • librasteve2 hours ago
          I spreadsheeted out how many T424 die per Apple M2 (TSMC 3nm process) - that&#x27;s 400,000 CPUs (about a 600x600 grid) at say 1GIPs each - so 400 PIPS per M2 die size. Thats for 32 bit integer math - Inmos also had a 16 bit datapath, but these days you would probably up the RAM per CPU (8k, 16k?) and stick with 32-bit datapath, but add 8-,16-bit FP support. Happy to help with any VC pitches!
          • EdNutting40 minutes ago
            David May and his various PhD students over the years have retried this pitch repeatedly. And Graphcore had a related architecture. Unfortunately, while it’s great in theory, in practice the performance overall is miles off existing systems running existing code. There is no commercially feasible way that we’ve yet found to build a software ecosystem where all-new code has to be written just for this special theoretically-better processor. As a result, the business proposal dies before it even gets off the ground.<p>(I was one of David’s students; and I’ve founded&#x2F;run a processor design startup raised £4m in 2023 and went bust last year based on a different idea with a much stronger software story.)
  • gethly2 hours ago
    Go is good enough.
  • socketcluster2 hours ago
    The Node.js community had figured this out long before BEAM or even Elixir existed.<p>People tried to introduce threads to Node.js but there was push-back for the very reasons mentioned in this article and so we never got threads.<p>The JavaScript languages communities watch, nod, and go back to work.
    • pentacent_hq2 hours ago
      &gt; The Node.js community had figured this out long before BEAM or even Elixir existed.<p>Work on the BEAM started in the 1990s, over ten years before the first release of Node in 2009.
      • masklinn2 hours ago
        And BEAM was the reimplementation of the Erlang runtime, the actual model is part of the language semantics which was pretty stable by the late 80s, just with a Prolog runtime way too slow for production use.
    • hlieberman1 hour ago
      Forget Node.js; _Javascript_ hadn&#x27;t even been invented yet when Erlang and BEAM first debuted.
    • leoc2 hours ago
      You may be thinking of some recent round of publicity for BEAM, but BEAM is a bit older than JavaScript.
      • socketcluster36 minutes ago
        Haha. I guess the BEAM people can nod down at me with contempt and I nod down at the Elixir folks.
    • xtoilette2 hours ago
      BEAM predates node js
    • worthless-trash1 hour ago
      I think the author is trying to be clever to parody what was written in tfa.