Questions tagged [monolithic]
54 questions
4
votes
0 answers
Is Django already has a built-in microservice architecture?
I am working on a Django Project, but now it's going enormously large. I am thinking to convert it to microservice architecture but I found that Django also has a related architecture, apart from having a common database. So my question is, Is…

Manoj Tyagi
- 41
- 3
4
votes
0 answers
Communication between modules - MediatR or Interface/Fasade?
I'm involved in fully modular monolithic application project. We use MediatR like Jimmy describes in this article: Dealing with Duplication in MediatR Handlers. Exactly this:
I want MediatR to serve as the outermost window into the actual…

dariol
- 1,959
- 17
- 26
2
votes
0 answers
school management system architecture
What is the suitable architecture for huge project like 'School Management System' ?
I was trying to implement the microservices architecture, but is microservices architecture needed for 'School Management System' or monolith is fine ?
As…

geeky
- 1,592
- 1
- 8
- 14
2
votes
1 answer
How to properly migrate a monolith architecture app to a microservice app in Django
Today I come with this question probably to someone who has large experience in this.
Basically what the title indicates. We have that app and we have to migrate it to microservices.
We didn't find any solid approach (or we felt it like that) about…

elece
- 21
- 1
- 1
2
votes
0 answers
How to Dockerize a React-Django project where the frontend is served from Django?
I'm new to Docker. I have been surfing through the internet to find any resources for how to Dockerize a React-Django project, in which the React App is served from Django, both running on port 8000, but couldn't find any proper resource for this.…

Krishnan S
- 21
- 2
1
vote
1 answer
Basic microservice design problem re shared data
Scenario
I'll use a hypothetical for the purposes of getting to the design problem I think is relevant.
I have an 'orders' microservice which, rather obviously, owns orders made by my users.
I also have an inventory microservice which tracks…

JᴀʏMᴇᴇ
- 218
- 2
- 15
1
vote
0 answers
How to combine microservice and monolith data for operational reporting?
I am looking for strategic advice about our operational reporting strategy. Currently, we have an effective monolith that has been in existence for decades. Over the past couple years, we have tried to adopt a microservice architecture but now we…

QuiShow
- 11
- 1
1
vote
1 answer
Are Monolith applications single tier application
Are monolithic applications single tiered applications or is it at just code level i.e. UI, Business logic and data access layer in same one big repository? If it is single tiered then does it mean everything is hosted on single server including the…

Disha Gupta
- 13
- 3
1
vote
1 answer
Getting data from two different monoliths
We are developing a feature that will require getting a similar data set from two monolithic applications and displaying it in one application. The monoliths use totally different tech stacks. We are considering defining a set of data and service…

DBK
- 403
- 4
- 13
1
vote
2 answers
Confusion about system architecture
I've read a lot of articles about monolith vs SOA vs microservices, but I'm still a bit confused about their differences.
For example, If I have an application that gathers the data of multiple services within the company via REST, handles them and…

danEtherman
- 11
- 1
1
vote
0 answers
How to split a monolith automatically during deployment
During development a monolithic component (one project in one repo) is actually quite useful:
Especially in the early stages, renaming classes and methods is easy.
Also integration tests can be written, since all services are available inside the…

haferblues
- 2,155
- 4
- 26
- 39
1
vote
1 answer
Manage library version on multiple repositories
Hi friends :) I could use a little help on the problem we're facing at work right now.
Context:
Imagine you have an internal library named Toolkit 1.0. This library exports a lot of Types for your typescript projects (A,B,C).
On normal scenarios,…

ch0m4
- 11
- 3
1
vote
1 answer
How to divide a ER digram into multiple microservices
I have a ER diagram and I want to divide it so I can implement multiple microservices
enter image description here
I used to implement monolithic type, is there a guideline on how to divide ER diagram into microservices?
For example, user…

Ahmed Algosaibi
- 31
- 5
1
vote
1 answer
Loading one specific composer package from monolithic repository
I'm searching a way to separate an active composer package with many Symfony bundles in.
Currently the package have one global composer.json file in the root directory and its looking like…

Georgi Kolev
- 41
- 2
1
vote
1 answer
Kotlin - How do I substitute a String with elements of Mutable List of Pairs?
I am working on Monoalphabetic Cipher and I have to encrypt a message by substituting it with any other alphabet.
fun encrypt(message:String){
//Assume message as ABCD
var encrypt:String = ""
val alphabets = ('A'..'Z').toMutableList()…

Silver Sky
- 431
- 2
- 12