主从复制 Redis 的主从、哨兵架构:https://www.cnblogs.com/yufeng218/p/13443058.html 从 redis 5.0.0 开始 salveof 命令 由 replicaof 命令替换 如果在配置文件中 配置了 replicaof,如下: replicao ...
分类:
其他好文 时间:
2021-06-02 19:02:34
阅读次数:
0
1. K8S集群Control Plane版本升级,不包括etcd、coreDNS 参考文档 https://v1-20.docs.kubernetes.io/zh/docs/tasks/administer-cluster/safely-drain-node/ https://v1-20.docs ...
分类:
其他好文 时间:
2021-06-02 18:24:52
阅读次数:
0
Execution Plans in SQL Server Introduction In this article, I’m going to explain what the Execution Plans in SQL Server are and how to understand the ...
分类:
数据库 时间:
2021-06-02 14:46:02
阅读次数:
0
Index Key Column VS Index Included Column Can someone explain this two - Index Key Column VS Index Included Column? Currently, I have an index that ha ...
分类:
其他好文 时间:
2021-06-02 14:39:23
阅读次数:
0
我们可以设置集群的平衡参数来暂时禁用掉平衡,具体步骤如下: 1.如果可能的话,先暂停掉数据新增和更新操作,这样会提高集群恢复的时间; 2.禁用集群分片平衡操作,直到告诉集群可以恢复平衡操作为止,禁用配置方式: PUT /_cluster/settings { "transient" : { "clu ...
分类:
其他好文 时间:
2021-06-02 12:58:20
阅读次数:
0
sklearn.base 基础类 & 工具类 sklearn.calibration 概率 sklearn.cluster 聚类 sklearn.compose 复合 sklearn.covariance 协方差 sklearn.cross_decomposition 交叉分解 sklearn.da ...
一、写在前面 HA即(high available)高可用,又被叫做双机热备,用于关键性业务。简单理解就是,有2台机器 A 和 B,正常是 A 提供服务,B 待命闲置,当 A 宕机或服务宕掉,会切换至B机器继续提供服务。常见的实现高可用的开源软件有 heartbeat 和 keepalived。 这 ...
分类:
其他好文 时间:
2021-05-25 18:40:44
阅读次数:
0
超过最大分片引起的,在es机器上执行:curl -XPUT -H "Content-Type:application/json" -d '{"persistent":{"cluster":{"max_shards_per_node":10000}}}' 'http://es-host:9200/_c ...
分类:
其他好文 时间:
2021-05-25 17:41:51
阅读次数:
0
首先通过一个函数启动一个服务器,只提供一个方法并返回Hello World!,当你在浏览器输入http://127.0.0.1:8080,就会看到Hello World。 对于http.ListenAndServe来说,需要我们提供一个Addr和一个Handler,所以当我们使用Hello实现了Ha ...
分类:
其他好文 时间:
2021-05-24 16:11:42
阅读次数:
0
一、Kubernetes的网络模型和网络策略 PS :K8S网络插件官方手册 https://kubernetes.io/zh/docs/concepts/cluster-administration/networking/ 1.1、Kubernetes网络模型和CNI插件 在Kubernetes中 ...
分类:
其他好文 时间:
2021-05-24 13:15:06
阅读次数:
0