在documentation之后,我设法获得了一个从elasticsearch获取数据的API端点。我的问题是所提取的数据来自索引中的所有types
,而我想从索引中获取一个特定type
的数据
答案 0 :(得分:0)
我没有使用django-rest-elasticsearch
。相反,我使用elasticsearch
和elasticsearch_dsl
个包。在那,我做的是像
from elasticsearch import Elasticsearch
from elasticsearch_dsl import Search
client = Elasticsearch(ES_ENDPOINTS)
s = Search(using=client, index='my_index', type='my_type')
s = s.query("match_all")
s.execute()
希望它可以帮到你