Modular Monoliths • Simon Brown • GOTO 2018

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ก.ย. 2024

ความคิดเห็น • 64

  • @devonbiere
    @devonbiere 6 หลายเดือนก่อน +11

    This talk is as relevant and insightful today as it was 5+ years ago. It should have way, way more views and likes and discussion. Like most, I've seen and suffered under both extremes... horrifying, ancient big balls of monolithic mud where it was terrifying to change anything vs. knee-jerk microservice zealotry. I'm trying to find and promote a bit of sanity by adopting modular monoliths. The devil's definitely in the details. I'm still trying to get my head around the practical considerations of data encapsulation/boundaries when so much data has been traditionally shared (JOINs, JOINs everywhere). But this is a great overview and a thought-provoking reminder that good design is good design. Thank you, Simon!

  • @waldoaraya3058
    @waldoaraya3058 3 ปีที่แล้ว +27

    Pure Gold. Finally, we are rescuing the foundational principles of how to make good software from to the roots of our industry and appliying those principles on modern technologies. Fantastic.

  • @branislavpetrovic7486
    @branislavpetrovic7486 3 ปีที่แล้ว +14

    Great and interesting talk! I like the idea that we should first start up with modular monolith and than switch to microservices eventually.
    Thanks!

  • @maged_helmy
    @maged_helmy 3 ปีที่แล้ว +9

    Thank you for a very insightful and intelligent talk.

  • @dariuszlenartowicz
    @dariuszlenartowicz 5 ปีที่แล้ว +10

    I use "Package by Feature" but each package has own additional package with Contracts. Thanks to that I can make everything private also with controller into that package and external package can use Contracts (which are public and this is only referenced by other features) to use functions from that package. Nice and clean.

    • @marikselazemaj3428
      @marikselazemaj3428 3 ปีที่แล้ว +4

      I don't understand what you are saying. but it sounds like a good thing.

    • @removed107
      @removed107 3 ปีที่แล้ว +1

      @@marikselazemaj3428 Hahaha, relax.

  • @narimanesmaielyfard8058
    @narimanesmaielyfard8058 2 ปีที่แล้ว +2

    Definitely the best talk I ever saw on software architecture!

  • @jaibharat5042
    @jaibharat5042 2 ปีที่แล้ว +2

    Setting strong foundations and setting it right at the very start, enjoyed it thoroughly...

  • @aboutajedyneayoub921
    @aboutajedyneayoub921 4 ปีที่แล้ว +69

    "Choose microservices for the benefits, not because your monolithic codebase is a mess"

  • @techworldwithmilan
    @techworldwithmilan 4 หลายเดือนก่อน +1

    Great talk! A lot of things boil down to common sense.

  • @avinashsuresh5221
    @avinashsuresh5221 5 วันที่ผ่านมา

    1. One global context
    2. Multiple shared services
    3. Private components
    4. Component interaction only through shared services injected in the components.
    5. Global context manager manages shared services.
    Spring got it right.

  • @MrWesopl
    @MrWesopl ปีที่แล้ว +1

    "Clean architecture" /Onion can have also a huge overhead in simple systems.
    E.g. Forcing always!(!) every call to go from webcontroller DTOs, to domains (domain object) Is what I call a mapping-hell.

  • @rarknoefi7545
    @rarknoefi7545 5 ปีที่แล้ว +10

    I would like to throw modules into the 'Java doesn't have a component keyword" debate

  • @abhisheksaxena518
    @abhisheksaxena518 ปีที่แล้ว +2

    Amazing talk! I am still trying to answer one question in all the 4 approaches, how to communicate with other components? Like Orders component needs information from the Customer component, how and where the two components communicate to get information, Order getting information about the Customer in all the 4 approaches

    • @m.yousuf3899
      @m.yousuf3899 ปีที่แล้ว

      th-cam.com/video/MkdutzVB3pY/w-d-xo.html&ab_channel=DevMentors
      This video has a lot of implementation-related details about modular monoliths.

    • @seNick7
      @seNick7 5 วันที่ผ่านมา

      Import an instance of the public api of Customer into Order. It's not said that only http controller can use it.

  • @johnjerman3549
    @johnjerman3549 2 ปีที่แล้ว +2

    Very nice, explained exceptionally well

  • @7th_CAV_Trooper
    @7th_CAV_Trooper 3 ปีที่แล้ว

    I just re-read the missing chapter this weekend. Didn't put it together that it was /this/ Simon Brown. Good stuff!

  • @AmeerHamza-jy5ml
    @AmeerHamza-jy5ml ปีที่แล้ว +1

    Great talk Simon Thanks.

  • @kupkaon
    @kupkaon 8 หลายเดือนก่อน +1

    Too bad I've started learning about distributed monoliths only after I've wasted 3 years working on one. Well, I didn't have the experience, I went to work on a system I did not understand from the domain perspective, it turned out later on that it is actually a distributed monolith because of various dependencies I did not know about. So pls, understand the domain before jumping on coding, do what Simon is talking about, you will save yourself a lot of pain, lost time and lost money for the company you work for...

  • @jvm-tv
    @jvm-tv 3 ปีที่แล้ว +9

    "People use microservices to enforce code boundaries", do they really? Yes it is the ultimate form of code boundaries but that's not the reason for doing it. The reason is the possibility to deploy and scale parts of the application independently.

    • @sealoftime
      @sealoftime 3 ปีที่แล้ว

      Whether your component is a microservice or not is a detail of implementation, in my opinion. Scaling a component should not be a task much harder than separating an interface from a class. As such, you do not need the microservice architecture to scale your application in the first place, but microservices naturally arise, when the intent to scale only a part of components in your monolith begins.

  • @augustsbautra
    @augustsbautra 2 ปีที่แล้ว +3

    Great talk, Simon is certainly one of the best when it comes to delivering actionable, no-nonsense wisdom.
    Coming from Rails, I'd certainly find it beneficial to be able to "slice the monolith up vertically", hiding some group of models/services from the rest while being able to define public interfaces that are OK to access from anywhere. Engines?

  • @DodaGarcia
    @DodaGarcia 2 ปีที่แล้ว

    Simon Brown is such a treasure trove of accessible insight on complex architectures (and a fox to look at too), love his talks.

  • @user80204
    @user80204 2 ปีที่แล้ว +1

    Perfect!

  • @toopkarcher
    @toopkarcher ปีที่แล้ว

    That was really good

  • @davidpccode
    @davidpccode 3 ปีที่แล้ว +1

    awesome!! thanks

  • @rniestroj
    @rniestroj 5 ปีที่แล้ว +3

    I would make the controller package protected. Spring can instatiate it. Nobody from code needs to invoke it.

  • @pavelpetrashov2975
    @pavelpetrashov2975 3 ปีที่แล้ว +1

    Ok. Good. What should I do, if I don't use spring annotation configuration? How can I create impl classes with package modifier? I know only one way - spring annotation configuration. Architecture for spring?

  • @Zebsy
    @Zebsy 11 หลายเดือนก่อน

    I somehow missed the part where he talks about modular monoliths in any detail.
    Some good information in places, but I'm still not sure what a modular monolith is after this talk.

  • @Kreadus005
    @Kreadus005 5 ปีที่แล้ว +2

    Hey, isn't Simon Brown the C4 software architecture guy? Documentation = The Architecture.

  • @ForgottenKnight1
    @ForgottenKnight1 6 หลายเดือนก่อน

    I don't think everything has to be a first class citizen. From my experience, it will get abused. Just like "Service" - XService, YService, BlablaService, UselessService. All the services. Its tiring. 13:30 - I would say it is better because the concept of feature is better contained than the concept of layer. Every time I went from layers to vertical slicing my solution, I found that I understand and navigate the code much easier afterwards.

  • @theunis2958
    @theunis2958 7 หลายเดือนก่อน

    Me: "The root cause of our problems is poor encapsulation."
    My boss: "That sounds like a code-level thing. Get your head out the sand."
    Engineer: "We've added a thing for that."

  • @andresmontoya2432
    @andresmontoya2432 3 ปีที่แล้ว

    Great talk. My OCD is being triggered by the slide at 30:30

  • @khajalieubarrie5088
    @khajalieubarrie5088 ปีที่แล้ว

    Thanks…How would an order component communicate with another component say user management to authenticate users for example if you decide to modularise them?

  • @jvm-tv
    @jvm-tv 3 ปีที่แล้ว +6

    *TL;DW*
    Don't do microservices to make your code base more modular do it because you really need to be able to deploy and scale parts of your application separately. Instead make your codebase more modular by using a better package structure and careful use of *public* classes.
    (Interesting talk but could have been done in 15 minutes)

    • @removed107
      @removed107 3 ปีที่แล้ว

      Thanks, my friend.

  • @midclock
    @midclock 3 ปีที่แล้ว +1

    Thanks man, those were the last words convincing me that microservices are not the way to follow at least not now for the application I'm building, and the n of people working on it (just me).
    I don't know why, but I realised that microservices maybe are following what human interaction is like in these days: people tend to stay more in their little worlds, instead of trying to be a part of a whole thing. Communication most of the time is not very good, and costs a lot.
    LOL 😂
    .... Anyway, my concern is an asynchronous service that runs an heavy algorithm, and I'm thinking about isolating, it in order to run N instances in parallel.
    I have lots of perplexities regarding the data produced by this service, due to the fact that one instance cannot be unaware of what the other is doing, in order to produce a good (and feasible) result.
    I mean... What the hell! Do we really need to learn containerization?
    Why do we need to throw away years of good stuff (relational databases, just to say one)?
    Wouldn't be simpler to have a smarter JVM, capable of a container like features only where needed?
    Excuse my ignorance about the topic, I really appreciate how fast you can setup an environment with docker, but.... I think that better solutions still have to come in the next years, and maybe they will be a good balance between the past techniques and the present ones... Balance!! It's always the best solution!

  • @rTuelho
    @rTuelho 2 ปีที่แล้ว

    "... we just type 'public' by default and we don't know why. It's muscle memory..." That's what kills the modular design principle...

  • @donaldstrubler3870
    @donaldstrubler3870 3 ปีที่แล้ว +3

    CV-driven design! lol

  • @redbenus
    @redbenus 5 ปีที่แล้ว +12

    Hah "CV Driven Design"

  • @selamiarasaz
    @selamiarasaz 4 ปีที่แล้ว

    "Tweet component does not actually exist when you zoom in."
    Do you also think a building you just entered into does not exist as well?

    • @xucongzhan9151
      @xucongzhan9151 4 ปีที่แล้ว +2

      Well, I'd argue "zooming in" is not the same as "entering", but much closer to "walking up to" (a building). Having an actual Tweet module VS having a conceptual Tweet module that consists of two files/classes which sit among other files for other features, is different IMO.

  • @l_combo
    @l_combo 4 ปีที่แล้ว +3

    Love Simon's work and content, surely the answer is to stop using Java ;) (joking, but kinda not)

  • @PulkitBhardwaj94
    @PulkitBhardwaj94 ปีที่แล้ว

    The problem I have been facing in architecture

  • @gadeichhorn
    @gadeichhorn 5 ปีที่แล้ว +4

    OSGi to the rescue.

  • @anatoliyrozhyn1282
    @anatoliyrozhyn1282 5 ปีที่แล้ว

    Concept driven development? To which problem the solution is? Business? Code structure should rather reflect organizational structure. At least, this (org.structure) seems to be much more stable than rapidly changing functions, technologies and context. The architecture evolves dramatically while organizational structure doesn't! The more the drivers for codebase are stable, the less effort/risk/spending/learning curve is.

    • @0xIAMROOT
      @0xIAMROOT 5 ปีที่แล้ว

      When you say org structure, what do you mean? Frontend, backend, db, etc? Just need clarification.

    • @burningdog2
      @burningdog2 4 ปีที่แล้ว +2

      This would be Conway's Law in action.

  • @juanherrera9521
    @juanherrera9521 2 ปีที่แล้ว

    I thought this was obvious to most people? 😅🤔

  • @joyhey89387
    @joyhey89387 5 ปีที่แล้ว +9

    "All these programmers are cargo cult programmers that follow what somebody is saying." - Presenter "Here, I have my own cargo." - Also the Presenter

    • @muyewahqomeyour7206
      @muyewahqomeyour7206 ปีที่แล้ว +2

      😀
      Well, at least the presenter in this case explains the reasons

  • @adammarek8822
    @adammarek8822 5 ปีที่แล้ว +6

    Super boring, outdated, old.

    • @PetiKoch
      @PetiKoch 4 ปีที่แล้ว +6

      I'm kind of a Newbie and interested in your opinion.
      Could you add some more details why the talk is for you "super boring, outdated, old."?
      Are you probably not the "target audience" (e.g. beginner/intermediate but not expert)?
      What talk recordings, books, blog posts, etc would you recommend to other "more expert" people in this field to get some good "learning stuff"?
      Thank you for your help from an another human being trying to "understand better"! Peti

    • @bariole
      @bariole 4 ปีที่แล้ว +7

      @@PetiKoch I am guessing here, but brobably anything which isn't microservice lambda serverless reactive stream is super boring outdated old stuff.

    • @midclock
      @midclock 3 ปีที่แล้ว +3

      Tell us more about your avatar... It looks brand new!

    • @MaximilianBerkmann
      @MaximilianBerkmann 3 ปีที่แล้ว +1

      Do you mind expanding on how it is outdated and old?

    • @baumannalexj
      @baumannalexj 2 ปีที่แล้ว +4

      @@PetiKoch Ignore him. Starting at 34:36, from here on should be a blueprint for startups. Start with a monolith, work on developing bounded business contexts "in-process" by increasing cohesion and decreasing coupling (modules + interfaces), before moving your cohesive modules "out-of-process" (microservices)