商品检索

ElasticSearch实现商品检索

商品检索

检索入口

首页的分类
搜索栏

复杂条件检索

复杂条件筛选

检索业务需要考虑的问题

商品基本的数据模型

product:{

        商品的基本信息,(需要检索的名字,关键字,分类等)

        商品的属性信息,(属性名+属性值+是否可以筛选,这些属性需要在平台进行筛选)

}
需要分词检索的字段 商品的名称(SKU销售属性参与),(副标题,关键字(加分项))
需要过滤的字段 分类id,属性k&v组合 不分词
需要显示的字段 商品标题(高亮),商品
需要聚合的字段 品牌,分类,属性和值
需要排序的字段 综合、销量、属性和值
这些信息从哪里来?

满足查询提交"小米"的所有商品的分布

他们都涉及哪些品牌,涉及哪些分类,涉及哪些商品的可筛选属性参数,涉及哪些.....

这些都是动态的,每一步不一样的都需要重新计算

商品的ES对象模型

EsProduct
@Data
public class EsProduct implements Serializable {
    private static final long serialVersionUID = -1L;
    private Long id;  //spuId
    private String productSn;  //spuId-skuId
    private Long brandId;
    private String brandName;

    private Long productCategoryId;
    private String productCategoryName;
    private String pic;
    private String name;//这是需要检索的字段 分词
    private String subTitle;//也可以检索,这是一个加分字段
    private String keywords;// 也可以检索,这是一个加分字段
    private BigDecimal price;//sku-price;
    private Integer sale;//sku-sale
    private Integer newStatus;//
    private Integer recommandStatus;//
    private Integer stock;//sku-stock
    private Integer promotionType;//促销类型
    private Integer sort;//排序
private Integer commentCount;//评论数量共享spu
    private List<EsProductAttributeValue> attrValueList;//商品的筛选属性(SPU的属性; 
 网络制式:3G 4G 5G,
操作系统:Android IO)

EsProductAttributeValue
@Data
public class EsProductAttributeValue implements Serializable {
    private static final long serialVersionUID = 1L;
    private Long id;
    private Long productAttributeId;
    //属性值
    private String value;//3G
    //属性参数:0->规格;1->参数
    private Integer type;//规格,销售属性;参数,筛选参数
    //属性名称
    private String name;//网络制式

}

/**
 * 搜索相关商品品牌名称,分类名称及属性
 */
@Data
public class EsProductRelatedInfo {
    private List<String> brandNames;
    private List<String> productCategoryNames;
    private List<ProductAttr>   productAttrs;


    @Data
    public static class ProductAttr{
        private Long attrId;
        private String attrName;
        private List<String> attrValues;
    }
}


