我正在具有两个SSD磁盘的服务器上运行solr。 我猜该磁盘似乎是可旋转的,因为配置了硬件RAID镜像
cat /sys/block/sda/queue/rotational
1
阅读Taking Solr to Production后,我想检查ConcurrentMergeScheduler的运行方式。
1)solr自动检测磁盘为旋转磁盘(此处为4核)
curl -s localhost:8983/solr/admin/metrics |grep CORE.fs.spins
"CORE.fs.spins":true,
"CORE.fs.spins":true,
"CORE.fs.spins":true,
"CORE.fs.spins":true,
2)我已将lucene.cms.override_spins=true
添加到SOLR_OPTS
(并重新启动)
3)solr仍检测到"CORE.fs.spins":true
和"lucene.cms.override_spins":"true"
我想念什么吗?他们还有其他调整来改进ConcurrentMergeScheduler吗?我应该注意速度的改善吗?