Redis的主从复制模式下,一旦主节点由于故障不能提供服务,需要人工将从节点晋升为主节点,同时还要通知应用方更新主节点地址,对于很多应用场景这种故障处理的方式是无法接受的。可喜的是Redis从 2.8开始正式提供了 Redis Sentinel (哨兵)架构来解决这个问题。 1.基本概念 由于对Re ...
分类:
其他好文 时间:
2021-05-04 15:22:14
阅读次数:
0
运行时出现下面的错误: C:/cb/pytorch_1000000000000/work/aten/src/ATen/native/cuda/IndexKernel.cu:142: block: [0,0,0], thread: [17,0,0] Assertion `index >= -sizes ...
分类:
其他好文 时间:
2021-05-03 12:58:43
阅读次数:
0
解决办法: 编辑 --> 首选项 --> Advanced --> 选择 “Use software-only mode” (默认是:Use Gpu ...) ...
分类:
其他好文 时间:
2021-05-03 12:55:31
阅读次数:
0
2021-05-01,9点51 自己写测试debug redis代码:错误:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o: In function `_start':(.text+0x20): undefined re ...
分类:
其他好文 时间:
2021-05-03 12:30:41
阅读次数:
0
异常处理机制 抛出异常 捕获异常 五个关键词 try、catch、finally、throw、throws package com.exception; public class Test { public static void main(String[] args) { try { new Te ...
分类:
其他好文 时间:
2021-05-03 12:20:05
阅读次数:
0
Allow access to Azure services 这个参数会控制VNET访问这个mysql。如果是YES, vnet的VM可以访问mysql 如果是NO, 如果VM访问会有提示报错: ERROR 9009 (28000): Client from Azure Virtual Networ ...
分类:
数据库 时间:
2021-05-03 11:41:19
阅读次数:
0
adb连接安卓设备失败failed to start daemon Reference:https://blog.csdn.net/whshuo2010/article/details/51094495?locationNum=8 背景 连接设备后,使用adb devices命令查看目前连接的设备, ...
分类:
移动开发 时间:
2021-05-03 11:40:13
阅读次数:
0
Mysql配置读写数据库 ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege(s) for this operation 原因之前mysql的vi /etc/my.cnf 修改配置没有重启 ...
分类:
其他好文 时间:
2021-04-30 12:42:22
阅读次数:
0
linux Error downloading packages free 0 * needed 71 k 原因:硬盘空间不足 查看磁盘大小 /]# df -hl 从/主目录开始搜索,查看占用磁盘大的 # du -sh * 最后发现jenkins目录下占用过高 cd /var/lib/Jenkins ...
分类:
系统相关 时间:
2021-04-30 12:41:59
阅读次数:
0
Django cbv的执行流程 path('test/',views.TestView.as_view()), # path('test/',View类的as_view内部有个view闭包函数内存地址), # path的第二个参数是:View类的as_view内部有个view闭包函数内存地址 1 一 ...