上一页 1 2 3 4 5 6 ··· 23 下一页
摘要: https://blog.csdn.net/u012373717/article/details/115401536 security.protocol=SASL_PLAINTEXT (or SASL_SSL) sasl.mechanism=GSSAPI sasl.kerberos.service. 阅读全文
posted @ 2022-01-21 22:03 kpwong 阅读(66) 评论(0) 推荐(0) 编辑
摘要: https://cwiki.apache.org/confluence/display/ZOOKEEPER/Server-Server+mutual+authentication 官网 https://article.itxueyuan.com/ylgo9Q sessionRequireClient 阅读全文
posted @ 2022-01-20 22:23 kpwong 阅读(671) 评论(0) 推荐(0) 编辑
摘要: https://www.freesion.com/article/25221275844/ https://www.jianshu.com/p/032cc462bbca https://www.cnblogs.com/bainianminguo/p/12548175.html https://blo 阅读全文
posted @ 2022-01-15 22:11 kpwong 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Druid 配置文件详解: #驱动加载 driverClassName=com.mysql.jdbc.Driver #注册驱动 url=jdbc:mysql://127.0.0.1:3306/student?characterEncoding=utf-8 #连接数据库的用户名 username=ro 阅读全文
posted @ 2022-01-03 21:27 kpwong 阅读(700) 评论(0) 推荐(0) 编辑
摘要: docker中 启动所有的容器命令 docker start $(docker ps -a | awk '{ print $1}' | tail -n +2) docker中 关闭所有的容器命令 docker stop $(docker ps -a | awk '{ print $1}' | tai 阅读全文
posted @ 2021-12-09 18:19 kpwong 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Watermaker如何触发窗口计算的? 窗口计算的触发条件为:1.窗口中有数据 2.Watermaker >= 窗口的结束时间Watermaker = 当前窗口的最大的事件时间 - 最大允许的延迟时间或乱序时间也就是说只要不断有数据来,就可以保证Watermaker水位线是会一直上升/变大的,不会 阅读全文
posted @ 2021-12-06 06:38 kpwong 阅读(332) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { Properties properties = new Properties(); //kafka集群,下面的配置都可以Prodcuer properties.put(ProducerConfig.BOOTSTRAP_ 阅读全文
posted @ 2021-12-05 21:50 kpwong 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 参考 连接 https://www.cnblogs.com/jpfss/p/10272066.html 核心代码: 子线程代码: public class ChildThread implements Callable<String> { public String call() throws Ex 阅读全文
posted @ 2021-09-27 11:03 kpwong 阅读(59) 评论(0) 推荐(0) 编辑
摘要: centos yum安装 官方停止更新了。需要换镜像 sed -i "s|enabled=1|enabled=0|g" /etc/yum/pluginconf.d/fastestmirror.conf mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.rep 阅读全文
posted @ 2021-09-02 09:35 kpwong 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 给你单链表的头指针 head 和两个整数 left 和 right ,其中 left <= right 。请你反转从位置 left 到位置 right 的链表节点,返回 反转后的链表 。 示例 1: 输入:head = [1,2,3,4,5], left = 2, right = 4 输出:[1,4 阅读全文
posted @ 2021-06-17 09:43 kpwong 阅读(46) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 23 下一页