elasticsearch中的索引模板是怎樣的,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。

站在用戶的角度思考問題,與客戶深入溝通,找到常熟網(wǎng)站設(shè)計(jì)與常熟網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都做網(wǎng)站、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、申請(qǐng)域名、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋常熟地區(qū)。
索引模板是創(chuàng)建索引的一種方式。將數(shù)據(jù)寫入指定索引時(shí),如果該索引不存在,則根據(jù)索引名稱能匹配相應(yīng)索引模板話,會(huì)根據(jù)模板的配置建立索引。更多介紹請(qǐng)查看官網(wǎng)的Index templates
查看某個(gè)索引模板
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版本,與最新版本有較大不同。
關(guān)于elasticsearch中的索引模板是怎樣的問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
網(wǎng)頁題目:elasticsearch中的索引模板是怎樣的
分享URL:http://chinadenli.net/article42/gdsjec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、關(guān)鍵詞優(yōu)化、服務(wù)器托管、、網(wǎng)站維護(hù)、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)