Elasticsearch uses only half of the processor cores, even at full load

I installed Elasticsearch on my server (Windows Server 2012). When I execute several query requests as a stress test, only half of the processor cores are used. Why?

CPU cores utilization - Elasticsearch under stress test

+4
source share
1 answer

Do you use elasticsearch default configuration?

, , //. , . ( ) . ( * 3).

( ) elasticsearch.yml:

threadpool.search.type: fixed
threadpool.search.size: <num-of-threads>
Hide result

, .

+2

All Articles