Fix negatives values in search index causing queries to fail (#19464)

master
Eugen Rochko 2022-10-26 13:00:43 +02:00 committed by GitHub
parent bf0ab3e0fa
commit 7d25f72b9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -105,7 +105,7 @@ class AccountSearchService < BaseService
{ {
script_score: { script_score: {
script: { script: {
source: "(doc['followers_count'].value + 0.0) / (doc['followers_count'].value + doc['following_count'].value + 1)", source: "(Math.max(doc['followers_count'].value, 0) + 0.0) / (Math.max(doc['followers_count'].value, 0) + Math.max(doc['following_count'].value, 0) + 1)",
}, },
}, },
} }
@ -113,10 +113,10 @@ class AccountSearchService < BaseService
def followers_score_function def followers_score_function
{ {
field_value_factor: { script_score: {
field: 'followers_count', script: {
modifier: 'log2p', source: "log2p(Math.max(doc['followers_count'].value, 0))",
missing: 0, },
}, },
} }
end end