Elasticsearch索引模板

这篇具有很好参考价值的文章主要介绍了Elasticsearch索引模板。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

目录

1、索引模板是什么

2、索引模板的操作

2.1、定制索引结构

2.2、查询索引模板

2.3、创建索引

2.4、删除索引模板

2.5、es内置的索引模板

3、模板组件

3.1、创建组件模板

3.2、查看组件模板

3.3、使用组件模板

3.4、删除组件模板


1、索引模板是什么

        当需要为同一类索引应用相同的配置、映射、别名时,如果每次创建索引都逐一配置会比较麻烦。索引模板的出现正是为了简化这种操作,使用索引模板你可以方便地为某一类索引自动配置某些共同的参数。

2、索引模板的操作

2.1、定制索引结构

        如果你想在es中创建两个索引order1和order2,这两个索引分别记录了不同业务类型的订单信息,他们的映射结构、分片数、别名都相同。为了达成这个目的,可以创建一个索引模板order-template。

PUT _index_template/order-template
{
  "index_patterns": [
    "order*"
  ],
  "template": {
    "settings": {
      "number_of_shards": 3,
      "number_of_replicas": 1
    },
    "mappings": {
      "properties": {
        "order_id": {
          "type": "keyword"
        },
        "order_name": {
          "type": "text",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          }
        },
        "create_time": {
          "type": "date",
          "format": ["yyyy-MM-dd","yyyy-MM-dd HH:mm:ss"]
        }
      }
    },
    "aliases": {
      "order": {}
    }
  },
  "version": 3,
  "priority": 100,
  "_meta":{
    "description":"this is order-template"
  }
}

        在上面的配置中,index_patterns用于设置索引模板可以匹配的索引名称,这里使用*号通配符,表示所有以order开头的索引都会使用上面的模板。这个模板还配置了索引的分片数为3、副本分片数为1、字段映射和别名。priority用来设置模板的优先级,其值越大优先级越高。version表示版本号,_meta可以保存一些元数据。当模板order-template已经存在时,再次编辑模板配置并发送上述请求可以修改模板的内容。

2.2、查询索引模板

        如果想查询索引模板信息,可以使用下面的代码

GET _index_template/order-template

2.3、创建索引

        索引模板创建之后,当我们创建索引时,如果索引名称被索引模板匹配到,就会自动加载索引模板的配置到索引映射中。

        创建一个索引,索引名为order001

PUT order001

        创建成功后,查看索引的配置信息

GET order001

        查询成功后,可以在代码运行结果中看到模板中的配置已经在索引order001中得到应用,运行结果如下

{
  "order001" : {
    "aliases" : {
      "order" : { }
    },
    "mappings" : {
      "properties" : {
        "create_time" : {
          "type" : "date",
          "format" : "[yyyy-MM-dd, yyyy-MM-dd HH:mm:ss]"
        },
        "order_id" : {
          "type" : "keyword"
        },
        "order_name" : {
          "type" : "text",
          "fields" : {
            "keyword" : {
              "type" : "keyword",
              "ignore_above" : 256
            }
          }
        }
      }
    },
    "settings" : {
      "index" : {
        "creation_date" : "1698127116029",
        "number_of_shards" : "3",
        "number_of_replicas" : "1",
        "uuid" : "gZG1JzzrTtGC4OrvPwujuA",
        "version" : {
          "created" : "7090199"
        },
        "provided_name" : "order001"
      }
    }
  }
}

        如果你想在创建索引时自定义一些配置,可以在创建索引映射时指定,这样就可以覆盖掉索引模板的配置。创建一个索引,名称为order002,自定义分片数为5,副本分片数为2,新增一个字段amount,调整create_time字段的时间格式,代码如下

PUT order002
{
  "settings": {
    "number_of_shards": 5,
    "number_of_replicas": 2
  },
  "mappings": {
    "properties": {
      "amount":{
        "type": "float"
      },
      "create_time":{
        "type": "date",
        "format": ["yyyy/MM/dd HH/mm/ss"]
      }
    }
  }
}

        查看order002的索引映射结果

GET order002

      查询成功后,可以在代码运行结果中看到order002的索引映射中的配置确实成功覆盖了索引模板中的配置

{
  "order002" : {
    "aliases" : {
      "order" : { }
    },
    "mappings" : {
      "properties" : {
        "amount" : {
          "type" : "float"
        },
        "create_time" : {
          "type" : "date",
          "format" : "[yyyy/MM/dd HH/mm/ss]"
        },
        "order_id" : {
          "type" : "keyword"
        },
        "order_name" : {
          "type" : "text",
          "fields" : {
            "keyword" : {
              "type" : "keyword",
              "ignore_above" : 256
            }
          }
        }
      }
    },
    "settings" : {
      "index" : {
        "creation_date" : "1698127721114",
        "number_of_shards" : "5",
        "number_of_replicas" : "2",
        "uuid" : "K3NlLyaGTOW9c8W8ZcSO5g",
        "version" : {
          "created" : "7090199"
        },
        "provided_name" : "order002"
      }
    }
  }
}

