Blog Articles
-
腾讯云CDN自动重试问题
请求链接如下 客户端—>腾讯云CDN—>服务器 在客户端只发起一次请求的情况下(状态码为400), 腾讯云CDN到服务器请求了两次 使用了两个ip地址访问,一个是长沙的,一个是南昌的。 提了一个工单,反馈是热备源站导致的(对TX云响应速度点赞
Published on: -
greenplum 使用jdbc连接数据库
下载驱动 greenplum 6.0 jdbc driver download 将jar导入到项目中, gradle可以这样子 compile fileTree(dir: 'libs', include: '*.jar
Published on: -
sqlserver 数据变更跟踪
开启与停用 数据库开启与停用 开启 ALTER DATABASE $DB_NAME SET CHANGE_TRACKING = ON (CHANGE_RETENTION = 7 DAYS, AUTO_CLEANUP = ON) $DB_NAME: 数据库
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: -
安装SkyWalking 9.2.0
总体结构 集成步骤: storage:使用elasticsearch backend:安装skywalking ui:安装skywalking-ui agent:根据项目集成(本文使用java agent) 安装elasticsearch 安装文档
Published on: -
Comparison method violates its general contract
java.lang.IllegalArgumentException: Comparison method violates its general contract! at java.util.ComparableTimSort.mergeHi(Com
Published on: -
1.ES实验环境安装
简介 elasticsearch是一个非关系型数据库,支持全文索引,适合复杂搜索场景。 安装es #!/bin/sh set -x docker rm -f es01 docker run --name es01 --net host -e ES_JAVA
Published on: -
2.ES基本操作-索引
官方文档 https://www.elastic.co/guide/en/elasticsearch/reference/current/indices.html 索引操作 1.创建索引: curl -X PUT "localhost:9200/
Published on: -
3.ES基本操作-别名
官方文档 https://www.elastic.co/guide/en/elasticsearch/reference/current/indices.html 别名特性 可以给一个索引指定多个别名; 可以给多个索引指定相同别名; 新增别名 POST
Published on: