要將NumPy與Elasticsearch集成使用,可以使用Elasticsearch的Python客戶端庫elasticsearch-py。以下是一個簡單的例子:
pip install elasticsearch
from elasticsearch import Elasticsearch
import numpy as np
es = Elasticsearch()
data = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
doc = {
'data': data.tolist()
}
es.index(index='my_index', doc_type='my_type', id=1, body=doc)
res = es.get(index='my_index', doc_type='my_type', id=1)
retrieved_data = np.array(res['_source']['data'])
通過這些步驟,您可以將NumPy數組索引到Elasticsearch中并檢索出來。您還可以根據自己的需求進行更復雜的操作和查詢。