es修改索引时间格式

Posted

tags:

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

参考技术A 1、先建一个正确的索引。
2、将旧索引数据同步到新索引上。
3、通过命令查看同步情况。
4、同步完成,将索引删除。

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修改索引时间格式的主要内容,如果未能解决你的问题,请参考以下文章

kibana怎么修改es的索引配置

es创建索引的格式,并初始化数据

如何修改 Pandas 中的日期时间索引格式(UTC)?

es的mapping信息会存储成文件吗

将顶点数组和面索引加载到OpenGL-ES中的最快方法?

ES 索引模板和动态模板