es手动创建索引,修改索引,删除索引

Posted 秦先生的客栈

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es手动创建索引,修改索引,删除索引相关的知识,希望对你有一定的参考价值。

1、创建索引

创建索引的语法
PUT /my_index
{
  "settings": { ... any settings ... },
  "mappings": {
    "type_one": { ... any mappings ... },
    "type_two": { ... any mappings ... },
    ...
  }
}

创建索引的示例
PUT /my_index
{
  "settings": {
    "number_of_shards": 1,
    "number_of_replicas": 0
  },
  "mappings": {
    "my_type": {
      "properties": {
        "my_field": {
          "type": "text"
        }
      }
    }
  }
}

2、修改索引
PUT /my_index/_settings
{
  "number_of_replicas": 1
}

3、删除索引
DELETE /my_index
DELETE /index_one,index_two
DELETE /index_*
DELETE /_all

可以设置下面的属性,使DELETE /_all 失效,必须指定索引名称,才可以删除。
elasticsearch.yml
action.destructive_requires_name: true

以上是关于es手动创建索引,修改索引,删除索引的主要内容,如果未能解决你的问题,请参考以下文章

ELK专栏之ES索引-04

es修改索引时间格式

es修改索引字段类型

kibana怎么修改es的索引配置

ES 16 - 对Elasticsearch中的索引数据进行增删改查(CRUD)

ES-索引管理