Reformat OpenSearch
This commit is contained in:
parent
7c53e0ec9d
commit
d0ecc92169
|
@ -5,8 +5,9 @@ from opensearchpy import OpenSearch
|
||||||
def initialise_opensearch():
|
def initialise_opensearch():
|
||||||
auth = (settings.OPENSEARCH_USERNAME, settings.OPENSEARCH_PASSWORD)
|
auth = (settings.OPENSEARCH_USERNAME, settings.OPENSEARCH_PASSWORD)
|
||||||
client = OpenSearch(
|
client = OpenSearch(
|
||||||
|
# fmt: off
|
||||||
hosts=[{"host": settings.OPENSEARCH_URL,
|
hosts=[{"host": settings.OPENSEARCH_URL,
|
||||||
"port": settings.OPENSEARCH_PORT}],
|
"port": settings.OPENSEARCH_PORT}],
|
||||||
http_compress=False, # enables gzip compression for request bodies
|
http_compress=False, # enables gzip compression for request bodies
|
||||||
http_auth=auth,
|
http_auth=auth,
|
||||||
# client_cert = client_cert_path,
|
# client_cert = client_cert_path,
|
||||||
|
@ -35,5 +36,7 @@ def construct_query(query):
|
||||||
|
|
||||||
def run_main_query(client, query):
|
def run_main_query(client, query):
|
||||||
search_query = construct_query(query)
|
search_query = construct_query(query)
|
||||||
response = client.search(body=search_query, index=settings.OPENSEARCH_INDEX_MAIN)
|
# fmt: off
|
||||||
|
response = client.search(body=search_query,
|
||||||
|
index=settings.OPENSEARCH_INDEX_MAIN)
|
||||||
return response
|
return response
|
||||||
|
|
Loading…
Reference in New Issue