일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- License
- Mac
- token filter test
- Python
- API
- Elasticsearch
- flask
- matplotlib
- aggregation
- TensorFlow
- sort
- Test
- aggs
- query
- 파이썬
- springboot
- docker
- zip 파일 암호화
- Kafka
- licence delete curl
- analyzer test
- Java
- ELASTIC
- 900gle
- plugin
- MySQL
- 차트
- high level client
- license delete
- zip 암호화
Archives
- Today
- Total
개발잡부
[900gle] elasticsearch 검색쿼리 본문
반응형
쿼리 구조
쿼리 셈플
phase 2 query
script_query = {
"function_score": {
"query": {
"bool": {
"must": [
{
"multi_match": {
"query": query,
"fields": [
"name",
"category"
]
}
}],
"should": [
{
"multi_match": {
"query": query,
"fields": [
"category1",
"category2",
"category3",
"category4",
"category5"
]
}
}
]
}
},
"boost_mode": "multiply",
"functions": [
{
"script_score": {
"script": {
"source": "cosineSimilarity(params.query_vector, 'feature_vector') * doc['weight'].value * doc['popular'].value / doc['name.keyword'].length + doc['category.keyword'].length",
"params": {
"query_vector": query_vector
}
}
},
"weight": 0.1
}
]
}
}
{
"query":{
"function_score":{
"query":{
"multi_match":{
"query":"나이키",
"fields":[
"name^5",
"category"
]
}
},
"functions":[
{
"script_score":{
"script":{
"source":"cosineSimilarity(params.query_vector, doc['name_vector']) + 1.0",
"params":{
"query_vector":[
0.0008812982123345137,
0.026942647993564606,
".....",
0.08682870119810104,
0.02672387659549713
]
}
}
},
"weight":50
},
{
"filter":{
"match":{
"name":"나이키"
}
},
"random_score":{
},
"weight":23
}
]
}
},
"sort":[
{
"_script":{
"type":"number",
"order":"desc",
"script":{
"source":"doc['price'].value / params.searchKeyword",
"params":{
"searchKeyword":10000
}
}
}
},
{
"price":{
"order":"asc"
}
}
]
}
반응형
'900gle shopping > system' 카테고리의 다른 글
[900gle] Architecture (0) | 2022.01.05 |
---|
Comments