Questions tagged [monolithic]
54 questions
1
vote
1 answer
Can I have fontend(pages) together with a backend in a monolithic or microservices?
I think these are conceptual questions, but for example, can we have a monolithic application that renders the pages and assembles the views (back and front together) or a monolith that is an api for a frontend application? And in the case of…

Guilherme
- 35
- 7
1
vote
1 answer
Is Spring Boot just for Microservices ? can i use Spring Boot for Monolithic architecture?
Is Spring Boot just for Microservices or can I use Spring Boot for Monolithic architecture?

mohammad khalili
- 53
- 1
- 6
1
vote
1 answer
Single or multiple bazel WORKSPACE should be used for monolithic repo?
We put all products and libraries in one monolithic git repository. Its layout looks like this:
- FooProduct
- BarProduct
- BazLibrary
- 3rd_party
|- fftw
|- msgpack
|- zlib
At current, we are using CMake to control the build. As CMake has…

jiandingzhe
- 1,881
- 15
- 35
1
vote
0 answers
How is Windows 7 Kernel only 25 MB?
I found out that Windows has a monolithic kernel : Winodws 7 to feature 25 MB Kernel
As per wikipedia: A monolithic kernel is an operating system architecture where the entire operating system is working in kernel space.
So how does Windows 7…

Apoorv Jain
- 113
- 9
1
vote
1 answer
Differences between Monolithic Architecture and SOA
I confused these two architecture's differences.
Generally, Monolithic Architecture refers to different components of an application being combined into a single business logic.
And, Service Oriented Architecture refers to an application composed…

GRu. L
- 551
- 2
- 5
- 12
0
votes
0 answers
Why CQRS is called as MicroServices Design Pattern and Not Monolithic Design Pattern?
The CQRS pattern splits the application into two parts: the command side and the query side. The command side handles create, update, and delete requests. The query side runs the query part by using the read replicas.
This thing can be achieved in…

priyanka
- 422
- 2
- 7
- 19
0
votes
0 answers
C#.net monolithic installer with prerequisites
There are hundreds of questions and answers around embedding installation prerequisites, however there is no answer to embedding the prerequisites, the prerequisite checking installer and application installer into one downloadable file.
I want to…

J Collins
- 2,106
- 1
- 23
- 30
0
votes
0 answers
Correlation ID pattern for correlate requests of same flow
I have a web application that has some multi page flows where users populate different pieces of informations and being able to move back & forward. In the backend, we need to track all these endpoint requests logs and to be able to relate all log…

Oscar Calderon
- 883
- 2
- 13
- 30
0
votes
2 answers
Can we completely avoid synchronous approach between microservices?
1)If 2 microservices (say order and payment services) can connect asynchronously, then we can avoid using circuit/retry/throttle patterns, right?
I really dont understand why going synchrnous approach and using these patterns again? I mean using…

john
- 15
- 8
0
votes
0 answers
how to access a jhipster generated application's api from a standalone react application
I have generated a monolithic application (spring boot, react, keycloak) using jhipster 7.9, and it is fine for the admin panel, for users, I am building a new standalone react expo application, but I want to fetch the data from the generated…

Galilo Galilo
- 519
- 5
- 22
0
votes
1 answer
Should I used Orchestration or Choreography pattern?
I am currently developing a service and its current architecture is monolithic. So, when a client clicks, the front end connects with the backend service. On the backend, currently it is designed in such a way that it calls a master method which…

potterson11
- 147
- 7
0
votes
1 answer
How to design "delete user flow" in monolith application with Spring Boot?
I have a monolith spring boot application and I have a user for the program. I want to make an endpoint to delete user, but my problem is there are so many entities and Jpa repository interfaces related to the user. When I want to delete a user, I…

abidinberkay
- 1,857
- 4
- 36
- 68
0
votes
1 answer
Is it possible to containerize a .NET assembly or do the equivalent?
I am in the process of building out a "Modular Monolith" whereby the individual services are stored as .NET projects within the overall solution. That way the additional assemblies only load when they are called. It is a sort of half-way…

Michael
- 3
- 1
0
votes
2 answers
Merge micro-services written in Go into one binary
my app consists of several golang written programs that run inside docker/k8s micro-services arch. Now, we want it to run directly on Linux without docker/k8s. So we’re thinking to merge all the programs into a single binary program. Which would be…

Wei Huang
- 590
- 1
- 5
- 18
0
votes
1 answer
Can I horizontally scale only a particular "service" in service oriented architecture?
I want to reduce the load of one of the services with horizontal scaling. In service-oriented architecture, do I have to copy or move(whatever you say) all services to the server I will add, since each of the services is a separate project?
Can I…