써먹는 웹개발
[elasticsearch] _id 기준으로 데이터 수정 본문
728x90
반응형
POST index명/type명/_id값
1
2
3
4
5
6
|
POST index명/type명/_id값
{
"doc": {
"컬럼명":"값"
}
}
|
cs |
예시 : ID가 SDKLJAFLKAS인 레코드의 SEQ를 1로 수정
1
2
3
4
5
6
|
POST test/_doc/SDKLJAFLKAS
{
"doc": {
"seq":"1"
}
}
|
cs |
728x90
반응형
'Study > Elasticsearch' 카테고리의 다른 글
[Elasticsearch] Java API - JPA 연동 조회 방법 (0) | 2021.11.07 |
---|---|
[Elasticsearch] Query DSL이란 (0) | 2021.11.07 |
[Elasticsearch] 자바에서 10000번째를 초과하는 인덱스를 조회하고 싶을때 쓰는 명령어 (0) | 2021.08.21 |
[Aws Elasticsearch] allocating the shard to this node will bring the node above the high watermark cluster setting... 내가 해결한 방법 (용량 최적화) (0) | 2021.07.08 |
[elasticsearch] status가 yellow에서 green으로 바꿀 수 있는 경우와 방법 (0) | 2021.07.07 |
Comments