티스토리 뷰
Programming/ElasticSearch
Elasticsearch) Painless script를 이용해서 값을 변경하기
Mr. Curious 2017. 10. 19. 20:38https://www.elastic.co/guide/en/elasticsearch/painless/5.6/painless-examples.html
curl -XPUT 'http://35.200.56.48:9200/online-shop'
curl -XPUT 'http://35.200.56.48:9200/online-shop/_mapping/shirts' -d '{
"shirts": {
"properties": {
"caption": {
"type": "string"
},
"price": {
"type": "long"
}
}
}
}'
curl -XPUT 'http://35.200.56.48:9200/online-shop/shirts/1' -d '{
"caption": "Learning ES",
"price": 15
}'
curl -XPOST 'http://35.200.56.48:9200/online-shop/shirts/1/_update' -d '{
"script": {
"lang": "painless",
"source": "ctx._source.price += params.price_diff",
"params": {
"price_diff": 10
}
}
}'
'Programming > ElasticSearch' 카테고리의 다른 글
인덱스 안의 모든 타입의 xxx field의 fielddata를 true로 세팅 (402) | 2017.10.27 |
---|---|
no [query] registered for [filtered] 오류가 나며 filtered query가 에러나는 경우 (0) | 2017.10.25 |
X-Pack 인증 Bypass하기 (0) | 2017.10.11 |
은전한닢 설치하기 (599) | 2017.10.11 |
Elasticsearch 실행시 vm.max_map_count [65530] is too low 오류 수정 방법 (1) | 2017.10.11 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- PIP
- Netty
- docker
- IntelliJ
- scrapy
- spring #lombok
- X-Pack
- Elasticsearch
- TDD
- AWS
- Redis
- PubSub
- MacOS
- zsh
- Paw
- MongoDB
- Ansible
- boot2docker
- pycharm
- Spring Boot
- xpath
- pymongo
- kubernetes
- mecab
- 은전한닢
- git
- docker-machine
- ansible-container
- GCP
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함