Large-Scale Architecture: The Unreasonable Effectiveness of Simplicity • Randy Shoup • YOW! 2022

Поделиться
HTML-код
  • Опубликовано: 26 сен 2024

Комментарии • 38

  • @youkenez
    @youkenez Год назад +8

    Many of the learnings here are immediately applicable for designing large-scale, interactive desktop applications. Instead of services we have components inside a single process, communicating with each other, instead of huge, distributed database there's persistent/volatile/ui program state owned and shared by multiple components. But the principles presented in this talk work equally well.

  • @pollypravir5378
    @pollypravir5378 5 месяцев назад +1

    WOW!! Software artitecture for large scale simplified.

  • @neptronix
    @neptronix Год назад +1

    Fantastic talk, thank you

  • @joeboyle7390
    @joeboyle7390 Год назад +2

    Great talk!

  • @madskaddie
    @madskaddie Год назад +3

    even I do think the given direction in the talk is the way to go, I do not think it has anything simple, for any non trivial use case.
    For example, implementing idempotency is not simple and implementations can be quite fragile.
    another example is the transaction context: a simple concept as the set of local variables (normally managed by the compiler or runtime automatically) are now messages handled by the developer
    and if consistency is required by the problem... event driven solutions can become nightmares
    thanks for the talk

  • @parametr
    @parametr Год назад +1

    I really like the description of the tech progression for ebay and amazon.
    I do miss some context, though.
    Next time, can you add data like:
    - company revenue at the time of refactor
    - developer team size at the time of refactor
    - client volume at the time of refactor
    - world reach at the time of refactor

  • @raphaelbatel
    @raphaelbatel Год назад +2

    Unfortunately, I don't feel the content of this talk addresses 'simplicity' very well.
    Basically, it's a quick overview of a greater number of architectural ideas.
    However, if you do not know them, you will not understand them from this talk. If you do already know them, there is not much to learn for you either.

  • @nirmalyasengupta6883
    @nirmalyasengupta6883 Год назад +1

    Thanks for the presentation. However, things like Idempotency and Undo Saga are not exactly simple things, IMO. Would love to hear you, elaborating on these aspects in one of your future presentations/articles!

  • @charan775
    @charan775 Год назад

    22:00

  • @this-is-bioman
    @this-is-bioman 4 месяца назад

    Quite abstract and not applicable in real life. Just some more or less interesting anecdotes from speaker's jobs.

  • @-----0-----
    @-----0----- Год назад

    23:45 - 5% on writing you say, and 75% on reading* - no way! I don't believe you! It can't be true!
    Writing takes 99% of the time so let's improve it.
    Let's invent new languages, with even more compact, non-self-explanatory and non-intuitive syntaxes or skip writing a valuable comment...writing speed is what matters, nobody needs to understand the code fast...
    Sarcasm :)
    *reading - I prefer "understanding" word here

  • @xxgn
    @xxgn Год назад +6

    Interestingly, Amazon Prime Video migrated from microservice architecture to monolithic architecture. The issue was that passing video data between microservices generated too much I/O. The monolithic architecture would hold the video data in memory. They can still scale by running multiple instances of the monolithic application.

    • @andsnpl
      @andsnpl Год назад +16

      This is such a frustrating fable to see repeated. The team migrated from step functions to containers, but they still had exactly the same microservices architecture. They _said_ this was a monolith, only because they apparently had absolutely no idea what that word means.

    • @xxgn
      @xxgn Год назад +2

      @@andsnpl Sure, that's true from a coding and development perspective. However, from a server perspective, you're working with a monolithic application. Your deployments are whole-application, your scaling is not hyper-granular, and your ability to use serverless is weakened. At that point, half of the purported benefits of microservices are gone. Mind you, half of the downsides are gone, too.

    • @neptronix
      @neptronix Год назад +1

      That was a really bad microservice architecture if it was multiple processing huge streams of data.
      Can't blame the microservice architecture, part of it should have been a macroservice.

    • @Rope257
      @Rope257 Год назад +2

      @@andsnpl Press X to doubt. No way that an entire department doesn't know the proper terminology when referring to a monolith.

    • @cinoss5
      @cinoss5 Год назад

      @@andsnpl it 's a spectrum not binary I guess

  • @armenarz4062
    @armenarz4062 Год назад

    Here you are talking about wrong design ruclips.net/video/oejXFgvAwTA/видео.html , because with decoupling also exist cohesion , distributed transaction between a different databases -owned by different teams or organizations . Difficulty of distributed transactions coming just wrong design of the system

  • @greatestone4eva
    @greatestone4eva Год назад +6

    It's NOT unreasonable to expect simplicity to be effective...

    • @elixirfun
      @elixirfun Год назад +2

      It's rather unreasonable not to expect that.

    • @jakubsebek
      @jakubsebek Год назад +2

      Where have we as an industry gotten :DD

    • @ikulloa
      @ikulloa Год назад +1

      Indeed. Good old KISS engineering principle

    • @CamembertDave
      @CamembertDave Год назад +3

      ❌ The Unreasonable (Effectiveness of Simplicity)
      ✔ The (Unreasonable Effectiveness) of Simplicity

  • @elixirfun
    @elixirfun Год назад +6

    Pity that the last question obviously wasn't properly understood by the speaker.

    • @ivp008
      @ivp008 Год назад

      @coninuousdelivery has recently released great video addressing the 2nd question ruclips.net/video/Fh8CqZtghQw/видео.html

    • @cinoss5
      @cinoss5 Год назад +1

      What was missed? It kinda answer the question for me. Or I might miss understood the question as well...

    • @elixirfun
      @elixirfun Год назад

      @@cinoss5 She asked about cross-system testing (very good question), while his answer was repeating that it's easy to test those pieces in isolation.

    • @KManAbout
      @KManAbout Год назад +2

      ​@@elixirfunintegration testing is difficult

    • @elixirfun
      @elixirfun Год назад

      @@KManAbout Would it have beeen the answer then? :) Yeah, sure it is.

  • @maverickmusic101
    @maverickmusic101 Год назад +1

    Great talk ❤