PUT /product
{
  "mappings": {
    "info": {
      "properties": {
        "attrValueList": {
          "type":"nested",
          "properties": {
            "id": {
              "type": "long"
            },
            "name": {
              "type": "keyword"
            },
            "productAttributeId": {
              "type": "long"
            },
            "productId": {
              "type": "long"
            },
            "type": {
              "type": "long"
            },
            "value": {
              "type": "text",
              "fields": {
                "keyword": {
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            }
          }
        },
        "brandId": {
          "type": "long"
        },
        "brandName": {
          "type": "text",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          }
        },
        "id": {
          "type": "long"
        },
        "keywords": {
          "type": "text",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          }
        },
        "name": {
          "type": "text",
          "analyzer": "ik_max_word",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          }
        },
        "newStatus": {
          "type": "long"
        },
        "pic": {
          "type": "text",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          }
        },
        "price": {
          "type": "float"
        },
        "productCategoryId": {
          "type": "long"
        },
        "productCategoryName": {
          "type": "text",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          }
        },
        "productSn": {
          "type": "text",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          }
        },
        "promotionType": {
          "type": "long"
        },
        "recommandStatus": {
          "type": "long"
        },
        "sale": {
          "type": "long"
        },
        "skuProductInfos": {
          "type":"nested",
          "properties": {
            "attributeValues": {
              "type":"nested",
              "properties": {
                "name": {
                  "type": "text",
                  "fields": {
                    "keyword": {
                      "type": "keyword",
                      "ignore_above": 256
                    }
                  }
                },
                "productAttributeId": {
                  "type": "long"
                },
                "productId": {
                  "type": "long"
                },
                "type": {
                  "type": "long"
                },
                "value": {
                  "type": "text",
                  "fields": {
                    "keyword": {
                      "type": "keyword",
                      "ignore_above": 256
                    }
                  }
                }
              }
            },
            "id": {
              "type": "long"
            },
            "lockStock": {
              "type": "long"
            },
            "lowStock": {
              "type": "long"
            },
            "pic": {
              "type": "keyword"
            },
            "price": {
              "type": "float"
            },
            "productId": {
              "type": "long"
            },
            "skuCode": {
              "type": "text",
              "fields": {
                "keyword": {
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "skuTitle": {
              "type": "text",
              "fields": {
                "keyword": {
                  "type": "keyword",
                  "ignore_above": 256
                }
              },
                  "analyzer": "ik_max_word"
            },
            "sp1": {
              "type": "text",
              "fields": {
                "keyword": {
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "sp2": {
              "type": "text",
              "fields": {
                "keyword": {
                  "type": "keyword",
                  "ignore_above": 256
                }
              }
            },
            "stock": {
              "type": "long"
            }
          }
        },
        "sort": {
          "type": "long"
        },
        "stock": {
          "type": "long"
        },
        "subTitle": {
          "type": "text",
          "fields": {
            "keyword": {
              "type": "keyword",
              "ignore_above": 256
            }
          },
            "analyzer": "ik_max_word"
        }
      }
    }
  }
}

复杂检索DSL需要考虑的问题

GET product/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "nested": {
            "path": "skuProductInfos",
            "query": {
              "match": {
                "skuProductInfos.skuTitle": "手机"
              }
            }
          }
        }
      ],
      "filter": [
        {
          "nested": {
            "path": "attrValueList",
            "query": {
              "bool": {
                "must": [
                  {
                    "match": {
                      "attrValueList.name": "屏幕尺寸"
                    }
                  },
                  {
                    "match": {
                      "attrValueList.value.keyword": "4.7"
                    }
                  }
                ]
              }
            }
          }
        },
        {
          "nested": {
            "path": "attrValueList",
            "query": {
              "bool": {
                "must": [
                  {
                    "match": {
                      "attrValueList.name": "网络"
                    }
                  },
                  {
                    "match": {
                      "attrValueList.value.keyword": "4G"
                    }
                  }
                ]
              }
            }
          }
        },
        {
          "term": {
            "brandName.keyword": "苹果"
          }
        },
        {
          "term": {
            "productCategoryId": "19"
          }
        },
        {
          "range": {
            "price": {
              "gte": 5000,
              "lte": 10000
            }
          }
        }
      ]
    }
  },
  "aggs": {
    "brand_agg": {
      "terms": {
        "field": "brandName.keyword"
      },
      "aggs": {
        "brandId": {
          "terms": {
            "field": "brandId",
            "size": 10
          }
        }
      }
    },
    "category_agg": {
      "terms": {
        "field": "productCategoryName.keyword",
        "size": 10
      }
    },
    "attr_agg": {
      "nested": {
        "path": "attrValueList"
      },
      "aggs": {
        "attrName_agg": {
          "terms": {
            "field": "attrValueList.name",
            "size": 10
          },
          "aggs": {
            "attrValue_agg": {
              "terms": {
                "field": "attrValueList.value.keyword",
                "size": 10
              }
            }
          }
        }
      }
    }
  },
  "highlight": {
    "pre_tags": "<b style='color:red'>",
    "post_tags": "</b>",
    "fields": {
      "skuProductInfos.skuTitle": {}
    }
  },
  "from": 0,
  "size": 12,
  "sort": [
    {
      "price": {
        "order": "asc"
      }
    },
    {
      "sort":{
        "order": "asc"
      }
    }
  ]
}

