8cff1628
tangwang
tenant2 1w测试数据 mo...
|
1
|
|
577ec972
tangwang
返回给前端的字段、格式适配。主要包...
|
2
|
|
1681a135
tangwang
image_embeddin si...
|
3
4
5
|
# 查看所有租户索引
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/_cat/indices/search_products_tenant_*?v'
|
5ac64fc7
tangwang
多语言查询
|
6
7
8
|
# ======================================
# 租户相关
# ======================================
|
89638140
tangwang
重构 indexer 文档构建接口...
|
9
10
11
|
#
# 说明:索引已按租户拆分为 search_products_tenant_{tenant_id},
# 一般情况下不需要在查询中再按 tenant_id 过滤(可选保留用于排查)。
|
5ac64fc7
tangwang
多语言查询
|
12
13
|
### 1. 根据 tenant_id / spu_id 查询
|
484adbfe
tangwang
adapt ubuntu; con...
|
14
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
472cca0c
tangwang
doc
|
15
|
"size": 11,
|
80f87e57
tangwang
多语言索引修改 对应的 索引创建、...
|
16
|
"_source": ["title"],
|
472cca0c
tangwang
doc
|
17
18
19
|
"query": {
"bool": {
"filter": [
|
89638140
tangwang
重构 indexer 文档构建接口...
|
20
|
{ "term": {"spu_id" : 206150} }
|
472cca0c
tangwang
doc
|
21
22
23
24
25
26
|
]
}
}
}'
|
484adbfe
tangwang
adapt ubuntu; con...
|
27
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
89638140
tangwang
重构 indexer 文档构建接口...
|
28
29
30
31
32
33
|
"size": 100,
"_source": ["title"],
"query": {
"match_all": {}
}
}'
|
c4263d93
tangwang
支持 sku_filter_dim...
|
34
|
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
35
|
|
484adbfe
tangwang
adapt ubuntu; con...
|
36
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
89638140
tangwang
重构 indexer 文档构建接口...
|
37
38
39
40
41
42
43
|
"size": 5,
"_source": ["title", "keywords", "tags"],
"query": {
"bool": {
"filter": [
{ "term": { "spu_id": "223167" } }
]
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
44
|
}
|
89638140
tangwang
重构 indexer 文档构建接口...
|
45
46
|
}
}'
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
47
48
|
|
484adbfe
tangwang
adapt ubuntu; con...
|
49
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
89638140
tangwang
重构 indexer 文档构建接口...
|
50
51
52
53
54
55
56
57
58
|
"size": 1,
"_source": ["title", "keywords", "tags"],
"query": {
"bool": {
"must": [
{
"match": {
"title.en": {
"query": "Floerns Women Gothic Graphic Ribbed Strapless Tube Top Asymmetrical Ruched Bandeau Tops"
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
59
60
|
}
}
|
89638140
tangwang
重构 indexer 文档构建接口...
|
61
62
63
64
65
|
}
],
"filter": [
{ "terms": { "tags": ["女装", "派对"] } }
]
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
66
|
}
|
89638140
tangwang
重构 indexer 文档构建接口...
|
67
|
}
|
985d7fe3
tangwang
为 filters 中所有字段加上...
|
68
69
70
|
}'
|
484adbfe
tangwang
adapt ubuntu; con...
|
71
|
curl -u 'saas: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
|
}
}
}
],
"filter": [
{ "term": { "tenant_id": "170" } }
]
}
}
}'
|
484adbfe
tangwang
adapt ubuntu; con...
|
92
|
Curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_analyze' -H 'Content-Type: application/json' -d '{
|
30f2a10b
tangwang
ansj -> ik
|
93
|
"analyzer": "index_ik",
|
5ac64fc7
tangwang
多语言查询
|
94
95
96
|
"text": "14寸第4代-眼珠实身冰雪公仔带手动大推车,搪胶雪宝宝"
}'
|
484adbfe
tangwang
adapt ubuntu; con...
|
97
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_analyze' -H 'Content-Type: application/json' -d '{
|
30f2a10b
tangwang
ansj -> ik
|
98
|
"analyzer": "query_ik",
|
5ac64fc7
tangwang
多语言查询
|
99
100
101
|
"text": "14寸第4代-眼珠实身冰雪公仔带手动大推车,搪胶雪宝宝"
}'
|
484adbfe
tangwang
adapt ubuntu; con...
|
102
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
5ac64fc7
tangwang
多语言查询
|
103
104
105
106
107
108
109
110
111
|
"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
|
"option1_values^0.5"
],
"minimum_should_match": "75%",
"operator": "AND",
"query": "裙",
"tie_breaker": 0.9
}
}
],
"filter": [
{
|
89638140
tangwang
重构 indexer 文档构建接口...
|
130
|
"match_all": {}
|
5ac64fc7
tangwang
多语言查询
|
131
132
133
134
135
136
|
}
]
}
}
}'
|
484adbfe
tangwang
adapt ubuntu; con...
|
137
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_search?pretty' -H 'Content-Type: application/json' -d '{
|
5ac64fc7
tangwang
多语言查询
|
138
139
140
141
142
143
144
145
146
|
"size": 1,
"from": 0,
"query": {
"bool": {
"must": [
{
"multi_match": {
"_name": "base_query",
"fields": [
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
147
148
149
150
|
"title.zh^3.0",
"brief.zh^1.5",
"description.zh",
"vendor.zh^1.5",
|
5ac64fc7
tangwang
多语言查询
|
151
|
"tags",
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
152
153
|
"category_path.zh^1.5",
"category_name_text.zh^1.5",
|
5ac64fc7
tangwang
多语言查询
|
154
155
156
157
158
159
160
161
162
163
|
"option1_values^0.5"
],
"minimum_should_match": "75%",
"operator": "AND",
"query": "裙",
"tie_breaker": 0.9
}
}
],
"filter": [
|
89638140
tangwang
重构 indexer 文档构建接口...
|
164
|
{ "match_all": {} }
|
5ac64fc7
tangwang
多语言查询
|
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
|
]
}
},
"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"
}
}
}
}
}
}
}
}
}'
|
89638140
tangwang
重构 indexer 文档构建接口...
|
256
|
GET /search_products_tenant_2/_search
|
5ac64fc7
tangwang
多语言查询
|
257
258
|
{
"query": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
259
|
"match_all": {}
|
5ac64fc7
tangwang
多语言查询
|
260
261
|
}
}
|
c4263d93
tangwang
支持 sku_filter_dim...
|
262
263
|
|
484adbfe
tangwang
adapt ubuntu; con...
|
264
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
|
c4263d93
tangwang
支持 sku_filter_dim...
|
265
266
267
268
269
270
271
272
273
274
275
|
"size": 5,
"query": {
"bool": {
"filter": [
{ "term": { "spu_id": "74123" } }
]
}
}
}'
|
5ac64fc7
tangwang
多语言查询
|
276
|
### 2. 统计租户的总文档数
|
484adbfe
tangwang
adapt ubuntu; con...
|
277
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_170/_count?pretty' -H 'Content-Type: application/json' -d '{
|
5ac64fc7
tangwang
多语言查询
|
278
|
"query": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
279
|
"match_all": {}
|
5ac64fc7
tangwang
多语言查询
|
280
281
282
283
|
}
}'
|
33839b37
tangwang
属性值参与搜索:
|
284
285
286
287
288
289
290
|
# ======================================
# 分面数据诊断相关查询
# ======================================
## 1. 检查ES文档的分面字段数据
### 1.1 查询特定租户的商品,显示分面相关字段
|
484adbfe
tangwang
adapt ubuntu; con...
|
291
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
292
293
294
295
296
297
298
299
|
"query": {
"term": {
"tenant_id": "162"
}
},
"size": 1,
"_source": [
"spu_id",
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
300
|
"title",
|
33839b37
tangwang
属性值参与搜索:
|
301
302
303
304
305
306
307
308
309
310
311
|
"category1_name",
"category2_name",
"category3_name",
"specifications",
"option1_name",
"option2_name",
"option3_name"
]
}'
### 1.2 验证category1_name字段是否有数据
|
484adbfe
tangwang
adapt ubuntu; con...
|
312
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
313
314
315
316
317
318
319
320
321
322
323
324
|
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "category1_name" } }
]
}
},
"size": 0
}'
### 1.3 验证specifications字段是否有数据
|
484adbfe
tangwang
adapt ubuntu; con...
|
325
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "specifications" } }
]
}
},
"size": 0
}'
## 2. 分面聚合查询(Facet Aggregations)
### 2.1 category1_name 分面聚合
|
484adbfe
tangwang
adapt ubuntu; con...
|
340
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
341
|
"query": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
342
|
"match_all": {}
|
33839b37
tangwang
属性值参与搜索:
|
343
344
345
346
347
|
},
"size": 0,
"aggs": {
"category1_name_facet": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
348
|
"field": "category1_name",
|
33839b37
tangwang
属性值参与搜索:
|
349
350
351
352
353
354
355
|
"size": 50
}
}
}
}'
### 2.2 specifications.color 分面聚合
|
484adbfe
tangwang
adapt ubuntu; con...
|
356
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
357
|
"query": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
358
|
"match_all": {}
|
33839b37
tangwang
属性值参与搜索:
|
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
},
"size": 0,
"aggs": {
"specifications_color_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "color"
}
},
"aggs": {
"values": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
376
|
"field": "specifications.value",
|
33839b37
tangwang
属性值参与搜索:
|
377
378
379
380
381
382
383
384
385
386
387
|
"size": 50
}
}
}
}
}
}
}
}'
### 2.3 specifications.size 分面聚合
|
484adbfe
tangwang
adapt ubuntu; con...
|
388
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
389
|
"query": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
390
|
"match_all": {}
|
33839b37
tangwang
属性值参与搜索:
|
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
|
},
"size": 0,
"aggs": {
"specifications_size_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "size"
}
},
"aggs": {
"values": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
408
|
"field": "specifications.value",
|
33839b37
tangwang
属性值参与搜索:
|
409
410
411
412
413
414
415
416
417
418
419
|
"size": 50
}
}
}
}
}
}
}
}'
### 2.4 specifications.material 分面聚合
|
484adbfe
tangwang
adapt ubuntu; con...
|
420
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
421
|
"query": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
422
|
"match_all": {}
|
33839b37
tangwang
属性值参与搜索:
|
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
|
},
"size": 0,
"aggs": {
"specifications_material_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "material"
}
},
"aggs": {
"values": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
440
|
"field": "specifications.value",
|
33839b37
tangwang
属性值参与搜索:
|
441
442
443
444
445
446
447
448
449
450
451
|
"size": 50
}
}
}
}
}
}
}
}'
### 2.5 综合分面聚合(category + color + size + material)
|
484adbfe
tangwang
adapt ubuntu; con...
|
452
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
453
|
"query": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
454
|
"match_all": {}
|
33839b37
tangwang
属性值参与搜索:
|
455
456
457
458
459
|
},
"size": 0,
"aggs": {
"category1_name_facet": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
460
|
"field": "category1_name",
|
33839b37
tangwang
属性值参与搜索:
|
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
|
"size": 50
}
},
"specifications_color_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "color"
}
},
"aggs": {
"values": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
478
|
"field": "specifications.value",
|
33839b37
tangwang
属性值参与搜索:
|
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
|
"size": 50
}
}
}
}
}
},
"specifications_size_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "size"
}
},
"aggs": {
"values": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
500
|
"field": "specifications.value",
|
33839b37
tangwang
属性值参与搜索:
|
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
|
"size": 50
}
}
}
}
}
},
"specifications_material_facet": {
"nested": {
"path": "specifications"
},
"aggs": {
"filtered": {
"filter": {
"term": {
"specifications.name": "material"
}
},
"aggs": {
"values": {
"terms": {
|
89638140
tangwang
重构 indexer 文档构建接口...
|
522
|
"field": "specifications.value",
|
33839b37
tangwang
属性值参与搜索:
|
523
524
525
526
527
528
529
530
531
532
533
534
535
|
"size": 50
}
}
}
}
}
}
}
}'
## 3. 检查specifications嵌套字段的详细结构
### 3.1 查看specifications的name字段有哪些值
|
484adbfe
tangwang
adapt ubuntu; con...
|
536
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
|
"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数据
|
484adbfe
tangwang
adapt ubuntu; con...
|
561
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
562
563
564
565
566
567
568
569
570
|
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "specifications" } }
]
}
},
"size": 1,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
571
|
"_source": ["spu_id", "title", "specifications"]
|
33839b37
tangwang
属性值参与搜索:
|
572
573
574
575
576
|
}'
## 4. 统计查询
### 4.1 统计有category1_name的文档数量
|
484adbfe
tangwang
adapt ubuntu; con...
|
577
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_count?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
578
579
580
|
"query": {
"bool": {
"filter": [
|
33839b37
tangwang
属性值参与搜索:
|
581
582
583
584
585
586
587
|
{ "exists": { "field": "category1_name" } }
]
}
}
}'
### 4.2 统计有specifications的文档数量
|
484adbfe
tangwang
adapt ubuntu; con...
|
588
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_count?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
589
590
591
|
"query": {
"bool": {
"filter": [
|
33839b37
tangwang
属性值参与搜索:
|
592
593
594
595
596
597
|
{ "exists": { "field": "specifications" } }
]
}
}
}'
|
33839b37
tangwang
属性值参与搜索:
|
598
599
600
601
|
## 5. 诊断问题场景
### 5.1 查找没有category1_name但有category的文档(MySQL有数据但ES没有)
|
484adbfe
tangwang
adapt ubuntu; con...
|
602
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
603
604
605
606
607
608
609
610
611
612
613
|
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } }
],
"must_not": [
{ "exists": { "field": "category1_name" } }
]
}
},
"size": 10,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
614
|
"_source": ["spu_id", "title", "category_name_text", "category_path"]
|
33839b37
tangwang
属性值参与搜索:
|
615
616
617
|
}'
### 5.2 查找有option但没有specifications的文档(数据转换问题)
|
484adbfe
tangwang
adapt ubuntu; con...
|
618
|
curl -u 'saas:4hOaLaf41y2VuI8y' -X GET 'http://localhost:9200/search_products_tenant_162/_search?pretty' -H 'Content-Type: application/json' -d '{
|
33839b37
tangwang
属性值参与搜索:
|
619
620
621
622
623
624
625
626
627
628
629
630
|
"query": {
"bool": {
"filter": [
{ "term": { "tenant_id": "162" } },
{ "exists": { "field": "option1_name" } }
],
"must_not": [
{ "exists": { "field": "specifications" } }
]
}
},
"size": 10,
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
631
|
"_source": ["spu_id", "title", "option1_name", "option2_name", "option3_name", "specifications"]
|
33839b37
tangwang
属性值参与搜索:
|
632
633
634
|
}'
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
635
|
重排序:
|
89638140
tangwang
重构 indexer 文档构建接口...
|
636
|
GET /search_products_tenant_170/_search
|
d7d48f52
tangwang
改动(mapping + 灌入结构)
|
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
|
{
"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
}
}
}
}
}
}
|
272aeabe
tangwang
调参
|
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
|
检查某个字段是否存在
curl -u 'saas:4hOaLaf41y2VuI8y' -X POST \
'http://localhost:9200/search_products_tenant_163/_count' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"bool": {
"filter": [
{ "exists": { "field": "title_embedding" } }
]
}
}
}'
|