make search query work with os2.17 and upgrade containers
This commit is contained in:
parent
344c23ed5c
commit
b7dfef41c0
@ -303,85 +303,6 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// query for search terms
|
|
||||||
if (query.length) {
|
|
||||||
// keyword based subquery, to be used on its own or in conjunction with a neural
|
|
||||||
// search
|
|
||||||
const subquery = [
|
|
||||||
{
|
|
||||||
multi_match: {
|
|
||||||
query,
|
|
||||||
type: 'most_fields',
|
|
||||||
fields: ['title^10', 'text'],
|
|
||||||
fuzziness: 'AUTO',
|
|
||||||
minimum_should_match: 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// all match matches higher
|
|
||||||
{
|
|
||||||
multi_match: {
|
|
||||||
query,
|
|
||||||
type: 'most_fields',
|
|
||||||
fields: ['title^10', 'text'],
|
|
||||||
minimum_should_match: '100%',
|
|
||||||
boost: 100
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// phrase match matches higher
|
|
||||||
{
|
|
||||||
multi_match: {
|
|
||||||
query,
|
|
||||||
type: 'phrase',
|
|
||||||
fields: ['title^10', 'text'],
|
|
||||||
boost: 1000
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
// use hybrid neural search if model id is available, otherwise use only
|
|
||||||
// keyword search
|
|
||||||
if (process.env.OPENSEARCH_MODEL_ID) {
|
|
||||||
termQueries.push({
|
|
||||||
hybrid: {
|
|
||||||
queries: [
|
|
||||||
{
|
|
||||||
bool: {
|
|
||||||
should: [
|
|
||||||
{
|
|
||||||
neural: {
|
|
||||||
title_embedding: {
|
|
||||||
query_text: query,
|
|
||||||
model_id: process.env.OPENSEARCH_MODEL_ID,
|
|
||||||
k: decodedCursor.offset + LIMIT
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
neural: {
|
|
||||||
text_embedding: {
|
|
||||||
query_text: query,
|
|
||||||
model_id: process.env.OPENSEARCH_MODEL_ID,
|
|
||||||
k: decodedCursor.offset + LIMIT
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
bool: {
|
|
||||||
should: subquery,
|
|
||||||
minimum_should_match: 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
termQueries.push(...subquery)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// functions for boosting search rank by recency or popularity
|
// functions for boosting search rank by recency or popularity
|
||||||
switch (sort) {
|
switch (sort) {
|
||||||
case 'comments':
|
case 'comments':
|
||||||
@ -423,6 +344,98 @@ export default {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let osQuery = {
|
||||||
|
function_score: {
|
||||||
|
query: {
|
||||||
|
bool: {
|
||||||
|
filter: filters,
|
||||||
|
should: termQueries,
|
||||||
|
minimum_should_match: termQueries.length > 0 ? 1 : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
functions,
|
||||||
|
score_mode: 'multiply',
|
||||||
|
boost_mode: 'multiply'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// query for search terms
|
||||||
|
if (query.length) {
|
||||||
|
// keyword based subquery, to be used on its own or in conjunction with a neural
|
||||||
|
// search
|
||||||
|
const subquery = [
|
||||||
|
{
|
||||||
|
multi_match: {
|
||||||
|
query,
|
||||||
|
type: 'best_fields',
|
||||||
|
fields: ['title^10', 'text'],
|
||||||
|
fuzziness: 'AUTO',
|
||||||
|
minimum_should_match: 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// all match matches higher
|
||||||
|
{
|
||||||
|
multi_match: {
|
||||||
|
query,
|
||||||
|
type: 'best_fields',
|
||||||
|
fields: ['title^10', 'text'],
|
||||||
|
minimum_should_match: '100%',
|
||||||
|
boost: 100
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// phrase match matches higher
|
||||||
|
{
|
||||||
|
multi_match: {
|
||||||
|
query,
|
||||||
|
type: 'phrase',
|
||||||
|
fields: ['title^10', 'text'],
|
||||||
|
boost: 1000
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
osQuery.function_score.query.bool.should = [...termQueries, ...subquery]
|
||||||
|
osQuery.function_score.query.bool.minimum_should_match = 1
|
||||||
|
|
||||||
|
// use hybrid neural search if model id is available, otherwise use only
|
||||||
|
// keyword search
|
||||||
|
if (process.env.OPENSEARCH_MODEL_ID) {
|
||||||
|
osQuery = {
|
||||||
|
hybrid: {
|
||||||
|
queries: [
|
||||||
|
{
|
||||||
|
bool: {
|
||||||
|
should: [
|
||||||
|
{
|
||||||
|
neural: {
|
||||||
|
title_embedding: {
|
||||||
|
query_text: query,
|
||||||
|
model_id: process.env.OPENSEARCH_MODEL_ID,
|
||||||
|
k: decodedCursor.offset + LIMIT
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
neural: {
|
||||||
|
text_embedding: {
|
||||||
|
query_text: query,
|
||||||
|
model_id: process.env.OPENSEARCH_MODEL_ID,
|
||||||
|
k: decodedCursor.offset + LIMIT
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
filter: filters,
|
||||||
|
minimum_should_match: 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
osQuery
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
sitems = await search.search({
|
sitems = await search.search({
|
||||||
index: process.env.OPENSEARCH_INDEX,
|
index: process.env.OPENSEARCH_INDEX,
|
||||||
@ -436,20 +449,7 @@ export default {
|
|||||||
},
|
},
|
||||||
from: decodedCursor.offset,
|
from: decodedCursor.offset,
|
||||||
body: {
|
body: {
|
||||||
query: {
|
query: osQuery,
|
||||||
function_score: {
|
|
||||||
query: {
|
|
||||||
bool: {
|
|
||||||
filter: filters,
|
|
||||||
should: termQueries,
|
|
||||||
minimum_should_match: 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
functions,
|
|
||||||
score_mode: 'multiply',
|
|
||||||
boost_mode: 'multiply'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
highlight: {
|
highlight: {
|
||||||
fields: {
|
fields: {
|
||||||
title: { number_of_fragments: 0, pre_tags: ['***'], post_tags: ['***'] },
|
title: { number_of_fragments: 0, pre_tags: ['***'], post_tags: ['***'] },
|
||||||
|
@ -163,7 +163,7 @@ services:
|
|||||||
- "CONNECT=localhost:4566"
|
- "CONNECT=localhost:4566"
|
||||||
cpu_shares: "${CPU_SHARES_LOW}"
|
cpu_shares: "${CPU_SHARES_LOW}"
|
||||||
opensearch:
|
opensearch:
|
||||||
image: opensearchproject/opensearch:2.12.0
|
image: opensearchproject/opensearch:2.17.0
|
||||||
container_name: opensearch
|
container_name: opensearch
|
||||||
profiles:
|
profiles:
|
||||||
- search
|
- search
|
||||||
@ -203,7 +203,7 @@ services:
|
|||||||
'
|
'
|
||||||
cpu_shares: "${CPU_SHARES_LOW}"
|
cpu_shares: "${CPU_SHARES_LOW}"
|
||||||
os-dashboard:
|
os-dashboard:
|
||||||
image: opensearchproject/opensearch-dashboards:2.12.0
|
image: opensearchproject/opensearch-dashboards:2.17.0
|
||||||
container_name: os-dashboard
|
container_name: os-dashboard
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
profiles:
|
profiles:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user