数据模型es

Posted afublog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据模型es相关的知识,希望对你有一定的参考价值。

PUT product
{
"mappings": {
"properties": {
"skuId":{
"type":"long"
},
"spuId":{
"type":"keyword"
},
"skuTitle":{
"type":"text",
"analyzer": "ik_smart"
},
"skuPrice":{
"type":"keyword"
},
"skuImg":{
"type": "keyword",
"index": false,
"doc_values": false
},
"saleCount":{
"type":"boolean"
},
"hasStock":{
"type": "boolean"
},
"hotScore":{
"type": "long"
},
"brandId":{
"type":"long"
},
"catalogId":{
"type":"long"
},
"brandName":{
"type":"keyword",
"index": false,
"doc_values": false
},
"brandImg":{
"type":"keyword",
"index": false,
"doc_values": false
},
"catalogName":{
"type":"keyword",
"index": false,
"doc_values": false
},
"attrs":{
"type": "nested",
"properties": {
"attrId":{
"type":"long"
},
"attrName":{
"type":"keyword",
"index": false,
"doc_values": false
},
"attrValue":{
"type":"keyword"
}
}
}
}
}
}

以上是关于数据模型es的主要内容,如果未能解决你的问题,请参考以下文章

数据模型es

数据模型es

ElasticSearch数据副本模型

ELK跳不过的ES,图解助你掌握内部模型及数据结构

OpenGL ES 学习教程 使用开源库 Assimp 将 Obj 模型 转换成自己的格式

商城项目20_sku在es中储存模型分析索引建立上架逻辑核心上架流程图