es 返回定制化的_source数据

Posted siye1989

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es 返回定制化的_source数据相关的知识,希望对你有一定的参考价值。

1、_source元数据

put /test_index/test_type/1

"test_field1": "test field1",
"test_field2": "test field2"

get /test_index/test_type/1


"_index": "test_index",
"_type": "test_type",
"_id": "1",
"_version": 2,
"found": true,
"_source":
"test_field1": "test field1",
"test_field2": "test field2"

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

------------------------------------------------------------------------------------------------------------------

2、定制返回结果

定制返回的结果,指定_source中,返回哪些field

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


"_index": "test_index",
"_type": "test_type",
"_id": "1",
"_version": 2,
"found": true,
"_source":
"test_field2": "test field2"

以上是关于es 返回定制化的_source数据的主要内容,如果未能解决你的问题,请参考以下文章

[SpringBoot2]定制化原理_SpringBoot定制化组件的几种方式

ES总结-Kibana定制化扩展

如何使用 mxGraph 绘制可定制化的流程图

SpringBoot2----定制化原理

浅析CSV----内有代码,,去掉定制化的内容,可直接使用

linux中内存泄漏的检测定制化的malloc/free