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

溫馨提示×

溫馨提示×

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

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

ElasticSearch怎么添加索引

發布時間:2021-03-11 17:03:52 來源:億速云 閱讀:436 作者:TREX 欄目:編程語言

本篇內容主要講解“ElasticSearch怎么添加索引”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“ElasticSearch怎么添加索引”吧!

1. 編寫索引內容

  節點解釋:

  settings:配置信息

  "number_of_replicas": 0 不需要備份(單節點的ElasticSearch使用)

  "mappings": 映射內容

  "dynamic":false 是否動態索引,這里使用的是false,表示索引的固定的,不需要修改。

  "properties": 屬性結構內容

  "index":"true" 需要分詞處理的結構

  type對應的數據類型,text文本(長字符串),integer數字,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. 創建索引

  使用Postmen發送創建索引請求

ElasticSearch怎么添加索引

  (1)地址欄后半段是索引名稱

  (2)請求使用的PUT方式,選擇Body,raw形式,采用JSON格式發送

  創建成功的顯示結果:

{
  "acknowledged": true,
  "shards_acknowledged": true,
  "index": "house"
}

  在ElasticSearch-Head里查看結果:

3. 創建索引時的報錯:

  錯誤1:Root mapping definition has unsupported parameters

  原因:ElasticSearch7.X之后的版本默認不在支持指定索引類型,默認索引類型是_doc(隱含:include_type_name=false),所以在mappings節點后面,直接跟properties就可以了。

ElasticSearch怎么添加索引

  問題2:Could not convert [title.index] to boolean

  原因:也是新版本的問題,之前版本的index屬性寫法是"analyze",現在只能設置true, false, "true","false"

到此,相信大家對“ElasticSearch怎么添加索引”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

钟祥市| 南充市| 石城县| 石门县| 临潭县| 三门县| 灵山县| 无棣县| 沾化县| 峡江县| 浏阳市| 长治市| 宁强县| 诸暨市| 望都县| 双牌县| 历史| 广宁县| 丽水市| 景泰县| 云霄县| 中阳县| 郯城县| 屯昌县| 盘锦市| 图们市| 湘潭县| 上林县| 石城县| 东乡县| 分宜县| 辽阳县| 米泉市| 南华县| 吴川市| 南乐县| 阜平县| 油尖旺区| 安龙县| 南汇区| 芜湖县|