您好,登錄后才能下訂單哦!
elasticsearch中的索引模板是怎樣的,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
索引模板是創建索引的一種方式。將數據寫入指定索引時,如果該索引不存在,則根據索引名稱能匹配相應索引模板話,會根據模板的配置建立索引。更多介紹請查看官網的Index templates
查看某個索引模板
curl --user ${USERNAME}:${PASSWORD} -XGET "${ES_URL}/_template/ftp_download_log?pretty"
查看所有索引模板
curl --user ${USERNAME}:${PASSWORD} -XGET "${ES_URL}/_template?pretty"
curl --user ${USERNAME}:${PASSWORD} -XPUT "${ES_URL}/_template/ftp_download_log" -H 'Content-Type: application/json' -d ' { "index_patterns": ["ftp_download_log_*"], "settings": { "index": { "number_of_shards": 12, "number_of_replicas": 0, "refresh_interval" : "30s" } }, "mappings": { "properties": { "@timestamp": { "type": "date" }, "ftpServerName": { "type": "keyword" }, "localPath": { "type": "keyword" }, "logType": { "type": "keyword" }, "remotePath": { "type": "keyword" }, "srcFileSize": { "type": "long" }, "srcFileTimestamp": { "type": "date" }, "elapsedTime": { "type": "long" }, "endTime": { "type": "date" }, "startTime": { "type": "date" } } } }'
curl --user ${USERNAME}:${PASSWORD} -XDELETE "${ES_URL}/_template/ftp_download_log"
curl --user ${USERNAME}:${PASSWORD} -XPUT "${ES_URL}/_template/ftp_download_log" -H 'Content-Type: application/json' -d ' { "index_patterns": ["ftp_download_log_*"], "settings": { "index": { "number_of_shards": 12, "number_of_replicas": 0, "refresh_interval" : "30s" } }, "mappings": { "properties": { "@timestamp": { "type": "date" }, "fileDataTimeMillis": { "type": "date" }, "ftpServerName": { "type": "keyword" } } } }'
注意:文章中涉及命令是基于elasticsearch 7.1.1版本,與最新版本有較大不同。
關于elasticsearch中的索引模板是怎樣的問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。