我试图通过基于字段值提升_score来摆脱elasticsearch中的排序。这是我的情景:
我的文档中有一个字段:applicationDate。这是自EPOC以来的时间。我希望记录有更大的applicationDate(最近的)得分更高。
如果两个文档的得分相同,我想在另一个String类型的字段上对它们进行排序。说"状态"是另一个可以有价值的字段(可用,正在进行,已关闭)。因此,具有相同applicationDate的文档应该具有基于状态的_score。 可用应该有更多分数,进行中更少,封闭,最少。因此,通过这种方式,我不必在获得结果后对文档进行排序。
请给我一些指示。
答案 0 :(得分:5)
您应该可以使用Function Score实现此目的。 根据您的要求,它可以简单如下 例如:
put test/test/1
{
"applicationDate" : "2015-12-02",
"status" : "available"
}
put test/test/2
{
"applicationDate" : "2015-12-02",
"status" : "progress"
}
put test/test/3
{
"applicationDate" : "2016-03-02",
"status" : "progress"
}
post test/_search
{
"query": {
"function_score": {
"functions": [
{
"field_value_factor" : {
"field" : "applicationDate",
"factor" : 0.001
}
},
{
"filter": {
"term": {
"status": "available"
}
},
"weight": 360
},
{
"filter": {
"term": {
"status": "progress"
}
},
"weight": 180
}
],
"boost_mode": "multiply",
"score_mode": "sum"
}
}
}
**Results:**
"hits": [
{
"_index": "test",
"_type": "test",
"_id": "3",
"_score": 1456877060,
"_source": {
"applicationDate": "2016-03-02",
"status": "progress"
}
},
{
"_index": "test",
"_type": "test",
"_id": "1",
"_score": 1449014780,
"_source": {
"applicationDate": "2015-12-02",
"status": "available"
}
},
{
"_index": "test",
"_type": "test",
"_id": "2",
"_score": 1449014660,
"_source": {
"applicationDate": "2015-12-02",
"status": "progress"
}
}
]
答案 1 :(得分:0)
你看过功能分数了吗? https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html
具体看一下上述文档中的衰减函数。
答案 2 :(得分:0)
有一个名为 rank_feature_field 的新字段可用于此用例:
https://www.elastic.co/guide/en/elasticsearch/reference/current/rank-feature.html