• 38.索引生命周期管理—查询当前的模板


    38.1 查询当前的模板

    # 查询所有模板
    GET /_template/
    
    #查询其中某一个模板
    GET /_template/logstash
    {
      "logstash" : {
        "order" : 0,
        "version" : 60001,
        "index_patterns" : [
        "logstash-*"
      ],
      "settings" : {
        "index" : {
          "lifecycle" : {
            "name" : "watch-history-ilm-policy"
          },
          "number_of_shards" : "1",
          "refresh_interval" : "5s"
        }
      },
      "mappings" : {
      "dynamic_templates" : [
      {
          "message_field" : {
            "path_match" : "message",
            "mapping" : {
              "norms" : false,
              "type" : "text"
            },
            "match_mapping_type" : "string"
          }
        },
        {
          "string_fields" : {
            "mapping" : {
              "norms" : false,
              "type" : "text",
              "fields" : {
                "keyword" : {
                  "ignore_above" : 256,
                  "type" : "keyword"
                }
              }
            },
            "match_mapping_type" : "string",
            "match" : "*"
          }
        }
      ],
      "properties" : {
        "@timestamp" : {
          "type" : "date"
        },
        "geoip" : {
          "dynamic" : true,
          "properties" : {
            "ip" : {
              "type" : "ip"
            },
            "latitude" : {
              "type" : "half_float"
            },
            "location" : {
              "type" : "geo_point"
            },
            "longitude" : {
              "type" : "half_float"
              }
            }
          },
        "@version" : {
          "type" : "keyword"
          }
        }
      },
        "aliases" : { }
      }
    }
    
    • 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
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 如果你不想以 logstash-* 开头创建索引,你可以先创建个模板参考如下:
    PUT /_template/my_template
    {
    "order" : 0,
    "index_patterns" : [
    "filebeat_cash-*",
    "filebeat_custom-*",
    "filebeat_portal-*",
    "filebeat_user-*",
    "filebeat_hkd-*",
    "filebeat_test_custom-*",
    "filebeat_test_portal-*",
    "filebeat_test_user-*",
    "filebeat_test_hkd-*",
    "filebeat_test_canal_topic-*"
    ],
    "settings" : {
    "index" : {
    "number_of_shards" : "1",
    "refresh_interval" : "5s"
    }
    },
    "mappings" : {
    "dynamic_templates" : [
    {
    "message_field" : {
    "path_match" : "message",
    "mapping" : {
    "norms" : false,
    "type" : "text"
    },
    "match_mapping_type" : "string"
    }
    },
    {
    "string_fields" : {
    "mapping" : {
    "norms" : false,
    "type" : "text",
    "fields" : {
    "keyword" : {
    "ignore_above" : 256,
    "type" : "keyword"
    }}
    },
    "match_mapping_type" : "string",
    "match" : "*"
    }}
    ],
    "properties" : {
    "@timestamp" : {
    "type" : "date"
    },
    "geoip" : {
    "dynamic" : true,
    "properties" : {
    "ip" : {
    "type" : "ip"
    },
    "latitude" : {
    "type" : "half_float"
    },
    "location" : {
    "type" : "geo_point"
    },
    "longitude" : {
    "type" : "half_float"
    }}
    },
    "@version" : {
    "type" : "keyword"
    }}
    },
    "aliases" : { }
    }
    
    • 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
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 以上的模板接管了 filebeat-* 开头的 index,然后将策略应用于这些 index

      [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-4FBy13zS-1656385174090)(https://upload-images.jianshu.io/upload_images/19745945-0a0d70bed3880315.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)]
    • 现在我们就可以在 index management 里查看索引当前的生命周期状态

    38.2 index生命周期管理设置

    • cluster级别设置
      • indices.lifecycle.history_index_enabled( Static , Boolean) 是否启用 ILM 的历史index
        • 默认为true.
      • indices.lifecycle.poll_interval(Dynamic, time unit value)index生命周期管理检查符合策略标准的index的频率
        • 默认为10m
    • index级别设置
      • 这些index级 ILM 设置通常通过index模板进行配置
        • index.lifecycle.indexing_complete( Dynamic , Boolean) 指示index是否已rollover
        • index.lifecycle.name( Dynamic , string) 用于管理index的策略名称
        • index.lifecycle.origination_date( Dynamic , long) 如果指定,这是用于计算其阶段转换的index age的时间戳
        • index.lifecycle.parse_origination_date( Dynamic , Boolean) 设置为true从index名称解析起始日期
    • index级别设置
      • index.lifecycle.step.wait_time_threshold(Dynamic, time value)在 ILM shrink操作期间等待cluster解决分配问题的时间
        • 必须大于1h(1 小时)
        • 默认为 12h(12 小时)
      • index.lifecycle.rollover_alias( Dynamic , string) index rollover时要更新的index别名
        • 指定何时使用包含rollover操作的策略
        • 当index rollover时,别名被更新以反映该index不再是写index

    大数据视频推荐:
    CSDN
    大数据语音推荐:
    ELK7 stack开发运维
    企业级大数据技术应用
    大数据机器学习案例之推荐系统
    自然语言处理
    大数据基础
    人工智能:深度学习入门到精通

  • 相关阅读:
    ES6中对象的扩展
    在el-dialog中使用tinymce 点击工具栏下拉框被遮挡
    如何理解Quadratic Weighted Kappa?
    springboot大学生社团管理系统的设计与实现毕业设计源码150912
    ZYNQ中断例程
    读书记:认知觉醒(一)大脑、焦虑、耐心
    六自由度机械臂雅可比矩阵计算
    IDEA常用快捷键以及调试
    【Android】ViewRootImpl、WindowManagerGlobal和WindowManager之间的关系
    [windows10]win10永久禁用系统自动更新操作方法
  • 原文地址:https://blog.csdn.net/m0_47454596/article/details/125498368