gpt4 book ai didi

elasticsearch - 源过滤不适用于 kibana

转载 作者:行者123 更新时间:2023-12-02 22:13:54 26 4
gpt4 key购买 nike

我试图用 source filtering. 排除一些字段

我创建了一个索引:

put testindex
{
"mappings": {
"type1": {
"properties":{
"name": { "type": "text" },
"age": { "type": "integer" }
}
}
}
}

插入文档:

put testindex/type1/a
{
"name":"toto",
"age":23
}

并尝试过滤查询:

get testindex/_search
{
"_source": {
"excludes": [ "age" ]
},
"query": {
"bool": {
"should": []
}
}
}

结果是:

"hits": [
{
"_index": "testindex",
"_type": "type1",
"_id": "a",
"_score": 1,
"_source": {
"name": "toto",
"age": 23
}
}
]

我不明白为什么它不隐藏 _source 中的“年龄”字段。_source: false 给出相同的结果。
我使用了 elasticsearch & kibana 5.6

最佳答案

好的,我找到了。这可能是由于 Kibana。当我对“get”使用小写字母时。它不起作用。

get testindex/_search
{
"_source": {
"excludes": [ "age" ]
},
"query": {
"bool": {
"should": []
}
}
}

当我使用大写时,它起作用了。我真的不知道为什么,但就是这样..

GET testindex/_search
{
"_source": {
"excludes": [ "name" ]
},
"query": {
"bool": {
"should": []
}
}
}

关于elasticsearch - 源过滤不适用于 kibana,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47578174/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com