2.4、删除索引模板

        删除索引模板,执行如下代码

DELETE _index_template/order-template

2.5、es内置的索引模板

        Elasticsearch内置了两个索引模板,索引模板名称分别为metrics和logs,分别用来匹配名称符合logs-*-*和metrics-*-*的索引。在创建索引和索引模板时要特别注意不要匹配错索引模板,以避免最后索引配置的效果达不到预期。

GET _index_template


{
  "index_templates" : [
    {
      "name" : "metrics",
      "index_template" : {
        "index_patterns" : [
          "metrics-*-*"
        ],
        "composed_of" : [
          "metrics-mappings",
          "metrics-settings"
        ],
        "priority" : 100,
        "version" : 0,
        "_meta" : {
          "managed" : true,
          "description" : "default metrics template installed by x-pack"
        },
        "data_stream" : { }
      }
    },
    {
      "name" : "logs",
      "index_template" : {
        "index_patterns" : [
          "logs-*-*"
        ],
        "composed_of" : [
          "logs-mappings",
          "logs-settings"
        ],
        "priority" : 100,
        "version" : 0,
        "_meta" : {
          "managed" : true,
          "description" : "default logs template installed by x-pack"
        },
        "data_stream" : { }
      }
    }
  ]
}

3、模板组件

       按照文章上面的操作我们已经可以快速地创建索引模板,并可以把配置自动应用到匹配的索引中了,但是这样做会使得索引模板的配置内容较多。为了简化索引模板中的配置内容,我们可以把常规的索引设置、映射等内容写成可复用的模板组件,然后在索引模板中引用这些组件,这样模板中的配置内容就会非常简洁,便于移植和管理。

3.1、创建组件模板

        创建组件模板component001和component002

PUT _component_template/component001
{
  "template":{
    "mappings":{
      "properties":{
        "date":{
          "type":"date",
          "format":["yyy-MM-dd HH:mm:ss"]
        }
      }
    }
  }
}

PUT _component_template/component002
{
  "template": {
    "settings": {
      "number_of_shards": "3",
      "number_of_replicas": "1"
    },
    "aliases": {
      "mycomp": {}
    }
  }
}

3.2、查看组件模板

        组件模板创建成功后,我们可以执行代码查看组件模板的端点信息

GET _component_template/component*

{
  "component_templates" : [
    {
      "name" : "component002",
      "component_template" : {
        "template" : {
          "settings" : {
            "index" : {
              "number_of_shards" : "3",
              "number_of_replicas" : "1"
            }
          },
          "aliases" : {
            "mycomp" : { }
          }
        }
      }
    },
    {
      "name" : "component001",
      "component_template" : {
        "template" : {
          "mappings" : {
            "properties" : {
              "date" : {
                "format" : [
                  "yyy-MM-dd HH:mm:ss"
                ],
                "type" : "date"
              }
            }
          }
        }
      }
    }
  ]
}

3.3、使用组件模板

        创建一个索引模板comp-test,把上面两个组件模板加载到索引模板中,索引模板就会匹配所有名称以comp开头的索引。

PUT _index_template/comp-test
{
  "index_patterns": ["comp*"],
  "priority": 100,
  "composed_of": ["component001", "component002"]
}

        创建索引comp001并查看索引,可以在结果中看到两个组件模板中的配置信息

PUT comp001
GET comp001


{
  "comp001" : {
    "aliases" : {
      "mycomp" : { }
    },
    "mappings" : {
      "properties" : {
        "date" : {
          "type" : "date",
          "format" : "[yyy-MM-dd HH:mm:ss]"
        }
      }
    },
    "settings" : {
      "index" : {
        "creation_date" : "1698129925357",
        "number_of_shards" : "3",
        "number_of_replicas" : "1",
        "uuid" : "2CT06CcGTBmHsUFIrmICkQ",
        "version" : {
          "created" : "7090199"
        },
        "provided_name" : "comp001"
      }
    }
  }
}

3.4、删除组件模板

        删除组件模板时,需要先删除相关的索引模板,否则会报错,删除顺序如下文章来源地址https://www.toymoban.com/news/detail-758818.html

DELETE _index_template/comp-test
DELETE _component_template/component001
DELETE _component_template/component002

