8cff1628
tangwang
tenant2 1w测试数据 mo...
|
1
|
|
577ec972
tangwang
返回给前端的字段、格式适配。主要包...
|
2
|
|
5ac64fc7
tangwang
多语言查询
|
3
4
5
6
7
|
# ======================================
# 租户相关
# ======================================
### 1. 根据 tenant_id / spu_id 查询
|
472cca0c
tangwang
doc
|
8
|
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
472cca0c
tangwang
doc
|
9
|
"size": 11,
|
80f87e57
tangwang
多语言索引修改 对应的 索引创建、...
|
10
|
"_source": ["title"],
|
472cca0c
tangwang
doc
|
11
12
13
14
15
16
17
18
19
20
21
|
"query": {
"bool": {
"filter": [
{ "term": {"spu_id" : 206150} },
{ "term": { "tenant_id": "170" } }
]
}
}
}'
|
577ec972
tangwang
返回给前端的字段、格式适配。主要包...
|
22
|
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
|
70dab99f
tangwang
add logs
|
23
|
"size": 100,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
24
|
"_source": ["title"],
|
577ec972
tangwang
返回给前端的字段、格式适配。主要包...
|
25
26
27
|
"query": {
"bool": {
"filter": [
|
5ac64fc7
tangwang
多语言查询
|
28
|
{ "term": { "tenant_id": "170" } }
|
577ec972
tangwang
返回给前端的字段、格式适配。主要包...
|
29
30
31
|
]
}
}
|
c4263d93
tangwang
支持 sku_filter_dim...
|
32
33
|
}'
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
"size": 5,
"_source": ["title", "keyword", "keyword.zh", "tags"],
"query": {
"bool": {
"filter": [
{ "term": { "spu_id": "223167" } }
]
}
}
}'
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
"size": 1,
"_source": ["title", "keyword", "keyword.zh", "tags"],
"query": {
"bool": {
"must": [
{
"match": {
"title.en": {
"query": "Floerns Women Gothic Graphic Ribbed Strapless Tube Top Asymmetrical Ruched Bandeau Tops"
}
}
}
],
"filter": [
{ "term": { "tenant_id": "170" } },
{ "terms": { "tags": ["女装", "派对"] } }
]
}
}
}'
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
5ac64fc7
tangwang
多语言查询
|
72
|
"size": 1,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
73
|
"_source": ["title"],
|
5ac64fc7
tangwang
多语言查询
|
74
75
76
77
78
|
"query": {
"bool": {
"must": [
{
"match": {
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
79
80
|
"title.en": {
"query": "Floerns Women Gothic Graphic Ribbed Strapless Tube Top Asymmetrical Ruched Bandeau Tops"
|
5ac64fc7
tangwang
多语言查询
|
81
82
83
84
85
86
87
88
89
90
91
92
|
}
}
}
],
"filter": [
{ "term": { "tenant_id": "170" } }
]
}
}
}'
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_analyze' -H 'Content-Type: application/json' -d '{
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
93
|
"analyzer": "icu_analyzer",
|
5ac64fc7
tangwang
多语言查询
|
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
"text": "14寸第4代-眼珠实身冰雪公仔带手动大推车,搪胶雪宝宝"
}'
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_analyze' -H 'Content-Type: application/json' -d '{
"analyzer": "hanlp_standard",
"text": "14寸第4代-眼珠实身冰雪公仔带手动大推车,搪胶雪宝宝"
}'
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"size": 100,
"from": 0,
"query": {
"bool": {
"must": [
{
"multi_match": {
"_name": "base_query",
"fields": [
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
112
113
114
115
|
"title.zh^3.0",
"brief.zh^1.5",
"description.zh",
"vendor.zh^1.5",
|
5ac64fc7
tangwang
多语言查询
|
116
|
"tags",
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
117
118
|
"category_path.zh^1.5",
"category_name_text.zh^1.5",
|
5ac64fc7
tangwang
多语言查询
|
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
"option1_values^0.5"
],
"minimum_should_match": "75%",
"operator": "AND",
"query": "裙",
"tie_breaker": 0.9
}
}
],
"filter": [
{
"term": {
"tenant_id": "170"
}
}
]
}
}
}'
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"size": 1,
"from": 0,
"query": {
"bool": {
"must": [
{
"multi_match": {
"_name": "base_query",
"fields": [
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
149
150
151
152
|
"title.zh^3.0",
"brief.zh^1.5",
"description.zh",
"vendor.zh^1.5",
|
5ac64fc7
tangwang
多语言查询
|
153
|
"tags",
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
154
155
|
"category_path.zh^1.5",
"category_name_text.zh^1.5",
|
5ac64fc7
tangwang
多语言查询
|
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
"option1_values^0.5"
],
"minimum_should_match": "75%",
"operator": "AND",
"query": "裙",
"tie_breaker": 0.9
}
}
],
"filter": [
{
"term": {
"tenant_id": "170"
}
}
]
}
},
"aggs": {
"category1_name_facet": {
"terms": {
"field": "category1_name",
"size": 15,
"order": {
"_count": "desc"
}
}
},
"specifications_color_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filter_by_name": {
"filter": {
"term": {
"specifications.name": "color"
}
},
"aggs": {
"value_counts": {
"terms": {
"field": "specifications.value",
"size": 20,
"order": {
"_count": "desc"
}
}
}
}
}
}
},
"specifications_size_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filter_by_name": {
"filter": {
"term": {
"specifications.name": "size"
}
},
"aggs": {
"value_counts": {
"terms": {
"field": "specifications.value",
"size": 15,
"order": {
"_count": "desc"
}
}
}
}
}
}
},
"specifications_material_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filter_by_name": {
"filter": {
"term": {
"specifications.name": "material"
}
},
"aggs": {
"value_counts": {
"terms": {
"field": "specifications.value",
"size": 10,
"order": {
"_count": "desc"
}
}
}
}
}
}
}
}
}'
GET /search_products/_search
{
"query": {
"term": {
"tenant_id": "2"
}
}
}
|
c4263d93
tangwang
支持 sku_filter_dim...
|
270
271
272
273
274
275
276
277
278
279
280
281
282
283
|
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"size": 5,
"query": {
"bool": {
"filter": [
{ "term": { "spu_id": "74123" } }
]
}
}
}'
|
5ac64fc7
tangwang
多语言查询
|
284
285
286
287
|
### 2. 统计租户的总文档数
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_count?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
|
d6606d7a
tangwang
清理旧代码,具体如下:
|
288
|
"tenant_id": "170"
|
5ac64fc7
tangwang
多语言查询
|
289
290
291
292
293
|
}
}
}'
|
33839b37
tangwang
属性值参与搜索:
|
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
# ======================================
# 分面数据诊断相关查询
# ======================================
## 1. 检查ES文档的分面字段数据
### 1.1 查询特定租户的商品,显示分面相关字段
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 1,
"_source": [
"spu_id",
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
310
|
"title",
|
33839b37
tangwang
属性值参与搜索:
|
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
|
"category1_name",
"category2_name",
"category3_name",
"specifications",
"option1_name",
"option2_name",
"option3_name"
]
}'
### 1.2 验证category1_name字段是否有数据
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "category1_name" } }
]
}
},
"size": 0
}'
### 1.3 验证specifications字段是否有数据
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "specifications" } }
]
}
},
"size": 0
}'
## 2. 分面聚合查询(Facet Aggregations)
### 2.1 category1_name 分面聚合
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 0,
"aggs": {
"category1_name_facet": {
"terms": {
"field": "category1_name.keyword",
"size": 50
}
}
}
}'
### 2.2 specifications.color 分面聚合
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 0,
"aggs": {
"specifications_color_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "color"
}
},
"aggs": {
"values": {
"terms": {
"field": "specifications.value.keyword",
"size": 50
}
}
}
}
}
}
}
}'
### 2.3 specifications.size 分面聚合
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 0,
"aggs": {
"specifications_size_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "size"
}
},
"aggs": {
"values": {
"terms": {
"field": "specifications.value.keyword",
"size": 50
}
}
}
}
}
}
}
}'
### 2.4 specifications.material 分面聚合
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 0,
"aggs": {
"specifications_material_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "material"
}
},
"aggs": {
"values": {
"terms": {
"field": "specifications.value.keyword",
"size": 50
}
}
}
}
}
}
}
}'
### 2.5 综合分面聚合(category + color + size + material)
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 0,
"aggs": {
"category1_name_facet": {
"terms": {
"field": "category1_name.keyword",
"size": 50
}
},
"specifications_color_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "color"
}
},
"aggs": {
"values": {
"terms": {
"field": "specifications.value.keyword",
"size": 50
}
}
}
}
}
},
"specifications_size_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "size"
}
},
"aggs": {
"values": {
"terms": {
"field": "specifications.value.keyword",
"size": 50
}
}
}
}
}
},
"specifications_material_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "material"
}
},
"aggs": {
"values": {
"terms": {
"field": "specifications.value.keyword",
"size": 50
}
}
}
}
}
}
}
}'
## 3. 检查specifications嵌套字段的详细结构
### 3.1 查看specifications的name字段有哪些值
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 0,
"aggs": {
"specifications_names": {
"nested": {
"path": "specifications"
},
"aggs": {
"name_values": {
"terms": {
"field": "specifications.name",
"size": 20
}
}
}
}
}
}'
### 3.2 查看某个商品的完整specifications数据
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "specifications" } }
]
}
},
"size": 1,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
591
|
"_source": ["spu_id", "title", "specifications"]
|
33839b37
tangwang
属性值参与搜索:
|
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
|
}'
## 4. 统计查询
### 4.1 统计有category1_name的文档数量
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_count?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "category1_name" } }
]
}
}
}'
### 4.2 统计有specifications的文档数量
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_count?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "specifications" } }
]
}
}
}'
|
33839b37
tangwang
属性值参与搜索:
|
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
|
## 5. 诊断问题场景
### 5.1 查找没有category1_name但有category的文档(MySQL有数据但ES没有)
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } }
],
"must_not": [
{ "exists": { "field": "category1_name" } }
]
}
},
"size": 10,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
636
|
"_source": ["spu_id", "title", "category_name_text", "category_path"]
|
33839b37
tangwang
属性值参与搜索:
|
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
|
}'
### 5.2 查找有option但没有specifications的文档(数据转换问题)
curl -u 'essa:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "option1_name" } }
],
"must_not": [
{ "exists": { "field": "specifications" } }
]
}
},
"size": 10,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
653
|
"_source": ["spu_id", "title", "option1_name", "option2_name", "option3_name", "specifications"]
|
33839b37
tangwang
属性值参与搜索:
|
654
655
656
|
}'
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
|
重排序:
GET /search_products/_search
{
"query": {
"match": {
"title.en": {
"query": "quick brown fox",
"minimum_should_match": "90%"
}
}
},
"rescore": {
"window_size": 50,
"query": {
"rescore_query": {
"match_phrase": {
"title.en": {
"query": "quick brown fox",
"slop": 50
}
}
}
}
}
}
|