复杂检索参考代码

public void testSearch(){
    queryDsl(1L,3L,"小米",1);
}

public void queryDsl(Long brandId,Long productCategoryId,String keyword,int sort){
    SearchSourceBuilder builder = new SearchSourceBuilder();

    //1、分页
    builder.from(0).size(10);

    //2、搜索
    BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
    boolQuery.must(QueryBuilders.matchQuery("name",keyword))
            .should(QueryBuilders.matchQuery("subTitle",keyword))
            .should(QueryBuilders.matchQuery("keywords",keyword));

    if (StringUtils.isEmpty(keyword)) {
        builder.query(QueryBuilders.matchAllQuery());
    } else {
        builder.query(boolQuery);
    }

    //3、过滤
    if (brandId != null || productCategoryId != null) {
        if (brandId != null) {
            boolQuery.filter(QueryBuilders.termQuery("brandId",brandId));
        }
        if (productCategoryId != null) {
            boolQuery.filter(QueryBuilders.termQuery("productCategoryId",productCategoryId));
        }
        builder.query(boolQuery);
    }
    //排序
    if(sort==1){
        //按新品从新到旧
        builder.sort(SortBuilders.fieldSort("id").order(SortOrder.DESC));
    }else if(sort==2){
        //按销量从高到低
        builder.sort(SortBuilders.fieldSort("sale").order(SortOrder.DESC));
    }else if(sort==3){
        //按价格从低到高
        builder.sort(SortBuilders.fieldSort("price").order(SortOrder.DESC));
    }else if(sort==4){
        //按价格从高到低
        builder.sort(SortBuilders.fieldSort("price").order(SortOrder.ASC));
    }else{
        //按相关度
        builder.sort(SortBuilders.scoreSort().order(SortOrder.DESC));
    }


    //4、聚合
    //聚合所有品牌
    builder.aggregation(AggregationBuilders.terms("brandNames").field("brandName"));
    //聚合所有分类
    builder.aggregation(AggregationBuilders.terms("productCategoryNames").field("productCategoryName"));
    //聚合所有属性值

    NestedAggregationBuilder nestedAggregationBuilder = AggregationBuilders.nested("allAttrValues", "attrValueList")
            .subAggregation(AggregationBuilders.filter("productAttrs", QueryBuilders.termQuery("attrValueList.type", "1")))
            .subAggregation(AggregationBuilders.terms("attrIds")
                    .field("attrValueList.productAttributeId")
                    .subAggregation(AggregationBuilders.terms("attrValues").field("attrValueList.value")
                            .subAggregation(AggregationBuilders.terms("attrNames").field("attrValueList.name"))));

    builder.aggregation(nestedAggregationBuilder);

    String toString = builder.toString();
    System.out.println("DSL:"+toString);
}

入参封装

 String  keyword;

    String catalog3Id;

    String[] attrValues;

    int pageNo=1;

    int pageSize=20;

返回结果封装

 List<SkuInfo> skuInfoList;

    long total;

    long totalPages;

    List<String> attrValueList;

ES高级

嵌套桶

为了检索嵌套对象,我们在指定mapping的时候应该变为type=nested

"attrValueList": {
            "type": "nested", 
            "properties": {
              "id": {
                "type": "long"
              },
              "name": {
                "type": "keyword"
              },
              "productAttributeId": {
                "type": "long"
              },
              "type": {
                "type": "long"
              },
              "value": {
                "type": "keyword"
              }
            }
          },

ES中文文档

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,482评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,377评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,762评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,273评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,289评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,046评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,351评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,988评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,476评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,948评论 2 324
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,064评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,712评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,261评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,264评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,486评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,511评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,802评论 2 345

推荐阅读更多精彩内容