How to deploy EBS CSI on AWS EKS in China region? ISSUE Cannot access k8s.gcr.io repository in China region. Prerequisites Fetch the Account ID and sa ...
分类:
其他好文 时间:
2021-03-08 13:03:04
阅读次数:
0
InfluxDB基本概念 1、数据格式 在 InfluxDB 中,我们可以粗略的将要存入的一条数据看作一个虚拟的 key 和其对应的 value(field value)。格式如下: cpu_usage,host=server01,region=us-west value=0.64 14340555 ...
分类:
数据库 时间:
2021-03-01 13:30:25
阅读次数:
0
转自:https://blog.csdn.net/zser567/article/details/105388029 问题背景:PageHelper的分页只有在 PageHelper.startPage(pageNum,pageSize); 之后的数据库查询语句才起作用,原因是PageHelper的 ...
分类:
其他好文 时间:
2021-02-22 11:54:02
阅读次数:
0
本周最新文献速递 一 文献题目: A GWAS in Latin Americans identifies novel face shape loci, implicating VPS13B and a Denisovan introgressed region in facial variatio ...
分类:
其他好文 时间:
2021-02-09 11:46:19
阅读次数:
0
定义将字典集合Dictionary转换为动态对象的方法 #region 将字典集合转换为动态对象 /// <summary> /// 将字典集合转换为动态对象 /// </summary> /// <param name="propertyDics">属性/属性值字典集合</param> /// < ...
git clone过大的仓库时会报以下错误 remote: aborting due to possible repository corruption on the remote side. fatal: protocol error: bad pack header 解决办法是分层clone $ ...
分类:
其他好文 时间:
2021-01-26 12:41:49
阅读次数:
0
定义简单单链表结构 public class ListNode { public int val; public ListNode next; public ListNode(int val = 0, ListNode next = null) { this.val = val; this.next ...
restic -o s3.bucket-lookup=dns -o s3.region=oss-cn-beijing -r s3:https://xxx(bucket_name).oss-cn-beijing.aliyuncs.com init 需要修改代码, Go语言不太熟悉, 改的合不合理不太清 ...
分类:
其他好文 时间:
2021-01-19 11:54:37
阅读次数:
0
hbase写数据流程 ?先从 zk找到meta表的region位置,然后读取meta表中的数据,meta表中存储了用户表的region信息 根据namespace、表名和rowkey信息。找到写入数据对应的 region信息 找到这个region对应的regionServer,然后发送请求 把数据分 ...
分类:
其他好文 时间:
2021-01-18 11:07:30
阅读次数:
0
(部分摘自 https://www.cnblogs.com/kkxwze/p/10791719.html) 1、DDL和DML DML:数据操纵语言:比如insert,delete,update DQL:数据查询语言:Select 查询语句不存在提交问题 DDL:数据定义语言:如Create,Alt ...
分类:
数据库 时间:
2021-01-14 10:36:08
阅读次数:
0