我们使用4个分片来解决云问题,当我们尝试使用dataimporthandler导入数据时,它不会在所有4个分片中分发文档。
答案 0 :(得分:1)
根据我的理解:
您需要使用dataimport查询来自定义分片:
SELECT * from albums where id % 3 = 0
SELECT * from albums where id % 3 = 1
SELECT * from albums where id % 3 = 2
参考:http://solr.pl/en/2010/12/27/data-import-handler-%E2%80%93-sharding-2/