(一)数据在存入solr时,会有几种提交方式,这里主要记录下硬提交与软提交这两种方式:
硬提交(commit):
这种提交会把文档立即持久化到磁盘,并可以让你能立马查询到它,因为它会开启一个新的searcher,但是它缺点很明显,就是很耗性能,并会阻塞到提交任务完成.简单的理解就是它是把数据一条一条的插入solr中,效率较慢,耗费资源较多.
软提交(softcommit):
这种提交不会立即把数据写到磁盘,但它可以使你能立即查询到它,软提交的方式可以把较多的一批数据同时插入到solr中,效率较快.
上面简单地理解下两者的概念差别,具体的可以查看官方文档:这里截取部分内容:
================================================================================
A commit operation makes index changes visible to new search requests. A hard commit also calls fsync on the index files to ensure they have been flushed to stable storage and no data loss will result from a power failure.
A soft commit is much faster since it only makes index changes visible and does not fsync index files or write a new index descriptor. If the JVM crashes or there is a loss of power, changes that occurred after the last hard commit will be lost. Search collections that have near-real-time requirements (that want index changes to be quickly visible to searches) will want to soft commit often but hard commit less frequently.
=================================================================================
里面的参数解释如下:
软提交和硬提交前两个参数都采用默认true,第三个参数便是开启软提交还是硬提交,硬提交默认为false.
(二)上面区分了软硬提交,接下来说一下另外两个:
这是在solrconfig.xml里面的配置信息
注:
总结接到这了,我也是看了很多的文章,把一些比较重要的内容总结一下,以供大家和自己参考和学习.
参考文档:
https://blog.csdn.net/aiyueqingfeng/article/details/51803590
https://blog.csdn.net/htw2012/article/details/17136781