티스토리 뷰
Elasticsearch 에서도 원하는 특정 필드만 조회 할 수 있다.
_source
필드를 이용하면 가능한데, Elastic-builder에서는 source()
인스턴스를 사용하면 된다.
Elastic-builder 공식문서 내용은 아래와 같다.
💡 source()
Allows to control how the_source
field is returned with every hit. You can turn off_source
retrieval by passing false. It also accepts one(string) or more wildcard(array) patterns to control what parts of the_source
should be returned An object can also be used to specify the wildcard patterns forincludes
andexcludes
.
source(source: (boolean | string | Array | Object)): RequestBodySearch
Parameters
source ((boolean | string | Array | Object))
Returns
RequestBodySearch: returns this so that calls can be chained
Example
// To disable `_source` retrieval set to `false`: const reqBody = esb.requestBodySearch() .query(esb.termQuery('user', 'kimchy')) .source(false);
// The `_source` also accepts one or more wildcard patterns to control what // parts of the `_source` should be returned: const reqBody = esb.requestBodySearch() .query(esb.termQuery('user', 'kimchy')) .source('obj.*'); // OR const reqBody = esb.requestBodySearch() .query(esb.termQuery('user', 'kimchy')) .source([ 'obj1.*', 'obj2.*' ]);
// The `_source` also accepts one or more wildcard patterns to control what // parts of the `_source` should be returned: const reqBody = esb.requestBodySearch() .query(esb.termQuery('user', 'kimchy')) .source('obj.*'); // OR const reqBody = esb.requestBodySearch() .query(esb.termQuery('user', 'kimchy')) .source([ 'obj1.*', 'obj2.*' ]);
includes
에는 조회하고 싶은 필드 이름을 넣어주고,
excludes
에는 제외하고 싶은 필드 이름을 넣어준다.
'Elasticsearch' 카테고리의 다른 글
[Elasticsearch] Elastic-builder - Must와 Should의 차이 (0) | 2023.02.27 |
---|
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- serverless
- github
- docker exec
- Hoisting
- git동기화
- 도커
- 디스코드
- 람다
- elasticsearch
- branch조회
- background.js
- elastic-builder
- aws cli
- docker-compose
- webhook
- 깃헙
- nodejs
- Lambda
- container접속
- AWS
- ChromeExtension
- contentScript.js
- should
- 웹훅
- 서버리스
- NestJS
- 크롬익스텐션
- JavaScript
- docker
- Error "server gave HTTP response to HTTPS client"