Modular Monolith - How To Create Your Modules

แชร์
ฝัง

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

  • @MilanJovanovicTech
    @MilanJovanovicTech  7 หลายเดือนก่อน +1

    Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
    Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt

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

    Excellent video, Milan! This is more clear for me!

    • @MilanJovanovicTech
      @MilanJovanovicTech  6 หลายเดือนก่อน +1

      The next video should help even more

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

    This is awesome and useful content thank you

  • @v-bohrer
    @v-bohrer 7 หลายเดือนก่อน +1

    Awesome content, thanks for all the knowledge!

  • @sauravbhatta5303
    @sauravbhatta5303 7 หลายเดือนก่อน +3

    Hopefully ur modular monolith course will be great.

    • @MilanJovanovicTech
      @MilanJovanovicTech  7 หลายเดือนก่อน +2

      I'm excited. It'll end up being 12-15 hours of top-notch content. 😁

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

      If it’s anything like the other course, I can’t wait!

    • @MilanJovanovicTech
      @MilanJovanovicTech  7 หลายเดือนก่อน +1

      @@jeremylarose5100 My opinion is this one is far better. I've learned a ton from some mistakes made on my first course.

    • @daveanderson8348
      @daveanderson8348 7 หลายเดือนก่อน +1

      @@MilanJovanovicTech If you put it like that, you're going to make it even more expensive than your other expensive course. I hope you don't set the bar high, because then there is a good chance that many people will look elsewhere!

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

      @@daveanderson8348 It'll be pretty similar to the other one, with a lot more content.
      But then again, how many other creators regularly update their existing courses or introduce new content? I don't know of many.

  • @lucasi-cs
    @lucasi-cs 7 หลายเดือนก่อน

    Excellent video Milan! I'm looking forward to future episodes of this series

  • @slobodanmikaric2180
    @slobodanmikaric2180 7 หลายเดือนก่อน +1

    Nice and simple, one thing catches my eye, your Training Application module is dependent on User.Domain? Modules should share DTOs and interfaces using contracts. I guess this is a side effect of moving from monolit to modular monolit and in the next video you will deal with it. Nice work 😊

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

      Exactly, I'll deal with it in a future video doing exactly what you suggested. Users module will expos a public API that the Training module can call.

  • @kurumi690
    @kurumi690 7 หลายเดือนก่อน +2

    next video should be "creating beautiful micro services app with Aspire NET" 😊

  • @barefeg
    @barefeg 7 หลายเดือนก่อน +1

    This is fine for a theoretical experiment. But in practice the split will be decided by the topology of the teams which is a reflection of the business

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

      Of course, this is a contrived sample

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

    How would you suggest fitting reporting into a modular monolith architecture?
    Reports will likely pull data from multiple modules, so maybe all reports belong in their own module, but then that report module would communicate with several other modules.
    You could also put the reports within the modules, but then they would have to potentially communicate to other modules.
    What do you think?

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

      The most elegant, and also most complex, approach would be publishing events and having the reporting module react to these events and update the required data.
      We can also implement sync calls to other modules to gather the needed data, on demand.

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

      @MilanJovanovicTech when you say sync calls, what do you mean?
      I imagine maybe something about the data from the modules that the report needs get copied and transformed into a report specific data model (ie: "sync") the data, or are you referring to something else?
      I'd be very interested in a video on this because I believe reporting is a requirement for a lot of projects that would justify a modular monolith architecture.

  • @ОлександрВоронков-в6р
    @ОлександрВоронков-в6р 7 หลายเดือนก่อน +6

    why don`t you post the code in the video to the github?) just a simple example :)

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

      I'll work on a different project for GitHub, planning to release something over the summer to cover the popular architectures

  • @ripperjack7642
    @ripperjack7642 7 หลายเดือนก่อน +1

    Do Modular Monoliths have a way of communication other than using abstract Interfaces, thank you for this informative video

    • @MilanJovanovicTech
      @MilanJovanovicTech  7 หลายเดือนก่อน +1

      Yes. I'll talk about it in another video. But you can use messaging to communicate between modules.

  • @recycledsoldier
    @recycledsoldier 7 หลายเดือนก่อน +1

    What are your thoughts about putting endpoints into the modules as well and making the API a pure presentation/implemenation layer? That way you're not bound to the API project. We've done something similar in a recent project we released where we had to deploy to the cloud as well as an executable running on a legacy machine on prem.

  • @aaronbcj
    @aaronbcj 7 หลายเดือนก่อน +2

    shouldn't we move modules to separate solutions? even if keeping them in same solution, how about deploying them separately and reference them using nuget instead of project reference so later on it can be migrated easily to MS

    • @recycledsoldier
      @recycledsoldier 7 หลายเดือนก่อน +2

      I've worked on a project like that, and it requires A LOT of discipline from the team and generally a central architect. The reason being is that coordinating nuget updates becomes its own task. It makes the project more resilient to bad changes but comes with a lot of extra management and technical debt. It also requires a lot of coordination in regard to lower-level libraries among all projects.
      For instance, you have two modules, Products and Orders, they may rely on some lower-level common libraries like Security, Common, Caching, etc. that your team also manages. If you update one of those, you now have to ensure that you propagate those to all of the high-level libraries or run the risk of collision in the main monolith project. It's fine for small teams and small projects, but as the team and project complexity grow, the technical debt to manage those types of references increases.
      I think all larger projects should have a "keeper of the keys"/Architect as it were but not all teams get that luxury.

    • @MilanJovanovicTech
      @MilanJovanovicTech  7 หลายเดือนก่อน +1

      Where's the monolith part then?

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

      I agree. Usually monoliths are not converted to MS at one go, instead follow strangler pattern to extract one module at time so both "modular monoliths" and new MS can co-exist

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

    Wouldn't having the training module reference the user module not be a best practice and break the actual modularity?
    What would you do in this case...extract IUserRepository and User domain into the shared kernel, leave it how you did it, or something else?

    • @MilanJovanovicTech
      @MilanJovanovicTech  7 หลายเดือนก่อน +1

      Wait for the next video (this week), but what we want to do is have Training reference the public API of the Users module. This can be as simple as exposing an interface, that will be implemented by the Users module.

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

    Have you ever used the Managed Extensibility Framework (MEF) with a modular monolith before?

  • @ml_serenity
    @ml_serenity 4 หลายเดือนก่อน

    I'm wondering why is it still called a monolith? Because of inproc nature?

    • @MilanJovanovicTech
      @MilanJovanovicTech  4 หลายเดือนก่อน

      It's one deployment unit / single application

  • @sunzhang-d9v
    @sunzhang-d9v 7 หลายเดือนก่อน

    Activities suddenly appeared

  • @DavidM-n1f
    @DavidM-n1f 3 หลายเดือนก่อน

    Why do so many coders on TH-cam use their normal screen resolution, thinking that everyone is watching on a 4k monitor.. it's not readable on a laptop. There is a reason why most IDEs have a 'presentation mode'.

    • @MilanJovanovicTech
      @MilanJovanovicTech  3 หลายเดือนก่อน

      This is the first time I hear of presentation mode, to be fair

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

    Hi Milan! What keyboard are you using?

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

    Great video Milan. Keen to see the rest of this series!

    • @MilanJovanovicTech
      @MilanJovanovicTech  7 หลายเดือนก่อน +1

      Thanks, it's coming together coming slowly