Query Bus Capacity

we have a spring-boot services that connect to Axon Server EE, and the queries are taking a long time. after analysis, we found that the “Query Bus Capacity” is at 100%.

do you have any idea how to optimize it (override the configuration in Spring Boot, etc.)?

It depends on whether the number of queries that can be executed in parallel can be increased. If this is the case, you can increase the parameter “axon.axonserver.query-threads” from the default value of 10 to a higher value. This allows more parallel queries in the client application.