【Elasticsearch】开源搜索技术的演进与选择:Elasticsearch 与 OpenSearch
在开源搜索技术的演进过程中,Elasticsearch 与 OpenSearch 都是重要的参与者。Elasticsearch 是一个基于 Apache Lucene 的开源搜索和分析引擎,而 OpenSearch 是一个创新型的搜索引擎,它在保持 Elasticsearch 所有功能的同时,还提供了额外的安全性和合规性特性。
以下是如何在 Python 中使用 `opensearch-py` 客户端与 OpenSearch 集群进行交互的示例代码:
```python
from opensearchpy import OpenSearch, helpers
# 创建 OpenSearch 客户端实例
host = "https://opensearch-cluster-host.com"
username = "admin"
password = "admin123"
# 使用 OpenSearch 构造函数创建连接
os = OpenSearch(
hosts=host,
http_auth=(username, password),
use_ssl=True,
verify_certs=True,
ssl_show_warn=False,
client_cert=None
)
# 索引一些文档
documents = [
{"title": "Document 1", "text": "Example document."},
{"title": "Document 2", "text": "Another example."}
]
helpers.bulk(os, documents, index="test-index", raise_on_error=True)
# 搜索文档
search_query = {
"query": {
"match": {
"text": "example"
}
}
}
res = os.search(body=search_query, index="test-index")
print(res['hits']['hits'])
在这个示例中,我们首先创建了一个 OpenSearch 客户端实例,然后使用 helpers.bulk
函数批量索引文档。接下来,我们执行一个简单的搜索查询,并打印出返回的结果。这个过程展示了如何在 Python 中使用 OpenSearch 客户端与 OpenSearch 集群进行交互。
评论已关闭