我正在使用Firebase Flashlight查询我的Firebase数据库,但我无法对结果进行排序。
我正在使用这个查询:
this.elasticConfig = {
type: 'guest',
body: {
from: 0,
size: 20,
query: {
bool: {
must: [
{
match: {
isApproved: false
}
},
{
match: {
isCheckedIn: false
}
},
{
match: {
eventId: event.id
}
}
]
}
},
sort: [
{
name: {
order: 'asc'
}
}
]
}
};
但是我从弹性搜索中收到此错误:
Fielddata is disabled on text fields by default. Set fielddata=true on [name] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory.
我觉得奇怪的是,一个简单的字母排序操作会要求你使用"重要内存"。
我的查询中是否遗漏了某些内容?或者我还能做些什么来让它工作吗?
如果这是 ES 5 并且字段已由 Elasticsearch 自动映射,请尝试对name.keyword
进行排序。否则,您需要将name
字段键入keyword
或向其添加keyword
子字段以搜索name.keyword
,当然,子字段的类型为 keyword
。