2023-07-25 21:04:13 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
#
|
|
|
|
|
# The OpenSearch Contributors require contributions made to
|
|
|
|
|
# this file be licensed under the Apache-2.0 license or a
|
|
|
|
|
# compatible open source license.
|
2023-10-26 22:55:50 -04:00
|
|
|
#
|
|
|
|
|
# Modifications Copyright OpenSearch Contributors. See
|
|
|
|
|
# GitHub history for details.
|
|
|
|
|
|
2023-07-25 21:04:13 -05:00
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
import random
|
|
|
|
|
|
2023-11-21 13:04:39 -05:00
|
|
|
from opensearchpy import OpenSearch, helpers
|
2023-10-26 22:55:50 -04:00
|
|
|
|
2023-07-25 21:04:13 -05:00
|
|
|
|
2023-11-21 13:04:39 -05:00
|
|
|
def main() -> None:
|
2023-12-22 15:32:48 -05:00
|
|
|
"""
|
|
|
|
|
create, bulk index, and query kNN. then delete the index
|
|
|
|
|
"""
|
2023-07-25 21:04:13 -05:00
|
|
|
# connect to an instance of OpenSearch
|
2023-11-21 13:04:39 -05:00
|
|
|
|
2023-10-26 22:55:50 -04:00
|
|
|
host = os.getenv("HOST", default="localhost")
|
|
|
|
|
port = int(os.getenv("PORT", 9200))
|
|
|
|
|
auth = (os.getenv("USERNAME", "admin"), os.getenv("PASSWORD", "admin"))
|
2023-07-25 21:04:13 -05:00
|
|
|
|
2023-11-21 13:04:39 -05:00
|
|
|
client = OpenSearch(
|
2023-10-26 22:55:50 -04:00
|
|
|
hosts=[{"host": host, "port": port}],
|
|
|
|
|
http_auth=auth,
|
|
|
|
|
use_ssl=True,
|
|
|
|
|
verify_certs=False,
|
|
|
|
|
ssl_show_warn=False,
|
2023-07-25 21:04:13 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# check whether an index exists
|
|
|
|
|
index_name = "my-index"
|
|
|
|
|
dimensions = 5
|
|
|
|
|
|
2023-11-21 13:04:39 -05:00
|
|
|
if not client.indices.exists(index_name):
|
|
|
|
|
client.indices.create(
|
2023-10-26 22:55:50 -04:00
|
|
|
index_name,
|
2023-07-25 21:04:13 -05:00
|
|
|
body={
|
2023-10-26 22:55:50 -04:00
|
|
|
"settings": {"index.knn": True},
|
|
|
|
|
"mappings": {
|
2023-07-25 21:04:13 -05:00
|
|
|
"properties": {
|
2023-10-26 22:55:50 -04:00
|
|
|
"values": {"type": "knn_vector", "dimension": dimensions},
|
2023-07-25 21:04:13 -05:00
|
|
|
}
|
2023-10-26 22:55:50 -04:00
|
|
|
},
|
|
|
|
|
},
|
2023-07-25 21:04:13 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# index data
|
|
|
|
|
vectors = []
|
|
|
|
|
for i in range(10):
|
|
|
|
|
vec = []
|
2024-01-25 18:17:09 -05:00
|
|
|
for _ in range(dimensions):
|
2023-10-26 22:55:50 -04:00
|
|
|
vec.append(round(random.uniform(0, 1), 2))
|
|
|
|
|
|
|
|
|
|
vectors.append(
|
|
|
|
|
{
|
|
|
|
|
"_index": index_name,
|
|
|
|
|
"_id": i,
|
|
|
|
|
"values": vec,
|
|
|
|
|
}
|
|
|
|
|
)
|
2023-07-25 21:04:13 -05:00
|
|
|
|
|
|
|
|
# bulk index
|
2023-11-21 13:04:39 -05:00
|
|
|
helpers.bulk(client, vectors)
|
2023-07-25 21:04:13 -05:00
|
|
|
|
2023-11-21 13:04:39 -05:00
|
|
|
client.indices.refresh(index=index_name)
|
2023-07-25 21:04:13 -05:00
|
|
|
|
|
|
|
|
# search
|
2024-01-25 18:17:09 -05:00
|
|
|
vec = [round(random.uniform(0, 1), 2) for _ in range(dimensions)]
|
2023-07-25 21:04:13 -05:00
|
|
|
print(f"Searching for {vec} ...")
|
|
|
|
|
|
|
|
|
|
search_query = {"query": {"knn": {"values": {"vector": vec, "k": 3}}}}
|
2023-11-21 13:04:39 -05:00
|
|
|
results = client.search(index=index_name, body=search_query)
|
2024-01-25 18:17:09 -05:00
|
|
|
(print(hit) for hit in results["hits"]["hits"])
|
2023-07-25 21:04:13 -05:00
|
|
|
|
|
|
|
|
# delete index
|
2023-11-21 13:04:39 -05:00
|
|
|
client.indices.delete(index=index_name)
|
2023-07-25 21:04:13 -05:00
|
|
|
|
2023-10-26 22:55:50 -04:00
|
|
|
|
2023-07-25 21:04:13 -05:00
|
|
|
if __name__ == "__main__":
|
2023-11-21 13:04:39 -05:00
|
|
|
main()
|