0
我新的elasticSearch我只是想知道是否有這樣做查詢最快的方法:查詢的Python爲elasticSearch
res = es.search(size=10000,
scroll='1m',
index='myindex',
body={"query": {
"bool": {
"must": [
{"term": {"Plant": 6204}},
{"range": {
"Date shift end": {
"gte": "2016-07-01",
"lte": "2016-08-31"}}}]}}})
非常感謝您