Blog Articles
-
腾讯云CDN自动重试问题
请求链接如下 客户端—>腾讯云CDN—>服务器 在客户端只发起一次请求的情况下(状态码为400), 腾讯云CDN到服务器请求了两次 使用了两个ip地址访问,一个是长沙的,一个是南昌的。 提了一个工单,反馈是热备源站导致的(对TX云响应速度点赞
Published on: -
2.ES基本操作-索引
官方文档 https://www.elastic.co/guide/en/elasticsearch/reference/current/indices.html 索引操作 1.创建索引: curl -X PUT "localhost:9200/
Published on: -
canal
简介 https://github.com/alibaba/canal https://github.com/alibaba/canal/wiki/QuickStart 基于 MySQL 数据库增量日志解析,提供增量数据订阅和消费 原理是使用程序模拟一个
Published on: -
6.ES基本操作-查询
查询所有文档 GET /$index/_search { 'query': { 'match_all': { 'boost': 1
Published on: -
high disk watermark 错误
问题 遇到写es写不进去的错误,看一下日志: {"@timestamp":"2022-03-10T06:44:00.075Z", "log.level": "WARN", &
Published on: -
4.ES基本操作-映射
官方文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html 文档(Document): 一组字段的集合。 字段(Fields):用来存放数据的基本单位,
Published on: -
电子合同(基本了解)
法律依据 中华人民共和国电子签名法 数据电文满足法律、法规规定的文件保存要求: 能够有效地表现所载内容并可供随时调取查用; 数据电文的格式与其生成、发送或者接收时的格式相同,或者格式不相同但是能够准确表现原来生成、发送或者接收的内容; 能够识别数据电文的
Published on: -
3.ES基本操作-别名
官方文档 https://www.elastic.co/guide/en/elasticsearch/reference/current/indices.html 别名特性 可以给一个索引指定多个别名; 可以给多个索引指定相同别名; 新增别名 POST
Published on: -
pip更换国内镜像源
安装软件的时候, 国外的镜像可能比较慢, 换成国内镜像会快很多 可选镜像源 阿里云 http://mirrors.aliyun.com/pypi/simple/ 豆瓣 http://pypi.douban.com/simple/ 清华大学 https:/
Published on: -
ubuntu下matplotlib显示中文
安装中文字体 sudo apt install ttf-wqy-microhei 清除ttf-wqy-microhei缓存 rm ~/.cache/matplotlib -rf 在代码中指定字体 matplotlib.rcParams['fo
Published on: