0
在此documentation之後,我設法獲得了一個從elasticsearch獲取數據的API端點。我的問題是,所獲取的數據來自索引中的所有types
,而我想從索引中獲得來自一個特定type
的數據使用django-rest-elasticsearch
在此documentation之後,我設法獲得了一個從elasticsearch獲取數據的API端點。我的問題是,所獲取的數據來自索引中的所有types
,而我想從索引中獲得來自一個特定type
的數據使用django-rest-elasticsearch
我沒有使用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()
希望它可以幫助你