本篇內容主要講解“ElasticSearch怎么添加索引”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“ElasticSearch怎么添加索引”吧!
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設,遂川企業(yè)網(wǎng)站建設,遂川品牌網(wǎng)站建設,網(wǎng)站定制,遂川網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,遂川網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。1. 編寫索引內容
節(jié)點解釋:
settings:配置信息
"number_of_replicas": 0 不需要備份(單節(jié)點的ElasticSearch使用)
"mappings": 映射內容
"dynamic":false 是否動態(tài)索引,這里使用的是false,表示索引的固定的,不需要修改。
"properties": 屬性結構內容
"index":"true" 需要分詞處理的結構
type對應的數(shù)據(jù)類型,text文本(長字符串),integer數(shù)字,date時間,keyword單詞
elasticsearch 6.X版本的索引文件
{ "settings":{ "number_of_replicas": 0 }, "mappings":{ "house":{ "dynamic":false, "properties":{ "houseId":{"type":"long"}, "title":{"type":"text", "index":"true"}, "price":{"type":"integer"}, "area":{"type":"integer"}, "createTime":{"type":"date","format":"strict_date_optional_time||epoch_millis"}, "lastUpdateTime":{"type":"date", "format":"strict_date_optional_time||epoch_millis"}, "cityEnName":{"type":"keyword"}, "regionEnName":{"type":"keyword"}, "direction":{"type":"integer"}, "distanceToSubway":{"type":"integer"}, "subwayLineName":{"type":"keyword"}, "subwayStationName":{"type":"keyword"}, "tags":{"type":"text"}, "district":{"type":"keyword"}, "description":{"type":"text", "index":"true"}, "layoutDesc":{"type":"text", "index":"true"}, "traffic":{"type":"text", "index":"true"}, "roundService": {"type": "text", "index": "true"}, "rentWay":{"type":"integer"} } } } }
elasticsearch 7.X版本的索引文件
{ "settings":{ "number_of_replicas": 0 }, "mappings":{ "dynamic":false, "properties":{ "title":{"type":"text", "index":"true"}, "price":{"type":"integer"}, "area":{"type":"integer"}, "createTime":{"type":"date","format":"strict_date_optional_time||epoch_millis"}, "lastUpdateTime":{"type":"date", "format":"strict_date_optional_time||epoch_millis"}, "cityEnName":{"type":"keyword"}, "regionEnName":{"type":"keyword"}, "direction":{"type":"integer"}, "distanceToSubway":{"type":"integer"}, "subwayLineName":{"type":"keyword"}, "subwayStationName":{"type":"keyword"}, "tags":{"type":"text"}, "district":{"type":"keyword"}, "description":{"type":"text", "index":"true"}, "layoutDesc":{"type":"text", "index":"true"}, "traffic":{"type":"text", "index":"true"}, "roundService": {"type": "text", "index": "true"}, "rentWay":{"type":"integer"} } } }
2. 創(chuàng)建索引
使用Postmen發(fā)送創(chuàng)建索引請求
(1)地址欄后半段是索引名稱
(2)請求使用的PUT方式,選擇Body,raw形式,采用JSON格式發(fā)送
創(chuàng)建成功的顯示結果:
{ "acknowledged": true, "shards_acknowledged": true, "index": "house" }
在ElasticSearch-Head里查看結果:
3. 創(chuàng)建索引時的報錯:
錯誤1:Root mapping definition has unsupported parameters
原因:ElasticSearch7.X之后的版本默認不在支持指定索引類型,默認索引類型是_doc(隱含:include_type_name=false),所以在mappings節(jié)點后面,直接跟properties就可以了。
問題2:Could not convert [title.index] to boolean
原因:也是新版本的問題,之前版本的index屬性寫法是"analyze",現(xiàn)在只能設置true, false, "true","false"
到此,相信大家對“ElasticSearch怎么添加索引”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)建站網(wǎng)站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。