How up score for one a index if I have many indexes

Hello.
I have many indexes ("INDEX1","INDEX2","INDEX3")

[
    "index" => ["INDEX1","INDEX2","INDEX3"]
    "body" => [
         "query" => [
               "bool" => [
                   "must" => [
                       "multi_match" => [
                           "query" => "search text"
                               "fields" => ["title^5","description"]
                               "tie_breaker" => 0.2
                             ]
                         ]
                    ]
               ]
     ]
    "sort" => ["_score:desc", "date:desc" ]
     "size" => 5
]

How up score for index INDEX3

I need return result with INDEX3 priority

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.