当前位置:   article > 正文

16、分布式文档系统--document的_source元数据以及定制返回结果解析(来自学习资料+自己整理)_kibana的docment和_source格式不一致

kibana的docment和_source格式不一致

1、_source元数据

准备一条数据

put /test_index/test_type/1
{
  "test_field1": "test field1",
  "test_field2": "test field2"
}
  • 1
  • 2
  • 3
  • 4
  • 5

然后获取数据

get /test_index/test_type/1
  • 1

显示的结果是:

{
  "_index": "test_index",
  "_type": "test_type",
  "_id": "1",
  "_version": 2,
  "found": true,
  "_source": {
    "test_field1": "test field1",
    "test_field2": "test field2"
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

知识点:
_source元数据:就是说,我们在创建一个document的时候,使用的是那个放在request body的json串。默认情况下,在get的时候,会原封不动的返回回来。

为了能够定制返回的结果,可以使用下面的方式:

2、定制返回结果

定制返回的结果,是通过指定_source,然后写上返回哪些field来实现。
命令:

GET /test_index/test_type/1?_source=test_field1
  • 1

返回内容是:

{
  "_index": "test_index",
  "_type": "test_type",
  "_id": "1",
  "_version": 2,
  "found": true,
  "_source": {
    "test_field1": "test field1"
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

如果想指定多列,命令如下:

GET /test_index/test_type/1?_source=test_field1,test_field2
  • 1

结果如下:

{
  "_index": "test_index",
  "_type": "test_type",
  "_id": "1",
  "_version": 2,
  "found": true,
  "_source": {
    "test_field1": "test field1",
    "test_field2": "test field2"
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

也就是说,可以通过逗号,然后加上列名即可

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/68283?site
推荐阅读
相关标签
  

闽ICP备14008679号