티스토리 뷰
Elastic
[Elastic 7.8] JAVA로 RestHighLevelClient 를 사용하여 Elasticsearch Index에 document Insert (데이터 삽입) 하는 방법
신우섭 2020. 9. 10. 13:57순서
- RestHighLevelClient 객체를 생성합니다.
- Request(요청) 객체를 생성합니다.
- Request.source(JSON String, Type) 을 호출하여 Request객체를 셋팅합니다.
- RestHighLevelClient.index(Request객체, RequestOptions) 를 통하여 데이터를 삽입하여 리턴 값으로 Response객체를 받습니다.
- Response객체를 통하여 Request의 결과를 확인합니다.
예시
// 1
RestHighLevelClient restHighLevelClient = new RestHighLevelClient();
String jsonUserInformation = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(userEntity);
// 2~3
IndexRequest request = new IndexRequest("users")
.source(jsonUserInformation, XContentType.JSON)
.setRefreshPolicy("wait_for");
// 4
IndexResponse response = restHighLevelClient.index(request, RequestOptions.DEFAULT);
'Elastic' 카테고리의 다른 글
elasticsearch index가 읽기전용이 되었을 때 (0) | 2021.10.12 |
---|---|
Elasticsearch too_many_buckets_exception 문제 (0) | 2021.08.23 |
[Elasticsearch7.8.0] Script를 통한 특정 Field의 document에 데이터Append (0) | 2020.07.31 |
[Elasticsearch / Kibana] 윈도우10에 Kibana 설치 및 실행 방법 (0) | 2020.07.13 |
[Elasticsearch / CRUD] 관계형 데이터베이스(RDB) 와 엘라스틱 서치 CRUD의 관계 (0) | 2020.07.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- c++11
- C
- rotator
- Lambda
- 람다함수
- UE5
- double free
- bug
- coordinate system
- unrealengine
- 람다
- Trouble shooting
- UE4
- LambdaFunction
- c++
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함