【ElasticSearch】インデックス(更新)
フィールドの追加
REST API
ドキュメント:https://www.elastic.co/guide/en/elasticsearch/reference/7.13/docs-reindex.html
空のインデックス myindex を準備します
PUT /myindex
{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 1
}
}
新しいフィールドを追加します
PUT /myindex/_mapping
{
"properties": {
"name": {
" ...
6月15日 19:34 投稿