python 丢HTTP要求给ElasticSearch并取回文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 丢HTTP要求给ElasticSearch并取回文件相关的知识,希望对你有一定的参考价值。

import json
import requests
ES_URL = "your es cluster url including index and _type like .../index1/doc_type"

query = {
  "size": 150,
    "query": {
        "bool": {
            "must": [
                {
                    "term": {
                        "cs_type.keyword": "sr"
                    }
                }
            ]
        }
    },
    "aggs": {
        "1": {
            "date_histogram": {
                "field": "refund",
                "interval": "100d"
            },
            "aggs": {
                "Refund": {
                    "sum": {
                        "field": "sr_info_sr_payback"
                    }
                }
            }
        }
    }
}

res = requests.post(ES_URL + "_search", data=json.dumps(query)).json()
if not res['timed_out']:
    docs = [i['_source'] for i in res['hits']['hits']]

以上是关于python 丢HTTP要求给ElasticSearch并取回文件的主要内容,如果未能解决你的问题,请参考以下文章

身份证丢了怎么申请转码?

Kafka消息中间件到底会不会丢消息

SpringBoot-spring-data-elasticsearch7.12.0

不看损失大了,刨根问底,Kafka消息中间件到底会不会丢消息

查看是否丢包效率

struts2拦截器过滤放行后ajax请求后参数丢了