Modular Monolith - How To Create Your Modules

  Рет қаралды 14,646

Milan Jovanović

Milan Jovanović

Күн бұрын

Пікірлер: 49
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
Want to master Clean Architecture? Go here: bit.ly/3PupkOJ Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt
@leonardoalvarez5759
@leonardoalvarez5759 8 ай бұрын
Excellent video, Milan! This is more clear for me!
@MilanJovanovicTech
@MilanJovanovicTech 7 ай бұрын
The next video should help even more
@v-bohrer
@v-bohrer 8 ай бұрын
Awesome content, thanks for all the knowledge!
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
Most welcome!
@lucasi-cs
@lucasi-cs 8 ай бұрын
Excellent video Milan! I'm looking forward to future episodes of this series
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
More coming :)
@sauravbhatta5303
@sauravbhatta5303 8 ай бұрын
Hopefully ur modular monolith course will be great.
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
I'm excited. It'll end up being 12-15 hours of top-notch content. 😁
@jeremylarose5100
@jeremylarose5100 8 ай бұрын
If it’s anything like the other course, I can’t wait!
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
@@jeremylarose5100 My opinion is this one is far better. I've learned a ton from some mistakes made on my first course.
@daveanderson8348
@daveanderson8348 8 ай бұрын
@@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 8 ай бұрын
@@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.
@dotnetMasterCSharp
@dotnetMasterCSharp 2 ай бұрын
This is awesome and useful content thank you
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Glad you think so!
@Reverence12389
@Reverence12389 8 ай бұрын
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 8 ай бұрын
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 8 ай бұрын
@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.
@recycledsoldier
@recycledsoldier 8 ай бұрын
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.
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
I've also done that, works great
@aaronbcj
@aaronbcj 8 ай бұрын
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 8 ай бұрын
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 8 ай бұрын
Where's the monolith part then?
@aaronbcj
@aaronbcj 8 ай бұрын
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
@sinthonseng
@sinthonseng 7 ай бұрын
Have you ever used the Managed Extensibility Framework (MEF) with a modular monolith before?
@MilanJovanovicTech
@MilanJovanovicTech 7 ай бұрын
No, I haven't
@Reverence12389
@Reverence12389 8 ай бұрын
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 8 ай бұрын
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.
@ОлександрВоронков-в6р
@ОлександрВоронков-в6р 8 ай бұрын
why don`t you post the code in the video to the github?) just a simple example :)
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
I'll work on a different project for GitHub, planning to release something over the summer to cover the popular architectures
@slobodanmikaric2180
@slobodanmikaric2180 8 ай бұрын
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 8 ай бұрын
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.
@barefeg
@barefeg 8 ай бұрын
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 8 ай бұрын
Of course, this is a contrived sample
@ripperjack7642
@ripperjack7642 8 ай бұрын
Do Modular Monoliths have a way of communication other than using abstract Interfaces, thank you for this informative video
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
Yes. I'll talk about it in another video. But you can use messaging to communicate between modules.
@kurumi690
@kurumi690 8 ай бұрын
next video should be "creating beautiful micro services app with Aspire NET" 😊
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
Challenge accepted
@ml_serenity
@ml_serenity 5 ай бұрын
I'm wondering why is it still called a monolith? Because of inproc nature?
@MilanJovanovicTech
@MilanJovanovicTech 5 ай бұрын
It's one deployment unit / single application
@stasnocap
@stasnocap 8 ай бұрын
Hi Milan! What keyboard are you using?
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
I believe Logitech g413 carbon
@DavidM-n1f
@DavidM-n1f 4 ай бұрын
Why do so many coders on KZbin 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 4 ай бұрын
This is the first time I hear of presentation mode, to be fair
@sunzhang-d9v
@sunzhang-d9v 8 ай бұрын
Activities suddenly appeared
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
Copy-paste
@dandoescode
@dandoescode 8 ай бұрын
Great video Milan. Keen to see the rest of this series!
@MilanJovanovicTech
@MilanJovanovicTech 8 ай бұрын
Thanks, it's coming together coming slowly
Implementing Modular Architecture With Sync Communication
12:20
Milan Jovanović
Рет қаралды 10 М.
How AI 'Understands' Images (CLIP) - Computerphile
18:05
Computerphile
Рет қаралды 219 М.
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
How to Implement the CQRS Pattern in Clean Architecture (from scratch)
17:36
7 Serilog Best Practices for Better Structured Logging
13:36
Milan Jovanović
Рет қаралды 29 М.
Modular Monoliths • Simon Brown • GOTO 2018
46:32
GOTO Conferences
Рет қаралды 97 М.
Getting Started with Modular Monoliths in .NET
12:37
Milan Jovanović
Рет қаралды 27 М.
Why and how to learn backend engineering with Go?
41:44
K Srinivas Rao
Рет қаралды 1,4 М.
SQLModel + FastAPI: Say Goodbye to Repetitive Database Code
19:50
Денис Цветцих - Модульный монолит вместо микросервисов: Как, когда и зачем
1:00:37
DotNext — конференция для .NET‑разработчиков
Рет қаралды 6 М.
This Is What MassTransit Does to Your Message Broker | RabbitMQ
14:21
Milan Jovanović
Рет қаралды 12 М.
The Beginner's Guide to Clean Architecture
13:19
Milan Jovanović
Рет қаралды 33 М.
Domain-Driven Design: The Last Explanation You'll Ever Need
21:05
Software Developer Diaries
Рет қаралды 14 М.
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 62 МЛН