我在Elasticsearch中有产品表和类别表数据。使用此字段的产品表具有category_id,当产品详细信息搜索(例如联接查询)时,我需要获取产品的特定类别详细信息。
我如何在ElasticSearch最新版本6.3中实现它。我查看了ElasticSearch文档,但对我来说不清楚。
产品映射
"mappings" : {
"products" : {
"properties" : {
"product_name" : { "type" : "string" }
"product_category" : { "type" : "integer" }
}
}
}
类别映射
"mappings" : {
"categories" : {
"properties" : {
"category_name" : { "type" : "string" }
}
}
}