到了这里,关于Elasticsearch索引模板的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Elasticsearch (ES) 搜索引擎: 数据类型、动态映射、多类型(子字段)

    原文链接:https://xiets.blog.csdn.net/article/details/132348634 版权声明:原创文章禁止转载 专栏目录:Elasticsearch 专栏(总目录) ES 映射字段的 数据类型 ,官网文档参考:Field data types。 下面是 ES 常用的一些基本数据类型。 字符串 类型: keyword :类型。 text :文本类型。

    2024年03月23日
    浏览(63)
  • ES搜索引擎入门+最佳实践(九):项目实战(二)--elasticsearch java api 进行数据增删改查

            本篇是这个系列的最后一篇了,在这之前可以先看看前面的内容: ES搜索引擎入门+最佳实践(一)_flame.liu的博客-CSDN博客 ES搜索引擎入门+最佳实践(二)_flame.liu的博客-CSDN博客 ES搜索引擎入门+最佳实践(三)_flame.liu的博客-CSDN博客 ES搜索引擎入门+最佳实践(四)_flame.liu的博客

    2024年02月12日
    浏览(55)
  • Java SpringBoot API 实现ES(Elasticsearch)搜索引擎的一系列操作(超详细)(模拟数据库操作)

    小编使用的是elasticsearch-7.3.2 基础说明: 启动:进入elasticsearch-7.3.2/bin目录,双击elasticsearch.bat进行启动,当出现一下界面说明,启动成功。也可以访问http://localhost:9200/ 启动ES管理:进入elasticsearch-head-master文件夹,然后进入cmd命令界面,输入npm run start 即可启动。访问http

    2024年02月04日
    浏览(54)
  • 使用Logstash同步mysql数据到Elasticsearch(亲自踩坑)_将mysql中的数据导入es搜索引擎利用logstash(1)

    先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7 深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前! 因此收集整理了一份《2024年最新大数据全套学习资料》,

    2024年04月28日
    浏览(49)
  • 深入了解Elasticsearch搜索引擎篇:倒排索引、架构设计与优化策略

    倒排索引是一种用于快速检索的数据结构,常用于搜索引擎和数据库中。与传统的正排索引不同,倒排索引是根据来建立索引,而不是根据文档ID。 倒排索引的建立过程如下:首先,将每个文档拆分成一系列的或词项,然后建立一个词项到文档的映射。对每个关

    2024年02月12日
    浏览(52)
  • Elasticsearch Dump的详细安装和迁移es索引和数据的使用教程

    如果希望将数据导出到本地文件而不是通过编程方式处理,可以考虑使用Elasticsearch的导出工具,如 Elasticsearch Dump (Elasticdump)或 Elasticsearch Exporter 。这些工具可以将Elasticsearch索引中的数据导出为可用于后续处理的文件格式,如JSON或CSV,本文主要介绍使用Elasticsearch Dump进行索

    2024年02月14日
    浏览(49)
  • ElasticSearch内容分享(四):ES搜索引擎

    目录 ES搜索引擎 1. DSL设置查询条件 1.1 DSL查询分类 1.2 全文检索查询 1.2.1 使用场景 1.2.2 match查询 1.2.3 mulit_match查询 1.3 精准查询 1.3.1 term查询 1.3.2 range查询 1.4 地理坐标查询 1.4.1 矩形范围查询 1.4.2 附近(圆形)查询 1.5 复合查询 1.5.0 复合查询归纳 1.5.1 相关性算分 1.5.2 算分函数查

    2024年02月05日
    浏览(49)
  • 搜索引擎elasticsearch :安装elasticsearch (包含安装组件kibana、IK分词器、部署es集群)

    kibana可以帮助我们方便地编写DSL语句,所以还要装kibana 因为我们还需要部署kibana容器,因此需要让es和kibana容器互联。这里先创建一个网络: 这里我们采用elasticsearch的7.12.1版本的镜像,这个镜像体积非常大,接近1G。不建议大家自己pull。 课前资料提供了镜像的tar包: 大家将

    2024年02月16日
    浏览(55)
  • Elasticsearch 索引模板、生命周期策略、节点角色(1),8年大数据开发开发教你如何写简历

    先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7 深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前! 因此收集整理了一份《2024年最新大数据全套学习资料》,

    2024年04月26日
    浏览(41)
  • 入门ElasticSearch :为什么选择ES作为搜索引擎?

    随着数据量的不断增长,搜索和分析大规模数据集变得越来越重要。传统数据库在面对这种需求时往往表现不佳,这时候就需要一种专门用于搜索和分析的引擎。ElasticSearch (简称ES)就是这样一款强大的搜索引擎,它具有许多优势,使得它成为许多企业和开发者的首选。 简

    2024年02月09日
    浏览(46)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包