Take these numbers simply as some values based on the experience of the author (Evans book was published over 13 years ago, since then the situation has changed).
First of all, what (unfortunately) few developers understand is that DDD is a way of thinking, a way to look at things. It. Thus, you can use DDD in every project, because we still need to understand the domain first, regardless of its implementation. If it turns out that the domain is just a bunch of data structures, then you do not need to complicate your life. Especially if you are creating a "silent" application, that is, the user interface for the database.
But if you are creating an application that needs to understand business semantics (concepts and behavior) in order to automate things, then this is a different story, and all these DDD concepts will help you create a more convenient application.
So it really depends on your application, and even in this application everything can vary greatly. You must first understand the purpose of the application, and then the domain that it is trying to represent (if so), and come up with a solution for each use case. In one application, you can have many CRUD materials, and you can be very effective, leaving a lot of abstractions and , you can have a couple of important concepts and use cases that will require a much better understanding and design. It is also important how you think the application will change over time. If there are signs that it will develop over time, it would be better to be a little distracted, but only in terms of design. At the moment, the implementation may be CRUDy.
If you consider a methodology as a group of thinking and concepts, you can use it everywhere, because something like DDD is not an “how to” coding recipe. Although he has certain tools, the application developer must decide whether they are good for your application.
Simply put, you need to use DDD to decide if (integer) DDD can be used for some parts of your application. But then again, DDD means a strategic approach, thinking.
It’s just not right to solve the solution from the very beginning for the entire application. Understand the problems that the application is trying to solve and use the appropriate solution for each problem. If, after all, everything is just CRUD, then everything is fine. It is also normal, if only some parts are implemented using tactical DDD tools, the task is to have an optimal solution to the problem.
In conclusion, learn and understand the DDD mindset (there are a lot of explanations, focus on the design, not the recipes, because they are wrong), avoid looking at his coding recipe and just use it to determine the best approach for applications.