diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-08-25 18:33:39 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-08-25 18:33:39 -0700 |
commit | 45e4cd9537f289a98579eef36a2dc3e561cc48fa (patch) | |
tree | e14c9a9f889c09b0fffb2f440341c185c963d66f /tests/files/search/GET_highlight_query.txt | |
parent | 55f9b88ba1d63db75ef9cde3cf94e5c98526ad2f (diff) | |
download | es-public-proxy-45e4cd9537f289a98579eef36a2dc3e561cc48fa.tar.gz es-public-proxy-45e4cd9537f289a98579eef36a2dc3e561cc48fa.zip |
move tests around
Diffstat (limited to 'tests/files/search/GET_highlight_query.txt')
-rw-r--r-- | tests/files/search/GET_highlight_query.txt | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/files/search/GET_highlight_query.txt b/tests/files/search/GET_highlight_query.txt new file mode 100644 index 0000000..7c7f0ea --- /dev/null +++ b/tests/files/search/GET_highlight_query.txt @@ -0,0 +1,55 @@ +GET /some-index/_search +{ + "query": { + "match": { + "comment": { + "query": "foo bar" + } + } + }, + "rescore": { + "window_size": 50, + "query": { + "rescore_query": { + "match_phrase": { + "comment": { + "query": "foo bar", + "slop": 1 + } + } + }, + "rescore_query_weight": 10 + } + }, + "_source": false, + "highlight": { + "order": "score", + "fields": { + "comment": { + "fragment_size": 150, + "number_of_fragments": 3, + "highlight_query": { + "bool": { + "must": { + "match": { + "comment": { + "query": "foo bar" + } + } + }, + "should": { + "match_phrase": { + "comment": { + "query": "foo bar", + "slop": 1, + "boost": 10.0 + } + } + }, + "minimum_should_match": 0 + } + } + } + } + } +} |