ElasticSearch连接查询最新版本为6.3的两个或多个表

时间:2018-07-19 15:28:10

标签: elasticsearch elasticsearch-plugin

我在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" }
            }
        }
    }

0 个答案:

没有答案