ChatGPT解决这个技术问题 Extra ChatGPT

When to use the CQRS design pattern?

My team and I have been discussing using the CQRS (Command Query Responsibility Segregation) design pattern and we are still trying to asses the pros and cons of using it. According to: http://martinfowler.com/bliki/CQRS.html

we haven't seen enough uses of CQRS in the field yet to be confident that we understand its pros and cons

So what do you guys think, when does a problem call for using CQRS?

Darren Cauthon does a nice presentation on CQRS and Event Sourcing, including the drawbacks - Google says it's available here, but I can't verify that through our firewall.
he personally hasn't seen it in the field

D
Dennis Traub

CQRS is not a pattern that encompasses the whole application.

It is a concept that builds on Domain Driven Design (DDD). And an important strategic concept of DDD is the so-called Bounded Context.

In a typical application there are multiple bounded contexts, any of which can be implemented the way it makes sense. For instance

User Management -> CRUD

Invoicing -> CRUD

Insurance Policy Management (the Core Domain) -> CQRS

...

This probably doesn't answer your question but it might give a little more insight into the topic. To be honest, I don't think it can be answered at all without considering a project's specifics, and even then there is rarely something like a definite best practice.


Disagree with the statement that CQRS is not a pattern and that, once you decide on using it, will often encompass the whole application. CQRS is an architectural pattern, not a top-level architecture. Thus, you must evaluate whether to apply it on every specific bounded context. See cqrsjourney.github.com and read the 2nd Reference chapter.
@GrigoriMelnik maybe the first sentence of my answer is not clearly formulated (I'm no native speaker as well). As far as I can tell, I'm saying the same as you do. CQRS should be applied on a bounded context basis, not across a whole application.
@DennisTraub Actually I think your sentence is properly formulated and it's Grigori Melnik that interpretes it the wrong way.
While it's hard to define terms like this, I'm not sure where the part about it building on DDD comes from? To me they are not tied together at all
"Insurance Policy Management (the Core Domain) -> CQRS" doesn't really say much without any example...
E
Eliya Cohen

Well CQRL critics may say that CQRS is complicated and that might be true.

Of course, it's adding overhead developing a simple CRUD application in the CQRS style, so I'd consider using CQRS only in the following cases:

Large team - You can split development tasks between people easily if you have chosen CQRS architecture. Your top people can work on domain logic leaving usual stuff to less skilled developers. Difficult business logic - CQRS forces you to avoid mixing domain logic and infrastructural operations. Scalability matters - With CQRS you can achieve great read and write performance, command handling can be scaled out on multiple nodes and as queries are read-only operations they can be optimized to do fast read operations.


I'm not so sure that having a distributed team would come into my thoughts when considering CQRS. Any layered/multi-tiered application can be broken down nice segregated tasks.
complicated to understand or complex ? you should make the distinction clearer about these critics. IMO it simplifies your life on many aspects and yeah it's not what you learn at school, so there are some additional efforts to be done to understand it.
H
Henrik

When you have a complex or hard business domain and:

with event sourcing; you want a nice way of testing logic

with event sourcing; you want to prove your behaviours through testing and reasoning

you have multiple clients, or consumers, of your domain service (not just single web server)

OR you have users that need to act on common data:

and you want to formalize the data merge concepts of your domain

or you want to apply logic for merging events

OR you have scalability requirements:

you apply the pattern as a denormalization pattern that removes bottlenecks

you want to scale horizontally and not vertically

OR you have performance problems (other side of scalability):

e.g. you need to migrate your architecture towards an event driven architecture - CQRS as a pattern is a good stepping stone.

OR you have a team that is physically disjunct:

e.g. parts of your team is in another country

or it's hard to get face-to-face communication, so you want to decouple the read models from the write-side of things (sagas, domain, CRUD)

It's not CQRS that's overly complicated, it's computers that are.


See comment on @MairbekKhadikov's answer
F
Frederik Krautwald

When to use the CQRS design pattern?

The CQRS architecture pattern could be used when it is difficult to query from repositories all the data that users need to view. This is especially true when UX design creates views of data that cuts across several aggregate types and instances. The more sophisticated your domain, the more this tends to be true.

When it is unsuitable to compromise on UX design, using CQRS attempts to mitigate the problems associated with other solutions, such as:

requiring clients to use multiple repositories to retrieve all aggregate instances; or

the design of specialized finders on various repositories to gather disjointed data using a single query.

To summarize: Use CQRS when its difficult to query from repositories data users need to view, which tend to happen the more sophisticated your domain is.


You don't necessarily need CQRS for that, materialized views will be usually enough if the data is difficult to query.
@matino Materialized views require that the data is stored in the same database. This is often not the case in microservice architectures where CQRS often is paired with event sourcing.
M
Marcin Szymczak

In real world scenario CQRS might be useful when you have front end/web service client which needs lots of data from multiple domains and retrieval of these data from database takes long time.

In such case you might consider creation of separate read model which will be faster to develop and might have faster execution time.


R
Ravi Ganesan

Following are the reasons to use CQRS:

Scalability (read exceeds the write, so does the scaling requirements for each differs and can be addressed better) Flexibility (separate read / write models) Reduced Complexity (shifting complexity into separate concerns) Concentrate on Domain / Business Facilitates designing intuitive task-based UIs


K
Kaveh Naseri

Below are some scenarios where the CQRS Pattern fits perfectly:

Large projects where high performance is required and independent scalability is required.

In the applications where business logic is complex. In such a case, you can separate your reads from write to make it more simple.

If you want parallel development where one team can work on the read models & other team works on write models.

Read this Article to understand more about CQRS Pattern.


c
cryptoKTM

Well, there is no straightforward answer to your question, but I would like to give you some real-world examples of how CRQS could be implemented which could help you figure out how it could be used in your application,

1. Instagram

We often see Instagram stories/reels etc. These stores are read-intensive, it's better to have a separate read-only database for such data. The outer world can only deal with that particular DB for rendering stories in your friend's timelines, doing so the system does not need to bother the main DB where major business-intensive information is stored.

2. Amazon

When an order is placed, the order service emits an event, this event is subscribed by other services out of which one could update denormalized Read-Only DB, and other services(let's say messaging service) could simply pick up normalized information like userId, ordered, etc, etc from Read-only DB and proceed with email processing for order confirmed


V
Val

If you are seeing that the problem domain doesn’t fit well into more generic architecture or you are experimenting with domain-driven design, I’d recommend you to give CQRS a shot.

It is a powerful pattern, which might give you good exposure to the problem domain as well as solve some technical and infrastructural challenges. But it is worth keeping in mind that it will come with its price and due to conceptual differences with other architectures, it will require a mental-model shift.

CQRS: Intro


m
mustafa kamal

Use it when :

Have a complex domain and need to understand domain by commands Application load with read and write differes Want to scale read operations at any point of time

https://docs.microsoft.com/en-us/azure/architecture/patterns/cqrs#when-to-use-this-pattern


Y
Yvonne

With regards to implementing CQRS, I like the idea of separating read models when you have a front end/web service client requiring lots of data from multiple domains, and I would like to try it. My primary reason for wanting to try it is due to the issue with 'slowness'in development and execution processes; especially when it comes to handling large data sets, or 'big data'. I'm looking at all the various options available in reducing complexity(ies), adding scalability, resiliency, and flexibility to a hybrid architecture.