分布式搜索问题 - 本地索引的最大数量
我正在运行 1.10-beta 并有一个分布式索引设置。有 4 个基本块和 4 个 增量块使 dist 索引看起来像这样:
index dist_idx
{
type = distributed
local = b_0
local = b_1
local = b_2
local = b_3
local = d_0
local = d_1
local = d_2
local = d_3
}
每个块都是唯一 id (id MOD 4) 上的 mod。我的问题是只使用了前 7 个。 在我的测试用例中,我有以下数据:
b_0 = 4 8
b_1 = 5
b_2 = 2 6
b_3 = 3 7
d_1 = 1
如果我将 dist 索引更改为仅包含这 5 个并搜索 dist_idx 所有 8 条记录 回来,但是,如果我像我第一次描述的那样搜索它,只会返回 2-8 个结果。
有谁有什么想法吗!我真的不想合并我的三角洲,尽管它会 可能有效。
I'm running 1.10-beta and have a distributed index setup. There are 4 base chunks and 4
delta chunks making the dist index look like this:
index dist_idx
{
type = distributed
local = b_0
local = b_1
local = b_2
local = b_3
local = d_0
local = d_1
local = d_2
local = d_3
}
Each chunk is a mod on the unique id (id MOD 4). My problem is only the first 7 are used.
In my test case I have the following data:
b_0 = 4 8
b_1 = 5
b_2 = 2 6
b_3 = 3 7
d_1 = 1
If I change the dist index to only have those 5 and search against dist_idx all 8 records
come back, but, if I search against it as I first described it only 2-8 return.
Does anyone have any ideas! I don't want to combine my delta's really although it would
probably work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论