码迷,mamicode.com
首页 >  
搜索关键字:groups    ( 1428个结果
canal实时同步mysql表到es
方案说明 canal是阿里云开源的解析binlog组件,同步到ES需要deployer和adapter两部分: deployer解析MySQL binlog,adapter将数据写入到ES 优点 开源成熟稳定 简单易用 缺点 不支持全量数据初始化 部署 logstash进行全量 /etc/hosts ...
分类:数据库   时间:2021-06-28 17:36:08    阅读次数:0
maven 配置阿里云镜像,以及本地仓库,系统环境变量配置
settings,xml 阿里云镜像: <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/ ...
分类:其他好文   时间:2021-06-10 18:06:24    阅读次数:0
资源划分--cgroups
一、简介 cgroups 的全称是control groups,是Linux内核提供的一种可以限制、记录、隔离进程组所使用的物理资源(包括:CPU、memory、IO等),可以对 cpu,内存等资源实现精细化的控制,目前越来越火的轻量级容器 Docker 就使用了 cgroups 提供的资源限制能力 ...
分类:其他好文   时间:2021-06-06 19:06:23    阅读次数:0
RBAC-实现不同用户对不同namespace的不同权限控制
需求: 1、用户"wangqing"可以查看default、kube-system 两个namespace下的pod以及pod日志权限 2、用户"xiaowang"可以在default这个namespace下pod执行命令,并且可以删除pod 一、Serviceaccount服务账户和命名空间; 首 ...
分类:其他好文   时间:2021-05-25 18:42:28    阅读次数:0
Maven配置阿里镜像
配置方法: 在以下位置加入: <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central< ...
分类:其他好文   时间:2021-05-24 15:32:28    阅读次数:0
TestNG 组测试
方法分组测试 1. 给@Test注解后面加groups参数,如 @Test(groups = "groupa") 2. 可以添加@BeforeGroups和@AfterGroups,来设置在某组方法执行之前/之后要做的事情,如 @BeforeGroups("groupa") 1 import org ...
分类:其他好文   时间:2021-05-04 15:52:39    阅读次数:0
spire.xls 将excel转为pdf
我的idea使用maven引入依赖没有成功,只能下载jar包 下载jar包地址: http://repo.e-iceblue.com/nexus/content/groups/public/e-iceblue/spire.xls.free/ pom.xml中配置jar所在路径 <dependency ...
分类:其他好文   时间:2021-04-23 12:25:08    阅读次数:0
[AWS - Design Resilient Architectures] 1.2 Design highly available and/or fault-tolerant architectures
Cloud computing models: With cloud deployment, nothing is installed on premise, but an Internet connection and network infrastructure solutions With h ...
分类:其他好文   时间:2021-04-21 12:22:48    阅读次数:0
9.ansible 循环功能和忽略错误
在剧本中设置循环信息 vim test04.yml hosts: all remote_user: root tasks: name: Add Users user: name={{ item.name }} groups={{ item.groups }} state=present with_i ...
分类:其他好文   时间:2021-03-31 11:52:29    阅读次数:0
Python列表等长度分割
1 def list_of_groups(init_list, childern_list_len): 2 ''' 3 :param init_list: 4 :param childern_list_len: 5 :return: 6 ''' 7 list_of_group = zip(*(ite ...
分类:编程语言   时间:2021-03-05 13:23:08    阅读次数:0
1428条   1 2 3 4 ... 143 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!