91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Elasticsearch索引模板index templates怎么創建

發布時間:2021-12-16 10:30:40 來源:億速云 閱讀:218 作者:iii 欄目:云計算

這篇文章主要講解了“Elasticsearch索引模板index templates怎么創建”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Elasticsearch索引模板index templates怎么創建”吧!

一、

索引模板,定義模板,當新索引創建時,自動匹配,并應用定義的模板

新增索引模板(index templates)

我們新建一個索引模板template_1 設置它的主分片為1個。類型有type1且_source disabled

PUT /_template/template_1
{
  "template": "t-*",
  "settings": {
    "number_of_shards":1
  },
  "mappings": {
    "type1":{
      "_source":{
        "enabled":false
      }
    }
  }
}

POST /t-1

GET /t-1/_mapping
{
   "t-1": {
      "mappings": {
         "type1": {
            "_source": {
               "enabled": false
            },
            "properties": {}
         }
      }
   }
}

例子:我們想再創建某個索引時,還為其創建alias

PUT /_template/template_2
{
  "template": "s-*",
  "settings": {
    "number_of_shards":1
  },
  "aliases":{
    "alias1":{
      
    },
    "{index}-alias":{
      
    }
  }
}

POST /s-1

GET /s-1

當創建多個索引模板時,且創建某個索引,被多個索引模板匹配,那么settings和mappings將會合并到一個配置中,并應用這個索引上,合并的順序由索引模板的order屬性來控制。order大的會覆蓋之前的配置

PUT /_template/template_1
{
    "template":"*",
    "order":0,
    "settings":{
        "number_of_shards":1
    },
    "mappings":{
        "type1":{
            "_source":{
                "enabled":false
            }
        }
    }
}

PUT /_template/template_2
{
    "template":"tt-*",
    "order":1,
    "settings":{
        "number_of_shards":1
    },
    "mappings":{
        "type1":{
            "_source":{
                "enabled":true
            }
        }
    }
}

POST /tt-1            => 會被上述兩個模板都匹配,對于_source屬性 order=1的會覆蓋order=0 即 enabled:true

文件配置:我們可以再 config/templates目錄下添加json的配置文件

感謝各位的閱讀,以上就是“Elasticsearch索引模板index templates怎么創建”的內容了,經過本文的學習后,相信大家對Elasticsearch索引模板index templates怎么創建這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金沙县| 威信县| 武隆县| 新平| 荣昌县| 和林格尔县| 大方县| 普洱| 赤城县| 昭平县| 沙雅县| 丰镇市| 本溪市| 五台县| 读书| 天水市| 霍州市| 遵义县| 措勤县| 东阿县| 德阳市| 报价| 丹江口市| 葵青区| 晋城| 南投县| 宁武县| 正镶白旗| 都昌县| 汶川县| 珠海市| 高台县| 旬邑县| 宜昌市| 南京市| 梁平县| 庐江县| 巴马| 东乌| 南投县| 东至县|