I have a application using SOLR to query 2 million+ document and sort by time.
Query URL param like this /select?sort=p_review_date desc&rows=10&start=0&q=*:*, parameter start is variable value, every request increased 10.
When i make performance stress testing, the SOLR server CPU usage close to reach to 100%.
Question: 1.What causes high CPU usage? 2.Is there a way to make low CPU usage, such as cache or other configuration.
This is a part section for query cache configuration in solrconfig.xml 1024
<queryResultCache
class="solr.LRUCache"
size="40960"
initialSize="10240"
autowarmCount="512"/>
<documentCache
class="solr.FastLRUCache"
size="40960"
initialSize="10240"
autowarmCount="0"/>
<enableLazyFieldLoading>true</enableLazyFieldLoading>
<queryResultWindowSize>10</queryResultWindowSize>
<queryResultMaxDocsCached>500</queryResultMaxDocsCached>