From d75aa94767939d13b0f0d8a78aa5ee94fbacf142 Mon Sep 17 00:00:00 2001 From: nicksxs Date: Sun, 15 Jan 2023 23:53:54 +0800 Subject: [PATCH] Site updated: 2023-01-15 23:53:54 --- .../index.html | 4 +- .../index.html | 4 +- baidusitemap.xml | 40 +- leancloud_counter_security_urls.json | 2 +- search.xml | 20510 ++++++++-------- sitemap.xml | 394 +- tags/java/page/2/index.html | 2 +- 7 files changed, 10478 insertions(+), 10478 deletions(-) diff --git a/2020/06/26/聊一下-RocketMQ-的-Consumer/index.html b/2020/06/26/聊一下-RocketMQ-的-Consumer/index.html index 9311de69f5..fb87d52afe 100644 --- a/2020/06/26/聊一下-RocketMQ-的-Consumer/index.html +++ b/2020/06/26/聊一下-RocketMQ-的-Consumer/index.html @@ -1,4 +1,4 @@ -聊一下 RocketMQ 的 DefaultMQPushConsumer 源码 | Nicksxs's Blog

Nicksxs's Blog

What hurts more, the pain of hard work or the pain of regret?

聊一下 RocketMQ 的 DefaultMQPushConsumer 源码

首先看下官方的小 demo

public static void main(String[] args) throws InterruptedException, MQClientException {
+聊一下 RocketMQ 的 DefaultMQPushConsumer 源码 | Nicksxs's Blog

Nicksxs's Blog

What hurts more, the pain of hard work or the pain of regret?

聊一下 RocketMQ 的 DefaultMQPushConsumer 源码

首先看下官方的小 demo

public static void main(String[] args) throws InterruptedException, MQClientException {
 
         /*
          * Instantiate with specified consumer group name.
@@ -737,4 +737,4 @@
                 throw new RemotingTimeoutException(info);
             }
         }
-    }
0%
\ No newline at end of file + }
0%
\ No newline at end of file diff --git a/2020/07/05/聊一下-RocketMQ-的-NameServer-源码/index.html b/2020/07/05/聊一下-RocketMQ-的-NameServer-源码/index.html index 665d57c98f..9045c07363 100644 --- a/2020/07/05/聊一下-RocketMQ-的-NameServer-源码/index.html +++ b/2020/07/05/聊一下-RocketMQ-的-NameServer-源码/index.html @@ -1,4 +1,4 @@ -聊一下 RocketMQ 的 NameServer 源码 | Nicksxs's Blog

Nicksxs's Blog

What hurts more, the pain of hard work or the pain of regret?

聊一下 RocketMQ 的 NameServer 源码

前面介绍了,nameserver相当于dubbo的注册中心,用与管理broker,broker会在启动的时候注册到nameserver,并且会发送心跳给namaserver,nameserver负责保存活跃的broker,包括master和slave,同时保存topic和topic下的队列,以及filter列表,然后为producer和consumer的请求提供服务。

启动过程

public static void main(String[] args) {
+聊一下 RocketMQ 的 NameServer 源码 | Nicksxs's Blog

Nicksxs's Blog

What hurts more, the pain of hard work or the pain of regret?

聊一下 RocketMQ 的 NameServer 源码

前面介绍了,nameserver相当于dubbo的注册中心,用与管理broker,broker会在启动的时候注册到nameserver,并且会发送心跳给namaserver,nameserver负责保存活跃的broker,包括master和slave,同时保存topic和topic下的队列,以及filter列表,然后为producer和consumer的请求提供服务。

启动过程

public static void main(String[] args) {
         main0(args);
     }
 
@@ -563,4 +563,4 @@
         response.setRemark("No topic route info in name server for the topic: " + requestHeader.getTopic()
             + FAQUrl.suggestTodo(FAQUrl.APPLY_TOPIC_URL));
         return response;
-    }

首先调用org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#pickupTopicRouteDataorg.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#topicQueueTable获取到org.apache.rocketmq.common.protocol.route.QueueData这里面存了 brokerName,再通过org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#brokerAddrTable里获取到 broker 的地址信息等,然后再获取 orderMessage 的配置。

简要分析了下 RocketMQ 的 NameServer 的代码,比较粗粒度。

0%
\ No newline at end of file + }

首先调用org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#pickupTopicRouteDataorg.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#topicQueueTable获取到org.apache.rocketmq.common.protocol.route.QueueData这里面存了 brokerName,再通过org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#brokerAddrTable里获取到 broker 的地址信息等,然后再获取 orderMessage 的配置。

简要分析了下 RocketMQ 的 NameServer 的代码,比较粗粒度。

0%
\ No newline at end of file diff --git a/baidusitemap.xml b/baidusitemap.xml index ca6568cc04..17b6c84fe1 100644 --- a/baidusitemap.xml +++ b/baidusitemap.xml @@ -168,6 +168,10 @@ https://nicksxs.me/2021/01/10/Leetcode-160-%E7%9B%B8%E4%BA%A4%E9%93%BE%E8%A1%A8-intersection-of-two-linked-lists-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ 2022-06-11 + + https://nicksxs.me/2021/07/04/Leetcode-42-%E6%8E%A5%E9%9B%A8%E6%B0%B4-Trapping-Rain-Water-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + 2022-06-11 + https://nicksxs.me/2021/05/01/Leetcode-48-%E6%97%8B%E8%BD%AC%E5%9B%BE%E5%83%8F-Rotate-Image-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ 2022-06-11 @@ -185,11 +189,7 @@ 2022-06-11 - https://nicksxs.me/2021/07/04/Leetcode-42-%E6%8E%A5%E9%9B%A8%E6%B0%B4-Trapping-Rain-Water-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 2022-06-11 - - - https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%BA%8C/ 2022-06-11 @@ -197,7 +197,7 @@ 2022-06-11 - https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%BA%8C/ + https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ 2022-06-11 @@ -220,10 +220,6 @@ https://nicksxs.me/2022/02/06/%E5%88%86%E4%BA%AB%E8%AE%B0%E5%BD%95%E4%B8%80%E4%B8%8B%E4%B8%80%E4%B8%AA-git-%E6%93%8D%E4%BD%9C%E6%96%B9%E6%B3%95/ 2022-06-11 - - https://nicksxs.me/2021/09/04/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8/ - 2022-06-11 - https://nicksxs.me/2021/10/03/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E4%B8%89/ 2022-06-11 @@ -253,19 +249,19 @@ 2022-06-11 - https://nicksxs.me/2021/03/28/%E8%81%8A%E8%81%8A-Linux-%E4%B8%8B%E7%9A%84-top-%E5%91%BD%E4%BB%A4/ + https://nicksxs.me/2021/06/13/%E8%81%8A%E8%81%8A-Java-%E7%9A%84%E7%B1%BB%E5%8A%A0%E8%BD%BD%E6%9C%BA%E5%88%B6%E4%BA%8C/ 2022-06-11 - https://nicksxs.me/2021/06/13/%E8%81%8A%E8%81%8A-Java-%E7%9A%84%E7%B1%BB%E5%8A%A0%E8%BD%BD%E6%9C%BA%E5%88%B6%E4%BA%8C/ + https://nicksxs.me/2021/03/28/%E8%81%8A%E8%81%8A-Linux-%E4%B8%8B%E7%9A%84-top-%E5%91%BD%E4%BB%A4/ 2022-06-11 - https://nicksxs.me/2022/01/09/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E5%88%86%E5%BA%93%E5%88%86%E8%A1%A8%E4%B8%8B%E7%9A%84%E5%88%86%E9%A1%B5%E6%96%B9%E6%A1%88/ + https://nicksxs.me/2020/08/02/%E8%81%8A%E8%81%8A-Java-%E8%87%AA%E5%B8%A6%E7%9A%84%E9%82%A3%E4%BA%9B%E9%80%86%E5%A4%A9%E5%B7%A5%E5%85%B7/ 2022-06-11 - https://nicksxs.me/2021/12/26/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E5%8E%9F%E7%90%86%E5%88%9D%E7%AF%87/ + https://nicksxs.me/2022/01/09/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E5%88%86%E5%BA%93%E5%88%86%E8%A1%A8%E4%B8%8B%E7%9A%84%E5%88%86%E9%A1%B5%E6%96%B9%E6%A1%88/ 2022-06-11 @@ -273,11 +269,11 @@ 2022-06-11 - https://nicksxs.me/2021/04/04/%E8%81%8A%E8%81%8A-dubbo-%E7%9A%84%E7%BA%BF%E7%A8%8B%E6%B1%A0/ + https://nicksxs.me/2021/12/26/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E5%8E%9F%E7%90%86%E5%88%9D%E7%AF%87/ 2022-06-11 - https://nicksxs.me/2020/08/02/%E8%81%8A%E8%81%8A-Java-%E8%87%AA%E5%B8%A6%E7%9A%84%E9%82%A3%E4%BA%9B%E9%80%86%E5%A4%A9%E5%B7%A5%E5%85%B7/ + https://nicksxs.me/2021/04/04/%E8%81%8A%E8%81%8A-dubbo-%E7%9A%84%E7%BA%BF%E7%A8%8B%E6%B1%A0/ 2022-06-11 @@ -292,6 +288,10 @@ https://nicksxs.me/2021/12/05/%E8%81%8A%E8%81%8A%E9%83%A8%E5%88%86%E5%85%AC%E4%BA%A4%E8%BD%A6%E7%9A%84%E8%AE%BE%E8%AE%A1bug/ 2022-06-11 + + https://nicksxs.me/2021/09/04/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8/ + 2022-06-11 + https://nicksxs.me/2021/10/07/Leetcode-021-%E5%90%88%E5%B9%B6%E4%B8%A4%E4%B8%AA%E6%9C%89%E5%BA%8F%E9%93%BE%E8%A1%A8-Merge-Two-Sorted-Lists-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ 2022-06-11 @@ -709,11 +709,11 @@ 2020-01-12 - https://nicksxs.me/2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ + https://nicksxs.me/2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/ 2020-01-12 - https://nicksxs.me/2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/ + https://nicksxs.me/2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ 2020-01-12 @@ -737,11 +737,11 @@ 2020-01-12 - https://nicksxs.me/2014/12/23/my-new-post/ + https://nicksxs.me/2015/06/22/invert-binary-tree/ 2020-01-12 - https://nicksxs.me/2015/06/22/invert-binary-tree/ + https://nicksxs.me/2014/12/23/my-new-post/ 2020-01-12 diff --git a/leancloud_counter_security_urls.json b/leancloud_counter_security_urls.json index 3166a933a9..0e0be60503 100644 --- a/leancloud_counter_security_urls.json +++ b/leancloud_counter_security_urls.json @@ -1 +1 @@ -[{"title":"村上春树《1Q84》读后感","url":"/2019/12/18/1Q84读后感/"},{"title":"2019年终总结","url":"/2020/02/01/2019年终总结/"},{"title":"2020 年终总结","url":"/2021/03/31/2020-年终总结/"},{"title":"2020年中总结","url":"/2020/07/11/2020年中总结/"},{"title":"2021 年中总结","url":"/2021/07/18/2021-年中总结/"},{"title":"2021 年终总结","url":"/2022/01/22/2021-年终总结/"},{"title":"2022 年终总结","url":"/2023/01/15/2022-年终总结/"},{"title":"AQS篇二 之 Condition 浅析笔记","url":"/2021/02/21/AQS-之-Condition-浅析笔记/"},{"title":"34_Search_for_a_Range","url":"/2016/08/14/34-Search-for-a-Range/"},{"title":"AQS篇一","url":"/2021/02/14/AQS篇一/"},{"title":"AbstractQueuedSynchronizer","url":"/2019/09/23/AbstractQueuedSynchronizer/"},{"title":"add-two-number","url":"/2015/04/14/Add-Two-Number/"},{"title":"Apollo 如何获取当前环境","url":"/2022/09/04/Apollo-如何获取当前环境/"},{"title":"Apollo 的 value 注解是怎么自动更新的","url":"/2020/11/01/Apollo-的-value-注解是怎么自动更新的/"},{"title":"Clone Graph Part I","url":"/2014/12/30/Clone-Graph-Part-I/"},{"title":"Comparator使用小记","url":"/2020/04/05/Comparator使用小记/"},{"title":"Apollo 客户端启动过程分析","url":"/2022/09/18/Apollo-客户端启动过程分析/"},{"title":"Disruptor 系列一","url":"/2022/02/13/Disruptor-系列一/"},{"title":"Disruptor 系列二","url":"/2022/02/27/Disruptor-系列二/"},{"title":"Dubbo 使用的几个记忆点","url":"/2022/04/02/Dubbo-使用的几个记忆点/"},{"title":"Disruptor 系列三","url":"/2022/09/25/Disruptor-系列三/"},{"title":"Filter, Interceptor, Aop, 啥, 啥, 啥? 这些都是啥?","url":"/2020/08/22/Filter-Intercepter-Aop-啥-啥-啥-这些都是啥/"},{"title":"G1收集器概述","url":"/2020/02/09/G1收集器概述/"},{"title":"JVM源码分析之G1垃圾收集器分析一","url":"/2019/12/07/JVM-G1-Part-1/"},{"title":"Leetcode 021 合并两个有序链表 ( Merge Two Sorted Lists ) 题解分析","url":"/2021/10/07/Leetcode-021-合并两个有序链表-Merge-Two-Sorted-Lists-题解分析/"},{"title":"Leetcode 028 实现 strStr() ( Implement strStr() ) 题解分析","url":"/2021/10/31/Leetcode-028-实现-strStr-Implement-strStr-题解分析/"},{"title":"Leetcode 053 最大子序和 ( Maximum Subarray ) 题解分析","url":"/2021/11/28/Leetcode-053-最大子序和-Maximum-Subarray-题解分析/"},{"title":"Leetcode 104 二叉树的最大深度(Maximum Depth of Binary Tree) 题解分析","url":"/2020/10/25/Leetcode-104-二叉树的最大深度-Maximum-Depth-of-Binary-Tree-题解分析/"},{"title":"Leetcode 105 从前序与中序遍历序列构造二叉树(Construct Binary Tree from Preorder and Inorder Traversal) 题解分析","url":"/2020/12/13/Leetcode-105-从前序与中序遍历序列构造二叉树-Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal-题解分析/"},{"title":"Leetcode 1115 交替打印 FooBar ( Print FooBar Alternately *Medium* ) 题解分析","url":"/2022/05/01/Leetcode-1115-交替打印-FooBar-Print-FooBar-Alternately-Medium-题解分析/"},{"title":"Leetcode 121 买卖股票的最佳时机(Best Time to Buy and Sell Stock) 题解分析","url":"/2021/03/14/Leetcode-121-买卖股票的最佳时机-Best-Time-to-Buy-and-Sell-Stock-题解分析/"},{"title":"Leetcode 124 二叉树中的最大路径和(Binary Tree Maximum Path Sum) 题解分析","url":"/2021/01/24/Leetcode-124-二叉树中的最大路径和-Binary-Tree-Maximum-Path-Sum-题解分析/"},{"title":"Leetcode 155 最小栈(Min Stack) 题解分析","url":"/2020/12/06/Leetcode-155-最小栈-Min-Stack-题解分析/"},{"title":"Leetcode 1260 二维网格迁移 ( Shift 2D Grid *Easy* ) 题解分析","url":"/2022/07/22/Leetcode-1260-二维网格迁移-Shift-2D-Grid-Easy-题解分析/"},{"title":"Leetcode 16 最接近的三数之和 ( 3Sum Closest *Medium* ) 题解分析","url":"/2022/08/06/Leetcode-16-最接近的三数之和-3Sum-Closest-Medium-题解分析/"},{"title":"Leetcode 160 相交链表(intersection-of-two-linked-lists) 题解分析","url":"/2021/01/10/Leetcode-160-相交链表-intersection-of-two-linked-lists-题解分析/"},{"title":"Leetcode 1862 向下取整数对和 ( Sum of Floored Pairs *Hard* ) 题解分析","url":"/2022/09/11/Leetcode-1862-向下取整数对和-Sum-of-Floored-Pairs-Hard-题解分析/"},{"title":"Leetcode 2 Add Two Numbers 题解分析","url":"/2020/10/11/Leetcode-2-Add-Two-Numbers-题解分析/"},{"title":"Leetcode 20 有效的括号 ( Valid Parentheses *Easy* ) 题解分析","url":"/2022/07/02/Leetcode-20-有效的括号-Valid-Parentheses-Easy-题解分析/"},{"title":"Leetcode 234 回文链表(Palindrome Linked List) 题解分析","url":"/2020/11/15/Leetcode-234-回文联表-Palindrome-Linked-List-题解分析/"},{"title":"Leetcode 236 二叉树的最近公共祖先(Lowest Common Ancestor of a Binary Tree) 题解分析","url":"/2021/05/23/Leetcode-236-二叉树的最近公共祖先-Lowest-Common-Ancestor-of-a-Binary-Tree-题解分析/"},{"title":"Leetcode 278 第一个错误的版本 ( First Bad Version *Easy* ) 题解分析","url":"/2022/08/14/Leetcode-278-第一个错误的版本-First-Bad-Version-Easy-题解分析/"},{"title":"Leetcode 3 Longest Substring Without Repeating Characters 题解分析","url":"/2020/09/20/Leetcode-3-Longest-Substring-Without-Repeating-Characters-题解分析/"},{"title":"Leetcode 349 两个数组的交集 ( Intersection of Two Arrays *Easy* ) 题解分析","url":"/2022/03/07/Leetcode-349-两个数组的交集-Intersection-of-Two-Arrays-Easy-题解分析/"},{"title":"Leetcode 4 寻找两个正序数组的中位数 ( Median of Two Sorted Arrays *Hard* ) 题解分析","url":"/2022/03/27/Leetcode-4-寻找两个正序数组的中位数-Median-of-Two-Sorted-Arrays-Hard-题解分析/"},{"title":"Leetcode 48 旋转图像(Rotate Image) 题解分析","url":"/2021/05/01/Leetcode-48-旋转图像-Rotate-Image-题解分析/"},{"title":"Leetcode 698 划分为k个相等的子集 ( Partition to K Equal Sum Subsets *Medium* ) 题解分析","url":"/2022/06/19/Leetcode-698-划分为k个相等的子集-Partition-to-K-Equal-Sum-Subsets-Medium-题解分析/"},{"title":"Leetcode 747 至少是其他数字两倍的最大数 ( Largest Number At Least Twice of Others *Easy* ) 题解分析","url":"/2022/10/02/Leetcode-747-至少是其他数字两倍的最大数-Largest-Number-At-Least-Twice-of-Others-Easy-题解分析/"},{"title":"Leetcode 83 删除排序链表中的重复元素 ( Remove Duplicates from Sorted List *Easy* ) 题解分析","url":"/2022/03/13/Leetcode-83-删除排序链表中的重复元素-Remove-Duplicates-from-Sorted-List-Easy-题解分析/"},{"title":"Leetcode 885 螺旋矩阵 III ( Spiral Matrix III *Medium* ) 题解分析","url":"/2022/08/23/Leetcode-885-螺旋矩阵-III-Spiral-Matrix-III-Medium-题解分析/"},{"title":"leetcode no.3","url":"/2015/04/15/Leetcode-No-3/"},{"title":"Linux 下 grep 命令的一点小技巧","url":"/2020/08/06/Linux-下-grep-命令的一点小技巧/"},{"title":"MFC 模态对话框","url":"/2014/12/24/MFC 模态对话框/"},{"title":"Maven实用小技巧","url":"/2020/02/16/Maven实用小技巧/"},{"title":"Number of 1 Bits","url":"/2015/03/11/Number-Of-1-Bits/"},{"title":"Redis_分布式锁","url":"/2019/12/10/Redis-Part-1/"},{"title":"Path Sum","url":"/2015/01/04/Path-Sum/"},{"title":"Reverse Bits","url":"/2015/03/11/Reverse-Bits/"},{"title":"Reverse Integer","url":"/2015/03/13/Reverse-Integer/"},{"title":"two sum","url":"/2015/01/14/Two-Sum/"},{"title":"ambari-summary","url":"/2017/05/09/ambari-summary/"},{"title":"binary-watch","url":"/2016/09/29/binary-watch/"},{"title":"docker-mysql-cluster","url":"/2016/08/14/docker-mysql-cluster/"},{"title":"docker比一般多一点的初学者介绍","url":"/2020/03/08/docker比一般多一点的初学者介绍/"},{"title":"docker比一般多一点的初学者介绍三","url":"/2020/03/21/docker比一般多一点的初学者介绍三/"},{"title":"docker比一般多一点的初学者介绍四","url":"/2022/12/25/docker比一般多一点的初学者介绍四/"},{"title":"docker比一般多一点的初学者介绍二","url":"/2020/03/15/docker比一般多一点的初学者介绍二/"},{"title":"dubbo 客户端配置的一个重要知识点","url":"/2022/06/11/dubbo-客户端配置的一个重要知识点/"},{"title":"docker使用中发现的echo命令的一个小技巧及其他","url":"/2020/03/29/echo命令的一个小技巧/"},{"title":"gogs使用webhook部署react单页应用","url":"/2020/02/22/gogs使用webhook部署react单页应用/"},{"title":"minimum-size-subarray-sum-209","url":"/2016/10/11/minimum-size-subarray-sum-209/"},{"title":"C++ 指针使用中的一个小问题","url":"/2014/12/23/my-new-post/"},{"title":"mybatis 的 foreach 使用的注意点","url":"/2022/07/09/mybatis-的-foreach-使用的注意点/"},{"title":"invert-binary-tree","url":"/2015/06/22/invert-binary-tree/"},{"title":"mybatis 的 $ 和 # 是有啥区别","url":"/2020/09/06/mybatis-的-和-是有啥区别/"},{"title":"mybatis 的缓存是怎么回事","url":"/2020/10/03/mybatis-的缓存是怎么回事/"},{"title":"mybatis系列-dataSource解析","url":"/2023/01/08/mybatis系列-dataSource解析/"},{"title":"Leetcode 42 接雨水 (Trapping Rain Water) 题解分析","url":"/2021/07/04/Leetcode-42-接雨水-Trapping-Rain-Water-题解分析/"},{"title":"mybatis系列-mybatis是如何初始化mapper的","url":"/2022/12/04/mybatis是如何初始化mapper的/"},{"title":"mybatis系列-typeAliases系统","url":"/2023/01/01/mybatis系列-typeAliases系统/"},{"title":"mybatis系列-入门篇","url":"/2022/11/27/mybatis系列-入门篇/"},{"title":"nginx 日志小记","url":"/2022/04/17/nginx-日志小记/"},{"title":"openresty","url":"/2019/06/18/openresty/"},{"title":"mybatis系列-第一条sql的细节","url":"/2022/12/11/mybatis系列-第一条sql的细节/"},{"title":"mybatis系列-第一条sql的更多细节","url":"/2022/12/18/mybatis系列-第一条sql的更多细节/"},{"title":"pcre-intro-and-a-simple-package","url":"/2015/01/16/pcre-intro-and-a-simple-package/"},{"title":"php-abstract-class-and-interface","url":"/2016/11/10/php-abstract-class-and-interface/"},{"title":"powershell 初体验二","url":"/2022/11/20/powershell-初体验二/"},{"title":"powershell 初体验","url":"/2022/11/13/powershell-初体验/"},{"title":"rabbitmq-tips","url":"/2017/04/25/rabbitmq-tips/"},{"title":"redis 的 rdb 和 COW 介绍","url":"/2021/08/15/redis-的-rdb-和-COW-介绍/"},{"title":"redis数据结构介绍-第一部分 SDS,链表,字典","url":"/2019/12/26/redis数据结构介绍/"},{"title":"redis数据结构介绍二-第二部分 跳表","url":"/2020/01/04/redis数据结构介绍二/"},{"title":"redis数据结构介绍三-第三部分 整数集合","url":"/2020/01/10/redis数据结构介绍三/"},{"title":"redis数据结构介绍五-第五部分 对象","url":"/2020/01/20/redis数据结构介绍五/"},{"title":"redis数据结构介绍六 快表","url":"/2020/01/22/redis数据结构介绍六/"},{"title":"redis数据结构介绍四-第四部分 压缩表","url":"/2020/01/19/redis数据结构介绍四/"},{"title":"redis淘汰策略复习","url":"/2021/08/01/redis淘汰策略复习/"},{"title":"redis系列介绍七-过期策略","url":"/2020/04/12/redis系列介绍七/"},{"title":"redis过期策略复习","url":"/2021/07/25/redis过期策略复习/"},{"title":"redis系列介绍八-淘汰策略","url":"/2020/04/18/redis系列介绍八/"},{"title":"rust学习笔记-所有权三之切片","url":"/2021/05/16/rust学习笔记-所有权三之切片/"},{"title":"rust学习笔记-所有权一","url":"/2021/04/18/rust学习笔记/"},{"title":"spark-little-tips","url":"/2017/03/28/spark-little-tips/"},{"title":"spring event 介绍","url":"/2022/01/30/spring-event-介绍/"},{"title":"summary-ranges-228","url":"/2016/10/12/summary-ranges-228/"},{"title":"rust学习笔记-所有权二","url":"/2021/04/18/rust学习笔记-所有权二/"},{"title":"swoole-websocket-test","url":"/2016/07/13/swoole-websocket-test/"},{"title":"wordpress 忘记密码的一种解决方法","url":"/2021/12/05/wordpress-忘记密码的一种解决方法/"},{"title":"《垃圾回收算法手册读书》笔记之整理算法","url":"/2021/03/07/《垃圾回收算法手册读书》笔记之整理算法/"},{"title":"《长安的荔枝》读后感","url":"/2022/07/17/《长安的荔枝》读后感/"},{"title":"一个 nginx 的简单记忆点","url":"/2022/08/21/一个-nginx-的简单记忆点/"},{"title":"上次的其他 外行聊国足","url":"/2022/03/06/上次的其他-外行聊国足/"},{"title":"介绍一下 RocketMQ","url":"/2020/06/21/介绍一下-RocketMQ/"},{"title":"介绍下最近比较实用的端口转发","url":"/2021/11/14/介绍下最近比较实用的端口转发/"},{"title":"从丁仲礼被美国制裁聊点啥","url":"/2020/12/20/从丁仲礼被美国制裁聊点啥/"},{"title":"从清华美院学姐聊聊我们身边的恶人","url":"/2020/11/29/从清华美院学姐聊聊我们身边的恶人/"},{"title":"关于公共交通再吐个槽","url":"/2021/03/21/关于公共交通再吐个槽/"},{"title":"关于读书打卡与分享","url":"/2021/02/07/关于读书打卡与分享/"},{"title":"周末我在老丈人家打了天小工","url":"/2020/08/16/周末我在老丈人家打了天小工/"},{"title":"分享记录一下一个 git 操作方法","url":"/2022/02/06/分享记录一下一个-git-操作方法/"},{"title":"分享记录一下一个 scp 操作方法","url":"/2022/02/06/分享记录一下一个-scp-操作方法/"},{"title":"在老丈人家的小工记三","url":"/2020/09/13/在老丈人家的小工记三/"},{"title":"在老丈人家的小工记四","url":"/2020/09/26/在老丈人家的小工记四/"},{"title":"在老丈人家的小工记五","url":"/2020/10/18/在老丈人家的小工记五/"},{"title":"寄生虫观后感","url":"/2020/03/01/寄生虫观后感/"},{"title":"屯菜惊魂记","url":"/2022/04/24/屯菜惊魂记/"},{"title":"我是如何走上跑步这条不归路的","url":"/2020/07/26/我是如何走上跑步这条不归路的/"},{"title":"搬运两个 StackOverflow 上的 Mysql 编码相关的问题解答","url":"/2022/01/16/搬运两个-StackOverflow-上的-Mysql-编码相关的问题解答/"},{"title":"是何原因竟让两人深夜奔袭十公里","url":"/2022/06/05/是何原因竟让两人深夜奔袭十公里/"},{"title":"给小电驴上牌","url":"/2022/03/20/给小电驴上牌/"},{"title":"看完了扫黑风暴,聊聊感想","url":"/2021/10/24/看完了扫黑风暴-聊聊感想/"},{"title":"聊一下 RocketMQ 的 DefaultMQPushConsumer 源码","url":"/2020/06/26/聊一下-RocketMQ-的-Consumer/"},{"title":"聊一下 RocketMQ 的消息存储之 MMAP","url":"/2021/09/04/聊一下-RocketMQ-的消息存储/"},{"title":"聊一下 RocketMQ 的消息存储三","url":"/2021/10/03/聊一下-RocketMQ-的消息存储三/"},{"title":"聊一下 RocketMQ 的消息存储二","url":"/2021/09/12/聊一下-RocketMQ-的消息存储二/"},{"title":"聊一下 RocketMQ 的顺序消息","url":"/2021/08/29/聊一下-RocketMQ-的顺序消息/"},{"title":"聊一下 RocketMQ 的消息存储四","url":"/2021/10/17/聊一下-RocketMQ-的消息存储四/"},{"title":"聊一下 SpringBoot 中使用的 cglib 作为动态代理中的一个注意点","url":"/2021/09/19/聊一下-SpringBoot-中使用的-cglib-作为动态代理中的一个注意点/"},{"title":"聊一下 SpringBoot 中动态切换数据源的方法","url":"/2021/09/26/聊一下-SpringBoot-中动态切换数据源的方法/"},{"title":"聊一下 SpringBoot 设置非 web 应用的方法","url":"/2022/07/31/聊一下-SpringBoot-设置非-web-应用的方法/"},{"title":"聊一下关于怎么陪伴学习","url":"/2022/11/06/聊一下关于怎么陪伴学习/"},{"title":"聊在东京奥运会闭幕式这天-二","url":"/2021/08/19/聊在东京奥运会闭幕式这天-二/"},{"title":"聊在东京奥运会闭幕式这天","url":"/2021/08/08/聊在东京奥运会闭幕式这天/"},{"title":"聊聊 Dubbo 的 SPI 续之自适应拓展","url":"/2020/06/06/聊聊-Dubbo-的-SPI-续之自适应拓展/"},{"title":"聊聊 Dubbo 的 SPI","url":"/2020/05/31/聊聊-Dubbo-的-SPI/"},{"title":"聊聊 Dubbo 的容错机制","url":"/2020/11/22/聊聊-Dubbo-的容错机制/"},{"title":"聊一下 RocketMQ 的 NameServer 源码","url":"/2020/07/05/聊一下-RocketMQ-的-NameServer-源码/"},{"title":"聊聊 Java 中绕不开的 Synchronized 关键字-二","url":"/2021/06/27/聊聊-Java-中绕不开的-Synchronized-关键字-二/"},{"title":"聊聊 Java 中绕不开的 Synchronized 关键字","url":"/2021/06/20/聊聊-Java-中绕不开的-Synchronized-关键字/"},{"title":"聊聊 Java 的 equals 和 hashCode 方法","url":"/2021/01/03/聊聊-Java-的-equals-和-hashCode-方法/"},{"title":"聊聊 Java 的类加载机制一","url":"/2020/11/08/聊聊-Java-的类加载机制/"},{"title":"聊聊 Linux 下的 top 命令","url":"/2021/03/28/聊聊-Linux-下的-top-命令/"},{"title":"聊聊 Java 的类加载机制二","url":"/2021/06/13/聊聊-Java-的类加载机制二/"},{"title":"聊聊 RocketMQ 的 Broker 源码","url":"/2020/07/19/聊聊-RocketMQ-的-Broker-源码/"},{"title":"聊聊 Sharding-Jdbc 分库分表下的分页方案","url":"/2022/01/09/聊聊-Sharding-Jdbc-分库分表下的分页方案/"},{"title":"聊聊 Sharding-Jdbc 的简单原理初篇","url":"/2021/12/26/聊聊-Sharding-Jdbc-的简单原理初篇/"},{"title":"聊聊 Sharding-Jdbc 的简单使用","url":"/2021/12/12/聊聊-Sharding-Jdbc-的简单使用/"},{"title":"聊聊 dubbo 的线程池","url":"/2021/04/04/聊聊-dubbo-的线程池/"},{"title":"聊聊 mysql 的 MVCC 续篇","url":"/2020/05/02/聊聊-mysql-的-MVCC-续篇/"},{"title":"聊聊 Java 自带的那些*逆天*工具","url":"/2020/08/02/聊聊-Java-自带的那些逆天工具/"},{"title":"聊聊 mysql 的 MVCC","url":"/2020/04/26/聊聊-mysql-的-MVCC/"},{"title":"聊聊 mysql 的 MVCC 续续篇之锁分析","url":"/2020/05/10/聊聊-mysql-的-MVCC-续续篇之加锁分析/"},{"title":"聊聊 mysql 索引的一些细节","url":"/2020/12/27/聊聊-mysql-索引的一些细节/"},{"title":"聊聊 redis 缓存的应用问题","url":"/2021/01/31/聊聊-redis-缓存的应用问题/"},{"title":"聊聊Java中的单例模式","url":"/2019/12/21/聊聊Java中的单例模式/"},{"title":"聊聊 SpringBoot 自动装配","url":"/2021/07/11/聊聊SpringBoot-自动装配/"},{"title":"聊聊一次 brew update 引发的血案","url":"/2020/06/13/聊聊一次-brew-update-引发的血案/"},{"title":"聊聊传说中的 ThreadLocal","url":"/2021/05/30/聊聊传说中的-ThreadLocal/"},{"title":"聊聊厦门旅游的好与不好","url":"/2021/04/11/聊聊厦门旅游的好与不好/"},{"title":"聊聊如何识别和意识到日常生活中的各类危险","url":"/2021/06/06/聊聊如何识别和意识到日常生活中的各类危险/"},{"title":"聊聊我刚学会的应用诊断方法","url":"/2020/05/22/聊聊我刚学会的应用诊断方法/"},{"title":"聊聊我理解的分布式事务","url":"/2020/05/17/聊聊我理解的分布式事务/"},{"title":"聊聊我的远程工作体验","url":"/2022/06/26/聊聊我的远程工作体验/"},{"title":"聊聊最近平淡的生活之又聊通勤","url":"/2021/11/07/聊聊最近平淡的生活/"},{"title":"聊聊最近平淡的生活之《花束般的恋爱》观后感","url":"/2021/12/31/聊聊最近平淡的生活之《花束般的恋爱》观后感/"},{"title":"聊聊最近平淡的生活之看《神探狄仁杰》","url":"/2021/12/19/聊聊最近平淡的生活之看《神探狄仁杰》/"},{"title":"聊聊最近平淡的生活之看看老剧","url":"/2021/11/21/聊聊最近平淡的生活之看看老剧/"},{"title":"聊聊给亲戚朋友的老电脑重装系统那些事儿","url":"/2021/05/09/聊聊给亲戚朋友的老电脑重装系统那些事儿/"},{"title":"聊聊那些加塞狗","url":"/2021/01/17/聊聊那些加塞狗/"},{"title":"聊聊部分公交车的设计bug","url":"/2021/12/05/聊聊部分公交车的设计bug/"},{"title":"聊聊这次换车牌及其他","url":"/2022/02/20/聊聊这次换车牌及其他/"},{"title":"记一个容器中 dubbo 注册的小知识点","url":"/2022/10/09/记一个容器中-dubbo-注册的小知识点/"},{"title":"记录下 Java Stream 的一些高效操作","url":"/2022/05/15/记录下-Java-Lambda-的一些高效操作/"},{"title":"记录下 phpunit 的入门使用方法之setUp和tearDown","url":"/2022/10/23/记录下-phpunit-的入门使用方法之setUp和tearDown/"},{"title":"记录下 redis 的一些使用方法","url":"/2022/10/30/记录下-redis-的一些使用方法/"},{"title":"记录下 phpunit 的入门使用方法","url":"/2022/10/16/记录下-phpunit-的入门使用方法/"},{"title":"记录下 zookeeper 集群迁移和易错点","url":"/2022/05/29/记录下-zookeeper-集群迁移/"},{"title":"这周末我又在老丈人家打了天小工","url":"/2020/08/30/这周末我又在老丈人家打了天小工/"},{"title":"重看了下《蛮荒记》说说感受","url":"/2021/10/10/重看了下《蛮荒记》说说感受/"},{"title":"闲聊下乘公交的用户体验","url":"/2021/02/28/闲聊下乘公交的用户体验/"},{"title":"闲话篇-也算碰到了为老不尊和坏人变老了的典型案例","url":"/2022/05/22/闲话篇-也算碰到了为老不尊和坏人变老了的典型案例/"},{"title":"闲话篇-路遇神逻辑骑车带娃爹","url":"/2022/05/08/闲话篇-路遇神逻辑骑车带娃爹/"},{"title":"难得的大扫除","url":"/2022/04/10/难得的大扫除/"}] \ No newline at end of file +[{"title":"村上春树《1Q84》读后感","url":"/2019/12/18/1Q84读后感/"},{"title":"2019年终总结","url":"/2020/02/01/2019年终总结/"},{"title":"2020 年终总结","url":"/2021/03/31/2020-年终总结/"},{"title":"2020年中总结","url":"/2020/07/11/2020年中总结/"},{"title":"2021 年中总结","url":"/2021/07/18/2021-年中总结/"},{"title":"2021 年终总结","url":"/2022/01/22/2021-年终总结/"},{"title":"2022 年终总结","url":"/2023/01/15/2022-年终总结/"},{"title":"34_Search_for_a_Range","url":"/2016/08/14/34-Search-for-a-Range/"},{"title":"AQS篇一","url":"/2021/02/14/AQS篇一/"},{"title":"AQS篇二 之 Condition 浅析笔记","url":"/2021/02/21/AQS-之-Condition-浅析笔记/"},{"title":"AbstractQueuedSynchronizer","url":"/2019/09/23/AbstractQueuedSynchronizer/"},{"title":"add-two-number","url":"/2015/04/14/Add-Two-Number/"},{"title":"Apollo 如何获取当前环境","url":"/2022/09/04/Apollo-如何获取当前环境/"},{"title":"Apollo 的 value 注解是怎么自动更新的","url":"/2020/11/01/Apollo-的-value-注解是怎么自动更新的/"},{"title":"Apollo 客户端启动过程分析","url":"/2022/09/18/Apollo-客户端启动过程分析/"},{"title":"Clone Graph Part I","url":"/2014/12/30/Clone-Graph-Part-I/"},{"title":"Comparator使用小记","url":"/2020/04/05/Comparator使用小记/"},{"title":"Disruptor 系列一","url":"/2022/02/13/Disruptor-系列一/"},{"title":"Disruptor 系列三","url":"/2022/09/25/Disruptor-系列三/"},{"title":"Disruptor 系列二","url":"/2022/02/27/Disruptor-系列二/"},{"title":"Dubbo 使用的几个记忆点","url":"/2022/04/02/Dubbo-使用的几个记忆点/"},{"title":"Filter, Interceptor, Aop, 啥, 啥, 啥? 这些都是啥?","url":"/2020/08/22/Filter-Intercepter-Aop-啥-啥-啥-这些都是啥/"},{"title":"G1收集器概述","url":"/2020/02/09/G1收集器概述/"},{"title":"Leetcode 021 合并两个有序链表 ( Merge Two Sorted Lists ) 题解分析","url":"/2021/10/07/Leetcode-021-合并两个有序链表-Merge-Two-Sorted-Lists-题解分析/"},{"title":"Leetcode 028 实现 strStr() ( Implement strStr() ) 题解分析","url":"/2021/10/31/Leetcode-028-实现-strStr-Implement-strStr-题解分析/"},{"title":"JVM源码分析之G1垃圾收集器分析一","url":"/2019/12/07/JVM-G1-Part-1/"},{"title":"Leetcode 053 最大子序和 ( Maximum Subarray ) 题解分析","url":"/2021/11/28/Leetcode-053-最大子序和-Maximum-Subarray-题解分析/"},{"title":"Leetcode 104 二叉树的最大深度(Maximum Depth of Binary Tree) 题解分析","url":"/2020/10/25/Leetcode-104-二叉树的最大深度-Maximum-Depth-of-Binary-Tree-题解分析/"},{"title":"Leetcode 105 从前序与中序遍历序列构造二叉树(Construct Binary Tree from Preorder and Inorder Traversal) 题解分析","url":"/2020/12/13/Leetcode-105-从前序与中序遍历序列构造二叉树-Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal-题解分析/"},{"title":"Leetcode 1115 交替打印 FooBar ( Print FooBar Alternately *Medium* ) 题解分析","url":"/2022/05/01/Leetcode-1115-交替打印-FooBar-Print-FooBar-Alternately-Medium-题解分析/"},{"title":"Leetcode 121 买卖股票的最佳时机(Best Time to Buy and Sell Stock) 题解分析","url":"/2021/03/14/Leetcode-121-买卖股票的最佳时机-Best-Time-to-Buy-and-Sell-Stock-题解分析/"},{"title":"Leetcode 124 二叉树中的最大路径和(Binary Tree Maximum Path Sum) 题解分析","url":"/2021/01/24/Leetcode-124-二叉树中的最大路径和-Binary-Tree-Maximum-Path-Sum-题解分析/"},{"title":"Leetcode 1260 二维网格迁移 ( Shift 2D Grid *Easy* ) 题解分析","url":"/2022/07/22/Leetcode-1260-二维网格迁移-Shift-2D-Grid-Easy-题解分析/"},{"title":"Leetcode 155 最小栈(Min Stack) 题解分析","url":"/2020/12/06/Leetcode-155-最小栈-Min-Stack-题解分析/"},{"title":"Leetcode 16 最接近的三数之和 ( 3Sum Closest *Medium* ) 题解分析","url":"/2022/08/06/Leetcode-16-最接近的三数之和-3Sum-Closest-Medium-题解分析/"},{"title":"Leetcode 160 相交链表(intersection-of-two-linked-lists) 题解分析","url":"/2021/01/10/Leetcode-160-相交链表-intersection-of-two-linked-lists-题解分析/"},{"title":"Leetcode 2 Add Two Numbers 题解分析","url":"/2020/10/11/Leetcode-2-Add-Two-Numbers-题解分析/"},{"title":"Leetcode 1862 向下取整数对和 ( Sum of Floored Pairs *Hard* ) 题解分析","url":"/2022/09/11/Leetcode-1862-向下取整数对和-Sum-of-Floored-Pairs-Hard-题解分析/"},{"title":"Leetcode 20 有效的括号 ( Valid Parentheses *Easy* ) 题解分析","url":"/2022/07/02/Leetcode-20-有效的括号-Valid-Parentheses-Easy-题解分析/"},{"title":"Leetcode 234 回文链表(Palindrome Linked List) 题解分析","url":"/2020/11/15/Leetcode-234-回文联表-Palindrome-Linked-List-题解分析/"},{"title":"Leetcode 278 第一个错误的版本 ( First Bad Version *Easy* ) 题解分析","url":"/2022/08/14/Leetcode-278-第一个错误的版本-First-Bad-Version-Easy-题解分析/"},{"title":"Leetcode 236 二叉树的最近公共祖先(Lowest Common Ancestor of a Binary Tree) 题解分析","url":"/2021/05/23/Leetcode-236-二叉树的最近公共祖先-Lowest-Common-Ancestor-of-a-Binary-Tree-题解分析/"},{"title":"Leetcode 3 Longest Substring Without Repeating Characters 题解分析","url":"/2020/09/20/Leetcode-3-Longest-Substring-Without-Repeating-Characters-题解分析/"},{"title":"Leetcode 349 两个数组的交集 ( Intersection of Two Arrays *Easy* ) 题解分析","url":"/2022/03/07/Leetcode-349-两个数组的交集-Intersection-of-Two-Arrays-Easy-题解分析/"},{"title":"Leetcode 4 寻找两个正序数组的中位数 ( Median of Two Sorted Arrays *Hard* ) 题解分析","url":"/2022/03/27/Leetcode-4-寻找两个正序数组的中位数-Median-of-Two-Sorted-Arrays-Hard-题解分析/"},{"title":"Leetcode 42 接雨水 (Trapping Rain Water) 题解分析","url":"/2021/07/04/Leetcode-42-接雨水-Trapping-Rain-Water-题解分析/"},{"title":"Leetcode 48 旋转图像(Rotate Image) 题解分析","url":"/2021/05/01/Leetcode-48-旋转图像-Rotate-Image-题解分析/"},{"title":"Leetcode 698 划分为k个相等的子集 ( Partition to K Equal Sum Subsets *Medium* ) 题解分析","url":"/2022/06/19/Leetcode-698-划分为k个相等的子集-Partition-to-K-Equal-Sum-Subsets-Medium-题解分析/"},{"title":"Leetcode 747 至少是其他数字两倍的最大数 ( Largest Number At Least Twice of Others *Easy* ) 题解分析","url":"/2022/10/02/Leetcode-747-至少是其他数字两倍的最大数-Largest-Number-At-Least-Twice-of-Others-Easy-题解分析/"},{"title":"Leetcode 83 删除排序链表中的重复元素 ( Remove Duplicates from Sorted List *Easy* ) 题解分析","url":"/2022/03/13/Leetcode-83-删除排序链表中的重复元素-Remove-Duplicates-from-Sorted-List-Easy-题解分析/"},{"title":"Leetcode 885 螺旋矩阵 III ( Spiral Matrix III *Medium* ) 题解分析","url":"/2022/08/23/Leetcode-885-螺旋矩阵-III-Spiral-Matrix-III-Medium-题解分析/"},{"title":"leetcode no.3","url":"/2015/04/15/Leetcode-No-3/"},{"title":"Linux 下 grep 命令的一点小技巧","url":"/2020/08/06/Linux-下-grep-命令的一点小技巧/"},{"title":"MFC 模态对话框","url":"/2014/12/24/MFC 模态对话框/"},{"title":"Maven实用小技巧","url":"/2020/02/16/Maven实用小技巧/"},{"title":"Number of 1 Bits","url":"/2015/03/11/Number-Of-1-Bits/"},{"title":"Path Sum","url":"/2015/01/04/Path-Sum/"},{"title":"Redis_分布式锁","url":"/2019/12/10/Redis-Part-1/"},{"title":"Reverse Bits","url":"/2015/03/11/Reverse-Bits/"},{"title":"Reverse Integer","url":"/2015/03/13/Reverse-Integer/"},{"title":"two sum","url":"/2015/01/14/Two-Sum/"},{"title":"ambari-summary","url":"/2017/05/09/ambari-summary/"},{"title":"binary-watch","url":"/2016/09/29/binary-watch/"},{"title":"docker-mysql-cluster","url":"/2016/08/14/docker-mysql-cluster/"},{"title":"docker比一般多一点的初学者介绍","url":"/2020/03/08/docker比一般多一点的初学者介绍/"},{"title":"docker比一般多一点的初学者介绍三","url":"/2020/03/21/docker比一般多一点的初学者介绍三/"},{"title":"docker比一般多一点的初学者介绍二","url":"/2020/03/15/docker比一般多一点的初学者介绍二/"},{"title":"docker比一般多一点的初学者介绍四","url":"/2022/12/25/docker比一般多一点的初学者介绍四/"},{"title":"dubbo 客户端配置的一个重要知识点","url":"/2022/06/11/dubbo-客户端配置的一个重要知识点/"},{"title":"docker使用中发现的echo命令的一个小技巧及其他","url":"/2020/03/29/echo命令的一个小技巧/"},{"title":"gogs使用webhook部署react单页应用","url":"/2020/02/22/gogs使用webhook部署react单页应用/"},{"title":"invert-binary-tree","url":"/2015/06/22/invert-binary-tree/"},{"title":"minimum-size-subarray-sum-209","url":"/2016/10/11/minimum-size-subarray-sum-209/"},{"title":"C++ 指针使用中的一个小问题","url":"/2014/12/23/my-new-post/"},{"title":"mybatis 的 foreach 使用的注意点","url":"/2022/07/09/mybatis-的-foreach-使用的注意点/"},{"title":"mybatis 的 $ 和 # 是有啥区别","url":"/2020/09/06/mybatis-的-和-是有啥区别/"},{"title":"mybatis 的缓存是怎么回事","url":"/2020/10/03/mybatis-的缓存是怎么回事/"},{"title":"mybatis系列-mybatis是如何初始化mapper的","url":"/2022/12/04/mybatis是如何初始化mapper的/"},{"title":"mybatis系列-dataSource解析","url":"/2023/01/08/mybatis系列-dataSource解析/"},{"title":"mybatis系列-typeAliases系统","url":"/2023/01/01/mybatis系列-typeAliases系统/"},{"title":"mybatis系列-入门篇","url":"/2022/11/27/mybatis系列-入门篇/"},{"title":"mybatis系列-第一条sql的更多细节","url":"/2022/12/18/mybatis系列-第一条sql的更多细节/"},{"title":"mybatis系列-第一条sql的细节","url":"/2022/12/11/mybatis系列-第一条sql的细节/"},{"title":"nginx 日志小记","url":"/2022/04/17/nginx-日志小记/"},{"title":"openresty","url":"/2019/06/18/openresty/"},{"title":"php-abstract-class-and-interface","url":"/2016/11/10/php-abstract-class-and-interface/"},{"title":"powershell 初体验","url":"/2022/11/13/powershell-初体验/"},{"title":"pcre-intro-and-a-simple-package","url":"/2015/01/16/pcre-intro-and-a-simple-package/"},{"title":"powershell 初体验二","url":"/2022/11/20/powershell-初体验二/"},{"title":"redis数据结构介绍-第一部分 SDS,链表,字典","url":"/2019/12/26/redis数据结构介绍/"},{"title":"rabbitmq-tips","url":"/2017/04/25/rabbitmq-tips/"},{"title":"redis 的 rdb 和 COW 介绍","url":"/2021/08/15/redis-的-rdb-和-COW-介绍/"},{"title":"redis数据结构介绍三-第三部分 整数集合","url":"/2020/01/10/redis数据结构介绍三/"},{"title":"redis数据结构介绍二-第二部分 跳表","url":"/2020/01/04/redis数据结构介绍二/"},{"title":"redis数据结构介绍五-第五部分 对象","url":"/2020/01/20/redis数据结构介绍五/"},{"title":"redis数据结构介绍六 快表","url":"/2020/01/22/redis数据结构介绍六/"},{"title":"redis数据结构介绍四-第四部分 压缩表","url":"/2020/01/19/redis数据结构介绍四/"},{"title":"redis淘汰策略复习","url":"/2021/08/01/redis淘汰策略复习/"},{"title":"redis系列介绍七-过期策略","url":"/2020/04/12/redis系列介绍七/"},{"title":"redis过期策略复习","url":"/2021/07/25/redis过期策略复习/"},{"title":"redis系列介绍八-淘汰策略","url":"/2020/04/18/redis系列介绍八/"},{"title":"rust学习笔记-所有权三之切片","url":"/2021/05/16/rust学习笔记-所有权三之切片/"},{"title":"rust学习笔记-所有权二","url":"/2021/04/18/rust学习笔记-所有权二/"},{"title":"spark-little-tips","url":"/2017/03/28/spark-little-tips/"},{"title":"spring event 介绍","url":"/2022/01/30/spring-event-介绍/"},{"title":"rust学习笔记-所有权一","url":"/2021/04/18/rust学习笔记/"},{"title":"summary-ranges-228","url":"/2016/10/12/summary-ranges-228/"},{"title":"swoole-websocket-test","url":"/2016/07/13/swoole-websocket-test/"},{"title":"wordpress 忘记密码的一种解决方法","url":"/2021/12/05/wordpress-忘记密码的一种解决方法/"},{"title":"《垃圾回收算法手册读书》笔记之整理算法","url":"/2021/03/07/《垃圾回收算法手册读书》笔记之整理算法/"},{"title":"一个 nginx 的简单记忆点","url":"/2022/08/21/一个-nginx-的简单记忆点/"},{"title":"《长安的荔枝》读后感","url":"/2022/07/17/《长安的荔枝》读后感/"},{"title":"上次的其他 外行聊国足","url":"/2022/03/06/上次的其他-外行聊国足/"},{"title":"介绍一下 RocketMQ","url":"/2020/06/21/介绍一下-RocketMQ/"},{"title":"介绍下最近比较实用的端口转发","url":"/2021/11/14/介绍下最近比较实用的端口转发/"},{"title":"从丁仲礼被美国制裁聊点啥","url":"/2020/12/20/从丁仲礼被美国制裁聊点啥/"},{"title":"从清华美院学姐聊聊我们身边的恶人","url":"/2020/11/29/从清华美院学姐聊聊我们身边的恶人/"},{"title":"关于公共交通再吐个槽","url":"/2021/03/21/关于公共交通再吐个槽/"},{"title":"关于读书打卡与分享","url":"/2021/02/07/关于读书打卡与分享/"},{"title":"分享记录一下一个 git 操作方法","url":"/2022/02/06/分享记录一下一个-git-操作方法/"},{"title":"分享记录一下一个 scp 操作方法","url":"/2022/02/06/分享记录一下一个-scp-操作方法/"},{"title":"在老丈人家的小工记三","url":"/2020/09/13/在老丈人家的小工记三/"},{"title":"在老丈人家的小工记五","url":"/2020/10/18/在老丈人家的小工记五/"},{"title":"在老丈人家的小工记四","url":"/2020/09/26/在老丈人家的小工记四/"},{"title":"寄生虫观后感","url":"/2020/03/01/寄生虫观后感/"},{"title":"屯菜惊魂记","url":"/2022/04/24/屯菜惊魂记/"},{"title":"我是如何走上跑步这条不归路的","url":"/2020/07/26/我是如何走上跑步这条不归路的/"},{"title":"搬运两个 StackOverflow 上的 Mysql 编码相关的问题解答","url":"/2022/01/16/搬运两个-StackOverflow-上的-Mysql-编码相关的问题解答/"},{"title":"周末我在老丈人家打了天小工","url":"/2020/08/16/周末我在老丈人家打了天小工/"},{"title":"看完了扫黑风暴,聊聊感想","url":"/2021/10/24/看完了扫黑风暴-聊聊感想/"},{"title":"给小电驴上牌","url":"/2022/03/20/给小电驴上牌/"},{"title":"聊一下 RocketMQ 的 NameServer 源码","url":"/2020/07/05/聊一下-RocketMQ-的-NameServer-源码/"},{"title":"聊一下 RocketMQ 的消息存储三","url":"/2021/10/03/聊一下-RocketMQ-的消息存储三/"},{"title":"聊一下 RocketMQ 的消息存储二","url":"/2021/09/12/聊一下-RocketMQ-的消息存储二/"},{"title":"聊一下 RocketMQ 的消息存储四","url":"/2021/10/17/聊一下-RocketMQ-的消息存储四/"},{"title":"聊一下 RocketMQ 的顺序消息","url":"/2021/08/29/聊一下-RocketMQ-的顺序消息/"},{"title":"聊一下 SpringBoot 中使用的 cglib 作为动态代理中的一个注意点","url":"/2021/09/19/聊一下-SpringBoot-中使用的-cglib-作为动态代理中的一个注意点/"},{"title":"聊一下 SpringBoot 中动态切换数据源的方法","url":"/2021/09/26/聊一下-SpringBoot-中动态切换数据源的方法/"},{"title":"聊一下 SpringBoot 设置非 web 应用的方法","url":"/2022/07/31/聊一下-SpringBoot-设置非-web-应用的方法/"},{"title":"聊一下关于怎么陪伴学习","url":"/2022/11/06/聊一下关于怎么陪伴学习/"},{"title":"聊在东京奥运会闭幕式这天-二","url":"/2021/08/19/聊在东京奥运会闭幕式这天-二/"},{"title":"聊在东京奥运会闭幕式这天","url":"/2021/08/08/聊在东京奥运会闭幕式这天/"},{"title":"聊聊 Dubbo 的 SPI 续之自适应拓展","url":"/2020/06/06/聊聊-Dubbo-的-SPI-续之自适应拓展/"},{"title":"聊聊 Dubbo 的 SPI","url":"/2020/05/31/聊聊-Dubbo-的-SPI/"},{"title":"聊聊 Dubbo 的容错机制","url":"/2020/11/22/聊聊-Dubbo-的容错机制/"},{"title":"聊聊 Java 中绕不开的 Synchronized 关键字-二","url":"/2021/06/27/聊聊-Java-中绕不开的-Synchronized-关键字-二/"},{"title":"聊聊 Java 中绕不开的 Synchronized 关键字","url":"/2021/06/20/聊聊-Java-中绕不开的-Synchronized-关键字/"},{"title":"聊聊 Java 的 equals 和 hashCode 方法","url":"/2021/01/03/聊聊-Java-的-equals-和-hashCode-方法/"},{"title":"聊聊 Java 的类加载机制一","url":"/2020/11/08/聊聊-Java-的类加载机制/"},{"title":"聊聊 Java 的类加载机制二","url":"/2021/06/13/聊聊-Java-的类加载机制二/"},{"title":"聊聊 Linux 下的 top 命令","url":"/2021/03/28/聊聊-Linux-下的-top-命令/"},{"title":"聊聊 Java 自带的那些*逆天*工具","url":"/2020/08/02/聊聊-Java-自带的那些逆天工具/"},{"title":"聊聊 RocketMQ 的 Broker 源码","url":"/2020/07/19/聊聊-RocketMQ-的-Broker-源码/"},{"title":"聊聊 Sharding-Jdbc 分库分表下的分页方案","url":"/2022/01/09/聊聊-Sharding-Jdbc-分库分表下的分页方案/"},{"title":"聊聊 Sharding-Jdbc 的简单使用","url":"/2021/12/12/聊聊-Sharding-Jdbc-的简单使用/"},{"title":"聊聊 Sharding-Jdbc 的简单原理初篇","url":"/2021/12/26/聊聊-Sharding-Jdbc-的简单原理初篇/"},{"title":"聊聊 dubbo 的线程池","url":"/2021/04/04/聊聊-dubbo-的线程池/"},{"title":"聊聊 mysql 的 MVCC 续篇","url":"/2020/05/02/聊聊-mysql-的-MVCC-续篇/"},{"title":"聊聊 mysql 的 MVCC","url":"/2020/04/26/聊聊-mysql-的-MVCC/"},{"title":"聊聊 mysql 的 MVCC 续续篇之锁分析","url":"/2020/05/10/聊聊-mysql-的-MVCC-续续篇之加锁分析/"},{"title":"聊聊 redis 缓存的应用问题","url":"/2021/01/31/聊聊-redis-缓存的应用问题/"},{"title":"聊聊 mysql 索引的一些细节","url":"/2020/12/27/聊聊-mysql-索引的一些细节/"},{"title":"聊聊Java中的单例模式","url":"/2019/12/21/聊聊Java中的单例模式/"},{"title":"聊聊 SpringBoot 自动装配","url":"/2021/07/11/聊聊SpringBoot-自动装配/"},{"title":"聊聊一次 brew update 引发的血案","url":"/2020/06/13/聊聊一次-brew-update-引发的血案/"},{"title":"聊聊传说中的 ThreadLocal","url":"/2021/05/30/聊聊传说中的-ThreadLocal/"},{"title":"聊聊厦门旅游的好与不好","url":"/2021/04/11/聊聊厦门旅游的好与不好/"},{"title":"聊聊我刚学会的应用诊断方法","url":"/2020/05/22/聊聊我刚学会的应用诊断方法/"},{"title":"聊聊如何识别和意识到日常生活中的各类危险","url":"/2021/06/06/聊聊如何识别和意识到日常生活中的各类危险/"},{"title":"聊聊我的远程工作体验","url":"/2022/06/26/聊聊我的远程工作体验/"},{"title":"聊聊最近平淡的生活之又聊通勤","url":"/2021/11/07/聊聊最近平淡的生活/"},{"title":"聊聊我理解的分布式事务","url":"/2020/05/17/聊聊我理解的分布式事务/"},{"title":"聊聊最近平淡的生活之《花束般的恋爱》观后感","url":"/2021/12/31/聊聊最近平淡的生活之《花束般的恋爱》观后感/"},{"title":"聊聊最近平淡的生活之看《神探狄仁杰》","url":"/2021/12/19/聊聊最近平淡的生活之看《神探狄仁杰》/"},{"title":"聊聊最近平淡的生活之看看老剧","url":"/2021/11/21/聊聊最近平淡的生活之看看老剧/"},{"title":"聊聊给亲戚朋友的老电脑重装系统那些事儿","url":"/2021/05/09/聊聊给亲戚朋友的老电脑重装系统那些事儿/"},{"title":"聊聊这次换车牌及其他","url":"/2022/02/20/聊聊这次换车牌及其他/"},{"title":"聊聊部分公交车的设计bug","url":"/2021/12/05/聊聊部分公交车的设计bug/"},{"title":"聊聊那些加塞狗","url":"/2021/01/17/聊聊那些加塞狗/"},{"title":"记一个容器中 dubbo 注册的小知识点","url":"/2022/10/09/记一个容器中-dubbo-注册的小知识点/"},{"title":"记录下 Java Stream 的一些高效操作","url":"/2022/05/15/记录下-Java-Lambda-的一些高效操作/"},{"title":"记录下 phpunit 的入门使用方法","url":"/2022/10/16/记录下-phpunit-的入门使用方法/"},{"title":"记录下 phpunit 的入门使用方法之setUp和tearDown","url":"/2022/10/23/记录下-phpunit-的入门使用方法之setUp和tearDown/"},{"title":"记录下 redis 的一些使用方法","url":"/2022/10/30/记录下-redis-的一些使用方法/"},{"title":"记录下 zookeeper 集群迁移和易错点","url":"/2022/05/29/记录下-zookeeper-集群迁移/"},{"title":"这周末我又在老丈人家打了天小工","url":"/2020/08/30/这周末我又在老丈人家打了天小工/"},{"title":"重看了下《蛮荒记》说说感受","url":"/2021/10/10/重看了下《蛮荒记》说说感受/"},{"title":"闲聊下乘公交的用户体验","url":"/2021/02/28/闲聊下乘公交的用户体验/"},{"title":"闲话篇-也算碰到了为老不尊和坏人变老了的典型案例","url":"/2022/05/22/闲话篇-也算碰到了为老不尊和坏人变老了的典型案例/"},{"title":"闲话篇-路遇神逻辑骑车带娃爹","url":"/2022/05/08/闲话篇-路遇神逻辑骑车带娃爹/"},{"title":"难得的大扫除","url":"/2022/04/10/难得的大扫除/"},{"title":"聊一下 RocketMQ 的消息存储之 MMAP","url":"/2021/09/04/聊一下-RocketMQ-的消息存储/"},{"title":"聊一下 RocketMQ 的 DefaultMQPushConsumer 源码","url":"/2020/06/26/聊一下-RocketMQ-的-Consumer/"},{"title":"是何原因竟让两人深夜奔袭十公里","url":"/2022/06/05/是何原因竟让两人深夜奔袭十公里/"}] \ No newline at end of file diff --git a/search.xml b/search.xml index 06f386edab..ed2219d11b 100644 --- a/search.xml +++ b/search.xml @@ -150,59 +150,333 @@ - AQS篇二 之 Condition 浅析笔记 - /2021/02/21/AQS-%E4%B9%8B-Condition-%E6%B5%85%E6%9E%90%E7%AC%94%E8%AE%B0/ - Condition也是 AQS 中很重要的一块内容,可以先看段示例代码,这段代码应该来自于Doug Lea大大,可以在 javadoc 中的 condition 部分找到,其实大大原来写过基于 synchronized 实现的,后面我也贴下代码

-
import java.util.concurrent.locks.Condition;
-import java.util.concurrent.locks.Lock;
-import java.util.concurrent.locks.ReentrantLock;
+    34_Search_for_a_Range
+    /2016/08/14/34-Search-for-a-Range/
+    question

34. Search for a Range

Original Page

+

Given a sorted array of integers, find the starting and ending position of a given target value.

+

Your algorithm’s runtime complexity must be in the order of O(log n).

+

If the target is not found in the array, return [-1, -1].

+

For example,
Given [5, 7, 7, 8, 8, 10] and target value 8,
return [3, 4].

+

analysis

一开始就想到了二分查找,但是原来做二分查找的时候一般都是找到确定的那个数就完成了,
这里的情况比较特殊,需要找到整个区间,所以需要两遍查找,并且一个是找到小于target
的最大索引,一个是找到大于target的最大索引,代码参考leetcode discuss,这位仁
兄也做了详细的分析解释。

+

code

class Solution {
+public:
+    vector<int> searchRange(vector<int>& nums, int target) {
+        vector<int> ret(2, -1);
+        int i = 0, j = nums.size() - 1;
+        int mid;
+        while(i < j){
+            mid = (i + j) / 2;
+            if(nums[mid] < target) i = mid + 1;
+            else j = mid;
+        }
+        if(nums[i] != target) return ret;
+        else {
+            ret[0] = i;
+            if((i+1) < (nums.size() - 1) && nums[i+1] > target){
+                ret[1] = i;
+                return ret;
+            }
+        }   //一点小优化
+        j = nums.size() - 1;
+        while(i < j){
+            mid = (i + j) / 2 + 1;
+            if(nums[mid] > target) j = mid - 1;
+            else i = mid;
+        }
+        ret[1] = j;
+        return ret;
+    }
+};
]]>
+ + leetcode + + + leetcode + c++ + + + + AQS篇一 + /2021/02/14/AQS%E7%AF%87%E4%B8%80/ + 很多东西都是时看时新,而且时间长了也会忘,所以再来复习下,也会有一些新的角度看法这次来聊下AQS的内容,主要是这几个点,

+

第一个线程

第一个线程抢到锁了,此时state跟阻塞队列是怎么样的,其实这里是之前没理解对的地方

+
/**
+         * Fair version of tryAcquire.  Don't grant access unless
+         * recursive call or no waiters or is first.
+         */
+        protected final boolean tryAcquire(int acquires) {
+            final Thread current = Thread.currentThread();
+            int c = getState();
+            // 这里如果state还是0说明锁还空着
+            if (c == 0) {
+                // 因为是公平锁版本的,先去看下是否阻塞队列里有排着队的
+                if (!hasQueuedPredecessors() &&
+                    compareAndSetState(0, acquires)) {
+                    // 没有排队的,并且state使用cas设置成功的就标记当前占有锁的线程是我
+                    setExclusiveOwnerThread(current);
+                    // 然后其实就返回了,包括阻塞队列的head和tail节点和waitStatus都没有设置
+                    return true;
+                }
+            }
+            else if (current == getExclusiveOwnerThread()) {
+                int nextc = c + acquires;
+                if (nextc < 0)
+                    throw new Error("Maximum lock count exceeded");
+                setState(nextc);
+                return true;
+            }
+            // 这里就是第二个线程会返回false
+            return false;
+        }
+    }
-class BoundedBuffer { - final Lock lock = new ReentrantLock(); - // condition 依赖于 lock 来产生 - final Condition notFull = lock.newCondition(); - final Condition notEmpty = lock.newCondition(); +

第二个线程

当第二个线程进来的时候应该是怎么样,结合代码来看

+
/**
+     * Acquires in exclusive mode, ignoring interrupts.  Implemented
+     * by invoking at least once {@link #tryAcquire},
+     * returning on success.  Otherwise the thread is queued, possibly
+     * repeatedly blocking and unblocking, invoking {@link
+     * #tryAcquire} until success.  This method can be used
+     * to implement method {@link Lock#lock}.
+     *
+     * @param arg the acquire argument.  This value is conveyed to
+     *        {@link #tryAcquire} but is otherwise uninterpreted and
+     *        can represent anything you like.
+     */
+    public final void acquire(int arg) {
+        // 前面第一种情况是tryAcquire直接成功了,这个if判断第一个条件就是false,就不往下执行了
+        // 如果是第二个线程,第一个条件获取锁不成功,条件判断!tryAcquire(arg) == true,就会走
+        // acquireQueued(addWaiter(Node.EXCLUSIVE), arg)
+        if (!tryAcquire(arg) &&
+            acquireQueued(addWaiter(Node.EXCLUSIVE), arg))
+            selfInterrupt();
+    }
- // 对象池子,put 跟 take 的就是这里的 - final Object[] items = new Object[100]; - int putptr, takeptr, count; +

然后来看下addWaiter的逻辑

+
/**
+     * Creates and enqueues node for current thread and given mode.
+     *
+     * @param mode Node.EXCLUSIVE for exclusive, Node.SHARED for shared
+     * @return the new node
+     */
+    private Node addWaiter(Node mode) {
+        // 这里是包装成一个node
+        Node node = new Node(Thread.currentThread(), mode);
+        // Try the fast path of enq; backup to full enq on failure
+        // 最快的方式就是把当前线程的节点放在阻塞队列的最后
+        Node pred = tail;
+        // 只有当tail,也就是pred不为空的时候可以直接接上
+        if (pred != null) {
+            node.prev = pred;
+            // 如果这里cas成功了,就直接接上返回了
+            if (compareAndSetTail(pred, node)) {
+                pred.next = node;
+                return node;
+            }
+        }
+        // 不然就会继续走到这里
+        enq(node);
+        return node;
+    }
- // 生产 - public void put(Object x) throws InterruptedException { - // 这里也说明了,需要先拥有锁 - lock.lock(); - try { - while (count == items.length) - notFull.await(); // 队列已满,等待,直到 not full 才能继续生产 - items[putptr] = x; - if (++putptr == items.length) putptr = 0; - ++count; - notEmpty.signal(); // 生产成功,队列已经 not empty 了,发个通知出去 - } finally { - lock.unlock(); +

然后就是enq的逻辑了

+
/**
+     * Inserts node into queue, initializing if necessary. See picture above.
+     * @param node the node to insert
+     * @return node's predecessor
+     */
+    private Node enq(final Node node) {
+        for (;;) {
+            // 如果状态没变化的话,tail这时还是null的
+            Node t = tail;
+            if (t == null) { // Must initialize
+                // 这里就会初始化头结点,就是个空节点
+                if (compareAndSetHead(new Node()))
+                    // tail也赋值成head
+                    tail = head;
+            } else {
+                // 这里就设置tail了
+                node.prev = t;
+                if (compareAndSetTail(t, node)) {
+                    t.next = node;
+                    return t;
+                }
+            }
+        }
+    }
+ +

所以从这里可以看出来,其实head头结点不是个真实的带有线程的节点,并且不是在第一个线程进来的时候设置的

+

解锁

通过代码来看下

+
/**
+     * Attempts to release this lock.
+     *
+     * <p>If the current thread is the holder of this lock then the hold
+     * count is decremented.  If the hold count is now zero then the lock
+     * is released.  If the current thread is not the holder of this
+     * lock then {@link IllegalMonitorStateException} is thrown.
+     *
+     * @throws IllegalMonitorStateException if the current thread does not
+     *         hold this lock
+     */
+    public void unlock() {
+        // 释放锁
+        sync.release(1);
+    }
+/**
+     * Releases in exclusive mode.  Implemented by unblocking one or
+     * more threads if {@link #tryRelease} returns true.
+     * This method can be used to implement method {@link Lock#unlock}.
+     *
+     * @param arg the release argument.  This value is conveyed to
+     *        {@link #tryRelease} but is otherwise uninterpreted and
+     *        can represent anything you like.
+     * @return the value returned from {@link #tryRelease}
+     */
+    public final boolean release(int arg) {
+        // 尝试去释放
+        if (tryRelease(arg)) {
+            Node h = head;
+            if (h != null && h.waitStatus != 0)
+                unparkSuccessor(h);
+            return true;
         }
+        return false;
     }
+protected final boolean tryRelease(int releases) {
+            int c = getState() - releases;
+            if (Thread.currentThread() != getExclusiveOwnerThread())
+                throw new IllegalMonitorStateException();
+            boolean free = false;
+    		// 判断是否完全释放锁,因为可重入
+            if (c == 0) {
+                free = true;
+                setExclusiveOwnerThread(null);
+            }
+            setState(c);
+            return free;
+        }
+// 这段代码和上面的一致,只是为了顺序性,又拷下来看下
 
-    // 消费
-    public Object take() throws InterruptedException {
-        lock.lock();
-        try {
-            while (count == 0)
-                notEmpty.await(); // 队列为空,等待,直到队列 not empty,才能继续消费
-            Object x = items[takeptr];
-            if (++takeptr == items.length) takeptr = 0;
-            --count;
-            notFull.signal(); // 被我消费掉一个,队列 not full 了,发个通知出去
-            return x;
-        } finally {
-            lock.unlock();
+public final boolean release(int arg) {
+        // 尝试去释放,如果是完全释放,返回的就是true,否则是false
+        if (tryRelease(arg)) {
+            Node h = head;
+            // 这里判断头结点是否为空以及waitStatus的状态,前面说了head节点其实是
+            // 在第二个线程进来的时候初始化的,如果是空的话说明没后续节点,并且waitStatus
+            // 也表示了后续的等待状态
+            if (h != null && h.waitStatus != 0)
+                unparkSuccessor(h);
+            return true;
         }
+        return false;
     }
-}
-

介绍下 Condition 的结构

-
public class ConditionObject implements Condition, java.io.Serializable {
-        private static final long serialVersionUID = 1173984872572414699L;
+/**
+     * Wakes up node's successor, if one exists.
+     *
+     * @param node the node
+     */
+// 唤醒后继节点
+    private void unparkSuccessor(Node node) {
+        /*
+         * If status is negative (i.e., possibly needing signal) try
+         * to clear in anticipation of signalling.  It is OK if this
+         * fails or if status is changed by waiting thread.
+         */
+        int ws = node.waitStatus;
+        if (ws < 0)
+            compareAndSetWaitStatus(node, ws, 0);
+
+        /*
+         * Thread to unpark is held in successor, which is normally
+         * just the next node.  But if cancelled or apparently null,
+         * traverse backwards from tail to find the actual
+         * non-cancelled successor.
+         */
+        Node s = node.next;
+        // 如果后继节点是空或者当前节点取消等待了
+        if (s == null || s.waitStatus > 0) {
+            s = null;
+            // 从后往前找,找到非取消的节点,注意这里不是找到就退出,而是一直找到头
+            // 所以不必担心中间有取消的
+            for (Node t = tail; t != null && t != node; t = t.prev)
+                if (t.waitStatus <= 0)
+                    s = t;
+        }
+        if (s != null)
+            // 将其唤醒
+            LockSupport.unpark(s.thread);
+    }
+ + + + +]]>
+ + Java + 并发 + + + java + 并发 + j.u.c + aqs + +
+ + AQS篇二 之 Condition 浅析笔记 + /2021/02/21/AQS-%E4%B9%8B-Condition-%E6%B5%85%E6%9E%90%E7%AC%94%E8%AE%B0/ + Condition也是 AQS 中很重要的一块内容,可以先看段示例代码,这段代码应该来自于Doug Lea大大,可以在 javadoc 中的 condition 部分找到,其实大大原来写过基于 synchronized 实现的,后面我也贴下代码

+
import java.util.concurrent.locks.Condition;
+import java.util.concurrent.locks.Lock;
+import java.util.concurrent.locks.ReentrantLock;
+
+class BoundedBuffer {
+    final Lock lock = new ReentrantLock();
+    // condition 依赖于 lock 来产生
+    final Condition notFull = lock.newCondition();
+    final Condition notEmpty = lock.newCondition();
+
+    // 对象池子,put 跟 take 的就是这里的
+    final Object[] items = new Object[100];
+    int putptr, takeptr, count;
+
+    // 生产
+    public void put(Object x) throws InterruptedException {
+        // 这里也说明了,需要先拥有锁
+        lock.lock();
+        try {
+            while (count == items.length)
+                notFull.await();  // 队列已满,等待,直到 not full 才能继续生产
+            items[putptr] = x;
+            if (++putptr == items.length) putptr = 0;
+            ++count;
+            notEmpty.signal(); // 生产成功,队列已经 not empty 了,发个通知出去
+        } finally {
+            lock.unlock();
+        }
+    }
+
+    // 消费
+    public Object take() throws InterruptedException {
+        lock.lock();
+        try {
+            while (count == 0)
+                notEmpty.await(); // 队列为空,等待,直到队列 not empty,才能继续消费
+            Object x = items[takeptr];
+            if (++takeptr == items.length) takeptr = 0;
+            --count;
+            notFull.signal(); // 被我消费掉一个,队列 not full 了,发个通知出去
+            return x;
+        } finally {
+            lock.unlock();
+        }
+    }
+}
+ +

介绍下 Condition 的结构

+
public class ConditionObject implements Condition, java.io.Serializable {
+        private static final long serialVersionUID = 1173984872572414699L;
         /** First node of condition queue. */
         private transient Node firstWaiter;
         /** Last node of condition queue. */
@@ -647,343 +921,69 @@
       
   
   
-    34_Search_for_a_Range
-    /2016/08/14/34-Search-for-a-Range/
-    question

34. Search for a Range

Original Page

-

Given a sorted array of integers, find the starting and ending position of a given target value.

-

Your algorithm’s runtime complexity must be in the order of O(log n).

-

If the target is not found in the array, return [-1, -1].

-

For example,
Given [5, 7, 7, 8, 8, 10] and target value 8,
return [3, 4].

-

analysis

一开始就想到了二分查找,但是原来做二分查找的时候一般都是找到确定的那个数就完成了,
这里的情况比较特殊,需要找到整个区间,所以需要两遍查找,并且一个是找到小于target
的最大索引,一个是找到大于target的最大索引,代码参考leetcode discuss,这位仁
兄也做了详细的分析解释。

-

code

class Solution {
-public:
-    vector<int> searchRange(vector<int>& nums, int target) {
-        vector<int> ret(2, -1);
-        int i = 0, j = nums.size() - 1;
-        int mid;
-        while(i < j){
-            mid = (i + j) / 2;
-            if(nums[mid] < target) i = mid + 1;
-            else j = mid;
-        }
-        if(nums[i] != target) return ret;
-        else {
-            ret[0] = i;
-            if((i+1) < (nums.size() - 1) && nums[i+1] > target){
-                ret[1] = i;
-                return ret;
-            }
-        }   //一点小优化
-        j = nums.size() - 1;
-        while(i < j){
-            mid = (i + j) / 2 + 1;
-            if(nums[mid] > target) j = mid - 1;
-            else i = mid;
-        }
-        ret[1] = j;
-        return ret;
-    }
-};
]]>
+ AbstractQueuedSynchronizer + /2019/09/23/AbstractQueuedSynchronizer/ + 最近看了大神的 AQS 的文章,之前总是断断续续地看一点,每次都知难而退,下次看又从头开始,昨天总算硬着头皮看完了第一部分
首先 AQS 只要有这些属性

+
// 头结点,你直接把它当做 当前持有锁的线程 可能是最好理解的
+private transient volatile Node head;
+
+// 阻塞的尾节点,每个新的节点进来,都插入到最后,也就形成了一个链表
+private transient volatile Node tail;
+
+// 这个是最重要的,代表当前锁的状态,0代表没有被占用,大于 0 代表有线程持有当前锁
+// 这个值可以大于 1,是因为锁可以重入,每次重入都加上 1
+private volatile int state;
+
+// 代表当前持有独占锁的线程,举个最重要的使用例子,因为锁可以重入
+// reentrantLock.lock()可以嵌套调用多次,所以每次用这个来判断当前线程是否已经拥有了锁
+// if (currentThread == getExclusiveOwnerThread()) {state++}
+private transient Thread exclusiveOwnerThread; //继承自AbstractOwnableSynchronizer
+

大概了解了 aqs 底层的双向等待队列,
结构是这样的

每个 node 里面主要是的代码结构也比较简单

+
static final class Node {
+    // 标识节点当前在共享模式下
+    static final Node SHARED = new Node();
+    // 标识节点当前在独占模式下
+    static final Node EXCLUSIVE = null;
+
+    // ======== 下面的几个int常量是给waitStatus用的 ===========
+    /** waitStatus value to indicate thread has cancelled */
+    // 代码此线程取消了争抢这个锁
+    static final int CANCELLED =  1;
+    /** waitStatus value to indicate successor's thread needs unparking */
+    // 官方的描述是,其表示当前node的后继节点对应的线程需要被唤醒
+    static final int SIGNAL    = -1;
+    /** waitStatus value to indicate thread is waiting on condition */
+    // 本文不分析condition,所以略过吧,下一篇文章会介绍这个
+    static final int CONDITION = -2;
+    /**
+     * waitStatus value to indicate the next acquireShared should
+     * unconditionally propagate
+     */
+    // 同样的不分析,略过吧
+    static final int PROPAGATE = -3;
+    // =====================================================
+
+
+    // 取值为上面的1、-1、-2、-3,或者0(以后会讲到)
+    // 这么理解,暂时只需要知道如果这个值 大于0 代表此线程取消了等待,
+    //    ps: 半天抢不到锁,不抢了,ReentrantLock是可以指定timeouot的。。。
+    volatile int waitStatus;
+    // 前驱节点的引用
+    volatile Node prev;
+    // 后继节点的引用
+    volatile Node next;
+    // 这个就是线程本尊
+    volatile Thread thread;
+
+}
+

其实可以主要关注这个 waitStatus 因为这个是后面的节点给前面的节点设置的,等于-1 的时候代表后面有节点等待,需要去唤醒,
这里使用了一个变种的 CLH 队列实现,CLH 队列相关内容可以查看这篇 自旋锁、排队自旋锁、MCS锁、CLH锁

+]]>
- leetcode + java - leetcode - c++ - -
- - AQS篇一 - /2021/02/14/AQS%E7%AF%87%E4%B8%80/ - 很多东西都是时看时新,而且时间长了也会忘,所以再来复习下,也会有一些新的角度看法这次来聊下AQS的内容,主要是这几个点,

-

第一个线程

第一个线程抢到锁了,此时state跟阻塞队列是怎么样的,其实这里是之前没理解对的地方

-
/**
-         * Fair version of tryAcquire.  Don't grant access unless
-         * recursive call or no waiters or is first.
-         */
-        protected final boolean tryAcquire(int acquires) {
-            final Thread current = Thread.currentThread();
-            int c = getState();
-            // 这里如果state还是0说明锁还空着
-            if (c == 0) {
-                // 因为是公平锁版本的,先去看下是否阻塞队列里有排着队的
-                if (!hasQueuedPredecessors() &&
-                    compareAndSetState(0, acquires)) {
-                    // 没有排队的,并且state使用cas设置成功的就标记当前占有锁的线程是我
-                    setExclusiveOwnerThread(current);
-                    // 然后其实就返回了,包括阻塞队列的head和tail节点和waitStatus都没有设置
-                    return true;
-                }
-            }
-            else if (current == getExclusiveOwnerThread()) {
-                int nextc = c + acquires;
-                if (nextc < 0)
-                    throw new Error("Maximum lock count exceeded");
-                setState(nextc);
-                return true;
-            }
-            // 这里就是第二个线程会返回false
-            return false;
-        }
-    }
- -

第二个线程

当第二个线程进来的时候应该是怎么样,结合代码来看

-
/**
-     * Acquires in exclusive mode, ignoring interrupts.  Implemented
-     * by invoking at least once {@link #tryAcquire},
-     * returning on success.  Otherwise the thread is queued, possibly
-     * repeatedly blocking and unblocking, invoking {@link
-     * #tryAcquire} until success.  This method can be used
-     * to implement method {@link Lock#lock}.
-     *
-     * @param arg the acquire argument.  This value is conveyed to
-     *        {@link #tryAcquire} but is otherwise uninterpreted and
-     *        can represent anything you like.
-     */
-    public final void acquire(int arg) {
-        // 前面第一种情况是tryAcquire直接成功了,这个if判断第一个条件就是false,就不往下执行了
-        // 如果是第二个线程,第一个条件获取锁不成功,条件判断!tryAcquire(arg) == true,就会走
-        // acquireQueued(addWaiter(Node.EXCLUSIVE), arg)
-        if (!tryAcquire(arg) &&
-            acquireQueued(addWaiter(Node.EXCLUSIVE), arg))
-            selfInterrupt();
-    }
- -

然后来看下addWaiter的逻辑

-
/**
-     * Creates and enqueues node for current thread and given mode.
-     *
-     * @param mode Node.EXCLUSIVE for exclusive, Node.SHARED for shared
-     * @return the new node
-     */
-    private Node addWaiter(Node mode) {
-        // 这里是包装成一个node
-        Node node = new Node(Thread.currentThread(), mode);
-        // Try the fast path of enq; backup to full enq on failure
-        // 最快的方式就是把当前线程的节点放在阻塞队列的最后
-        Node pred = tail;
-        // 只有当tail,也就是pred不为空的时候可以直接接上
-        if (pred != null) {
-            node.prev = pred;
-            // 如果这里cas成功了,就直接接上返回了
-            if (compareAndSetTail(pred, node)) {
-                pred.next = node;
-                return node;
-            }
-        }
-        // 不然就会继续走到这里
-        enq(node);
-        return node;
-    }
- -

然后就是enq的逻辑了

-
/**
-     * Inserts node into queue, initializing if necessary. See picture above.
-     * @param node the node to insert
-     * @return node's predecessor
-     */
-    private Node enq(final Node node) {
-        for (;;) {
-            // 如果状态没变化的话,tail这时还是null的
-            Node t = tail;
-            if (t == null) { // Must initialize
-                // 这里就会初始化头结点,就是个空节点
-                if (compareAndSetHead(new Node()))
-                    // tail也赋值成head
-                    tail = head;
-            } else {
-                // 这里就设置tail了
-                node.prev = t;
-                if (compareAndSetTail(t, node)) {
-                    t.next = node;
-                    return t;
-                }
-            }
-        }
-    }
- -

所以从这里可以看出来,其实head头结点不是个真实的带有线程的节点,并且不是在第一个线程进来的时候设置的

-

解锁

通过代码来看下

-
/**
-     * Attempts to release this lock.
-     *
-     * <p>If the current thread is the holder of this lock then the hold
-     * count is decremented.  If the hold count is now zero then the lock
-     * is released.  If the current thread is not the holder of this
-     * lock then {@link IllegalMonitorStateException} is thrown.
-     *
-     * @throws IllegalMonitorStateException if the current thread does not
-     *         hold this lock
-     */
-    public void unlock() {
-        // 释放锁
-        sync.release(1);
-    }
-/**
-     * Releases in exclusive mode.  Implemented by unblocking one or
-     * more threads if {@link #tryRelease} returns true.
-     * This method can be used to implement method {@link Lock#unlock}.
-     *
-     * @param arg the release argument.  This value is conveyed to
-     *        {@link #tryRelease} but is otherwise uninterpreted and
-     *        can represent anything you like.
-     * @return the value returned from {@link #tryRelease}
-     */
-    public final boolean release(int arg) {
-        // 尝试去释放
-        if (tryRelease(arg)) {
-            Node h = head;
-            if (h != null && h.waitStatus != 0)
-                unparkSuccessor(h);
-            return true;
-        }
-        return false;
-    }
-protected final boolean tryRelease(int releases) {
-            int c = getState() - releases;
-            if (Thread.currentThread() != getExclusiveOwnerThread())
-                throw new IllegalMonitorStateException();
-            boolean free = false;
-    		// 判断是否完全释放锁,因为可重入
-            if (c == 0) {
-                free = true;
-                setExclusiveOwnerThread(null);
-            }
-            setState(c);
-            return free;
-        }
-// 这段代码和上面的一致,只是为了顺序性,又拷下来看下
-
-public final boolean release(int arg) {
-        // 尝试去释放,如果是完全释放,返回的就是true,否则是false
-        if (tryRelease(arg)) {
-            Node h = head;
-            // 这里判断头结点是否为空以及waitStatus的状态,前面说了head节点其实是
-            // 在第二个线程进来的时候初始化的,如果是空的话说明没后续节点,并且waitStatus
-            // 也表示了后续的等待状态
-            if (h != null && h.waitStatus != 0)
-                unparkSuccessor(h);
-            return true;
-        }
-        return false;
-    }
-
-/**
-     * Wakes up node's successor, if one exists.
-     *
-     * @param node the node
-     */
-// 唤醒后继节点
-    private void unparkSuccessor(Node node) {
-        /*
-         * If status is negative (i.e., possibly needing signal) try
-         * to clear in anticipation of signalling.  It is OK if this
-         * fails or if status is changed by waiting thread.
-         */
-        int ws = node.waitStatus;
-        if (ws < 0)
-            compareAndSetWaitStatus(node, ws, 0);
-
-        /*
-         * Thread to unpark is held in successor, which is normally
-         * just the next node.  But if cancelled or apparently null,
-         * traverse backwards from tail to find the actual
-         * non-cancelled successor.
-         */
-        Node s = node.next;
-        // 如果后继节点是空或者当前节点取消等待了
-        if (s == null || s.waitStatus > 0) {
-            s = null;
-            // 从后往前找,找到非取消的节点,注意这里不是找到就退出,而是一直找到头
-            // 所以不必担心中间有取消的
-            for (Node t = tail; t != null && t != node; t = t.prev)
-                if (t.waitStatus <= 0)
-                    s = t;
-        }
-        if (s != null)
-            // 将其唤醒
-            LockSupport.unpark(s.thread);
-    }
- - - - -]]>
- - Java - 并发 - - - java - 并发 - j.u.c - aqs - -
- - AbstractQueuedSynchronizer - /2019/09/23/AbstractQueuedSynchronizer/ - 最近看了大神的 AQS 的文章,之前总是断断续续地看一点,每次都知难而退,下次看又从头开始,昨天总算硬着头皮看完了第一部分
首先 AQS 只要有这些属性

-
// 头结点,你直接把它当做 当前持有锁的线程 可能是最好理解的
-private transient volatile Node head;
-
-// 阻塞的尾节点,每个新的节点进来,都插入到最后,也就形成了一个链表
-private transient volatile Node tail;
-
-// 这个是最重要的,代表当前锁的状态,0代表没有被占用,大于 0 代表有线程持有当前锁
-// 这个值可以大于 1,是因为锁可以重入,每次重入都加上 1
-private volatile int state;
-
-// 代表当前持有独占锁的线程,举个最重要的使用例子,因为锁可以重入
-// reentrantLock.lock()可以嵌套调用多次,所以每次用这个来判断当前线程是否已经拥有了锁
-// if (currentThread == getExclusiveOwnerThread()) {state++}
-private transient Thread exclusiveOwnerThread; //继承自AbstractOwnableSynchronizer
-

大概了解了 aqs 底层的双向等待队列,
结构是这样的

每个 node 里面主要是的代码结构也比较简单

-
static final class Node {
-    // 标识节点当前在共享模式下
-    static final Node SHARED = new Node();
-    // 标识节点当前在独占模式下
-    static final Node EXCLUSIVE = null;
-
-    // ======== 下面的几个int常量是给waitStatus用的 ===========
-    /** waitStatus value to indicate thread has cancelled */
-    // 代码此线程取消了争抢这个锁
-    static final int CANCELLED =  1;
-    /** waitStatus value to indicate successor's thread needs unparking */
-    // 官方的描述是,其表示当前node的后继节点对应的线程需要被唤醒
-    static final int SIGNAL    = -1;
-    /** waitStatus value to indicate thread is waiting on condition */
-    // 本文不分析condition,所以略过吧,下一篇文章会介绍这个
-    static final int CONDITION = -2;
-    /**
-     * waitStatus value to indicate the next acquireShared should
-     * unconditionally propagate
-     */
-    // 同样的不分析,略过吧
-    static final int PROPAGATE = -3;
-    // =====================================================
-
-
-    // 取值为上面的1、-1、-2、-3,或者0(以后会讲到)
-    // 这么理解,暂时只需要知道如果这个值 大于0 代表此线程取消了等待,
-    //    ps: 半天抢不到锁,不抢了,ReentrantLock是可以指定timeouot的。。。
-    volatile int waitStatus;
-    // 前驱节点的引用
-    volatile Node prev;
-    // 后继节点的引用
-    volatile Node next;
-    // 这个就是线程本尊
-    volatile Thread thread;
-
-}
-

其实可以主要关注这个 waitStatus 因为这个是后面的节点给前面的节点设置的,等于-1 的时候代表后面有节点等待,需要去唤醒,
这里使用了一个变种的 CLH 队列实现,CLH 队列相关内容可以查看这篇 自旋锁、排队自旋锁、MCS锁、CLH锁

-]]>
- - java - - - java - aqs + java + aqs
@@ -1218,167 +1218,13 @@ public: - Clone Graph Part I - /2014/12/30/Clone-Graph-Part-I/ - problem
Clone a graph. Input is a Node pointer. Return the Node pointer of the cloned graph.
-
-A graph is defined below:
-struct Node {
-vector neighbors;
-}
- - -

code

typedef unordered_map<Node *, Node *> Map;
- 
-Node *clone(Node *graph) {
-    if (!graph) return NULL;
- 
-    Map map;
-    queue<Node *> q;
-    q.push(graph);
- 
-    Node *graphCopy = new Node();
-    map[graph] = graphCopy;
- 
-    while (!q.empty()) {
-        Node *node = q.front();
-        q.pop();
-        int n = node->neighbors.size();
-        for (int i = 0; i < n; i++) {
-            Node *neighbor = node->neighbors[i];
-            // no copy exists
-            if (map.find(neighbor) == map.end()) {
-                Node *p = new Node();
-                map[node]->neighbors.push_back(p);
-                map[neighbor] = p;
-                q.push(neighbor);
-            } else {     // a copy already exists
-                map[node]->neighbors.push_back(map[neighbor]);
-            }
-        }
-    }
- 
-    return graphCopy;
-}
-

anlysis

using the Breadth-first traversal
and use a map to save the neighbors not to be duplicated.

-]]>
- - leetcode - - - C++ - leetcode - -
- - Comparator使用小记 - /2020/04/05/Comparator%E4%BD%BF%E7%94%A8%E5%B0%8F%E8%AE%B0/ - 在Java8的stream之前,将对象进行排序的时候,可能需要对象实现Comparable接口,或者自己实现一个Comparator,

-

比如这样子

-

我的对象是Entity

-
public class Entity {
-
-    private Long id;
-
-    private Long sortValue;
-
-    public Long getId() {
-        return id;
-    }
-
-    public void setId(Long id) {
-        this.id = id;
-    }
-
-    public Long getSortValue() {
-        return sortValue;
-    }
-
-    public void setSortValue(Long sortValue) {
-        this.sortValue = sortValue;
-    }
-}
- -

Comparator

-
public class MyComparator implements Comparator {
-    @Override
-    public int compare(Object o1, Object o2) {
-        Entity e1 = (Entity) o1;
-        Entity e2 = (Entity) o2;
-        if (e1.getSortValue() < e2.getSortValue()) {
-            return -1;
-        } else if (e1.getSortValue().equals(e2.getSortValue())) {
-            return 0;
-        } else {
-            return 1;
-        }
-    }
-}
- -

比较代码

-
private static MyComparator myComparator = new MyComparator();
-
-    public static void main(String[] args) {
-        List<Entity> list = new ArrayList<Entity>();
-        Entity e1 = new Entity();
-        e1.setId(1L);
-        e1.setSortValue(1L);
-        list.add(e1);
-        Entity e2 = new Entity();
-        e2.setId(2L);
-        e2.setSortValue(null);
-        list.add(e2);
-        Collections.sort(list, myComparator);
- -

看到这里的e2的排序值是null,在Comparator中如果要正常运行的话,就得判空之类的,这里有两点需要,一个是不想写这个MyComparator,然后也没那么好排除掉list里排序值,那么有什么办法能解决这种问题呢,应该说java的这方面真的是很强大

-

-

看一下nullsFirst的实现

-
final static class NullComparator<T> implements Comparator<T>, Serializable {
-        private static final long serialVersionUID = -7569533591570686392L;
-        private final boolean nullFirst;
-        // if null, non-null Ts are considered equal
-        private final Comparator<T> real;
-
-        @SuppressWarnings("unchecked")
-        NullComparator(boolean nullFirst, Comparator<? super T> real) {
-            this.nullFirst = nullFirst;
-            this.real = (Comparator<T>) real;
-        }
-
-        @Override
-        public int compare(T a, T b) {
-            if (a == null) {
-                return (b == null) ? 0 : (nullFirst ? -1 : 1);
-            } else if (b == null) {
-                return nullFirst ? 1: -1;
-            } else {
-                return (real == null) ? 0 : real.compare(a, b);
-            }
-        }
- -

核心代码就是下面这段,其实就是帮我们把前面要做的事情做掉了,是不是挺方便的,小记一下哈

-]]>
- - Java - 集合 - - - Java - Stream - Comparator - 排序 - sort - nullsfirst - -
- - Apollo 客户端启动过程分析 - /2022/09/18/Apollo-%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%90%AF%E5%8A%A8%E8%BF%87%E7%A8%8B%E5%88%86%E6%9E%90/ - 入口是可以在 springboot 的启动类上打上EnableApolloConfig 注解

-
@Import(ApolloConfigRegistrar.class)
-public @interface EnableApolloConfig {
-

这个 import 实现了

-
public class ApolloConfigRegistrar implements ImportBeanDefinitionRegistrar {
+    Apollo 客户端启动过程分析
+    /2022/09/18/Apollo-%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%90%AF%E5%8A%A8%E8%BF%87%E7%A8%8B%E5%88%86%E6%9E%90/
+    入口是可以在 springboot 的启动类上打上EnableApolloConfig 注解

+
@Import(ApolloConfigRegistrar.class)
+public @interface EnableApolloConfig {
+

这个 import 实现了

+
public class ApolloConfigRegistrar implements ImportBeanDefinitionRegistrar {
 
   private ApolloConfigRegistrarHelper helper = ServiceBootstrap.loadPrimary(ApolloConfigRegistrarHelper.class);
 
@@ -1717,42 +1563,196 @@ Node *clone(Node *graph) {
       
   
   
-    Disruptor 系列一
-    /2022/02/13/Disruptor-%E7%B3%BB%E5%88%97%E4%B8%80/
-    很久之前就听说过这个框架,不过之前有点跟消息队列混起来,这个也是种队列,但不是跟 rocketmq,nsq 那种一样的,而是在进程内部提供队列服务的,偏向于取代ArrayBlockingQueue,因为这个阻塞队列是使用了锁来控制阻塞,关于并发其实有一些通用的最佳实践,就是用锁,即使是 JDK 提供的锁,也是比较耗资源的,当然这是跟不加锁的对比,同样是锁,JDK 的实现还是性能比较优秀的。常见的阻塞队列中例如 ArrayBlockingQueueLinkedBlockingQueue 都有锁的身影的存在,区别在于 ArrayBlockingQueue 是一把锁,后者是两把锁,不过重点不在几把锁,这里其实是两个问题,一个是所谓的 lock free, 对于一个单生产者的 disruptor 来说,因为写入是只有一个线程的,是可以不用加锁,多生产者的时候使用的是 cas 来获取对应的写入坑位,另一个是解决“伪共享”问题,后面可以详细点分析,先介绍下使用
首先是数据源

-
public class LongEvent {
-    private long value;
+    Clone Graph Part I
+    /2014/12/30/Clone-Graph-Part-I/
+    problem
Clone a graph. Input is a Node pointer. Return the Node pointer of the cloned graph.
 
-    public void set(long value) {
-        this.value = value;
-    }
+A graph is defined below:
+struct Node {
+vector neighbors;
+}
- public long getValue() { - return value; + +

code

typedef unordered_map<Node *, Node *> Map;
+ 
+Node *clone(Node *graph) {
+    if (!graph) return NULL;
+ 
+    Map map;
+    queue<Node *> q;
+    q.push(graph);
+ 
+    Node *graphCopy = new Node();
+    map[graph] = graphCopy;
+ 
+    while (!q.empty()) {
+        Node *node = q.front();
+        q.pop();
+        int n = node->neighbors.size();
+        for (int i = 0; i < n; i++) {
+            Node *neighbor = node->neighbors[i];
+            // no copy exists
+            if (map.find(neighbor) == map.end()) {
+                Node *p = new Node();
+                map[node]->neighbors.push_back(p);
+                map[neighbor] = p;
+                q.push(neighbor);
+            } else {     // a copy already exists
+                map[node]->neighbors.push_back(map[neighbor]);
+            }
+        }
+    }
+ 
+    return graphCopy;
+}
+

anlysis

using the Breadth-first traversal
and use a map to save the neighbors not to be duplicated.

+]]>
+ + leetcode + + + C++ + leetcode + + + + Comparator使用小记 + /2020/04/05/Comparator%E4%BD%BF%E7%94%A8%E5%B0%8F%E8%AE%B0/ + 在Java8的stream之前,将对象进行排序的时候,可能需要对象实现Comparable接口,或者自己实现一个Comparator,

+

比如这样子

+

我的对象是Entity

+
public class Entity {
+
+    private Long id;
+
+    private Long sortValue;
+
+    public Long getId() {
+        return id;
     }
 
-    public void setValue(long value) {
-        this.value = value;
+    public void setId(Long id) {
+        this.id = id;
     }
-}
-

事件生产

-
public class LongEventFactory implements EventFactory<LongEvent>
-{
-    public LongEvent newInstance()
-    {
-        return new LongEvent();
+
+    public Long getSortValue() {
+        return sortValue;
     }
-}
-

事件处理器

-
public class LongEventHandler implements EventHandler<LongEvent> {
 
-    // event 事件,
-    // sequence 当前的序列 
-    // 是否当前批次最后一个数据
-    public void onEvent(LongEvent event, long sequence, boolean endOfBatch)
-    {
-        String str = String.format("long event : %s l:%s b:%s", event.getValue(), sequence, endOfBatch);
-        System.out.println(str);
+    public void setSortValue(Long sortValue) {
+        this.sortValue = sortValue;
+    }
+}
+ +

Comparator

+
public class MyComparator implements Comparator {
+    @Override
+    public int compare(Object o1, Object o2) {
+        Entity e1 = (Entity) o1;
+        Entity e2 = (Entity) o2;
+        if (e1.getSortValue() < e2.getSortValue()) {
+            return -1;
+        } else if (e1.getSortValue().equals(e2.getSortValue())) {
+            return 0;
+        } else {
+            return 1;
+        }
+    }
+}
+ +

比较代码

+
private static MyComparator myComparator = new MyComparator();
+
+    public static void main(String[] args) {
+        List<Entity> list = new ArrayList<Entity>();
+        Entity e1 = new Entity();
+        e1.setId(1L);
+        e1.setSortValue(1L);
+        list.add(e1);
+        Entity e2 = new Entity();
+        e2.setId(2L);
+        e2.setSortValue(null);
+        list.add(e2);
+        Collections.sort(list, myComparator);
+ +

看到这里的e2的排序值是null,在Comparator中如果要正常运行的话,就得判空之类的,这里有两点需要,一个是不想写这个MyComparator,然后也没那么好排除掉list里排序值,那么有什么办法能解决这种问题呢,应该说java的这方面真的是很强大

+

+

看一下nullsFirst的实现

+
final static class NullComparator<T> implements Comparator<T>, Serializable {
+        private static final long serialVersionUID = -7569533591570686392L;
+        private final boolean nullFirst;
+        // if null, non-null Ts are considered equal
+        private final Comparator<T> real;
+
+        @SuppressWarnings("unchecked")
+        NullComparator(boolean nullFirst, Comparator<? super T> real) {
+            this.nullFirst = nullFirst;
+            this.real = (Comparator<T>) real;
+        }
+
+        @Override
+        public int compare(T a, T b) {
+            if (a == null) {
+                return (b == null) ? 0 : (nullFirst ? -1 : 1);
+            } else if (b == null) {
+                return nullFirst ? 1: -1;
+            } else {
+                return (real == null) ? 0 : real.compare(a, b);
+            }
+        }
+ +

核心代码就是下面这段,其实就是帮我们把前面要做的事情做掉了,是不是挺方便的,小记一下哈

+]]>
+ + Java + 集合 + + + Java + Stream + Comparator + 排序 + sort + nullsfirst + +
+ + Disruptor 系列一 + /2022/02/13/Disruptor-%E7%B3%BB%E5%88%97%E4%B8%80/ + 很久之前就听说过这个框架,不过之前有点跟消息队列混起来,这个也是种队列,但不是跟 rocketmq,nsq 那种一样的,而是在进程内部提供队列服务的,偏向于取代ArrayBlockingQueue,因为这个阻塞队列是使用了锁来控制阻塞,关于并发其实有一些通用的最佳实践,就是用锁,即使是 JDK 提供的锁,也是比较耗资源的,当然这是跟不加锁的对比,同样是锁,JDK 的实现还是性能比较优秀的。常见的阻塞队列中例如 ArrayBlockingQueueLinkedBlockingQueue 都有锁的身影的存在,区别在于 ArrayBlockingQueue 是一把锁,后者是两把锁,不过重点不在几把锁,这里其实是两个问题,一个是所谓的 lock free, 对于一个单生产者的 disruptor 来说,因为写入是只有一个线程的,是可以不用加锁,多生产者的时候使用的是 cas 来获取对应的写入坑位,另一个是解决“伪共享”问题,后面可以详细点分析,先介绍下使用
首先是数据源

+
public class LongEvent {
+    private long value;
+
+    public void set(long value) {
+        this.value = value;
+    }
+
+    public long getValue() {
+        return value;
+    }
+
+    public void setValue(long value) {
+        this.value = value;
+    }
+}
+

事件生产

+
public class LongEventFactory implements EventFactory<LongEvent>
+{
+    public LongEvent newInstance()
+    {
+        return new LongEvent();
+    }
+}
+

事件处理器

+
public class LongEventHandler implements EventHandler<LongEvent> {
+
+    // event 事件,
+    // sequence 当前的序列 
+    // 是否当前批次最后一个数据
+    public void onEvent(LongEvent event, long sequence, boolean endOfBatch)
+    {
+        String str = String.format("long event : %s l:%s b:%s", event.getValue(), sequence, endOfBatch);
+        System.out.println(str);
     }
 }
 
@@ -1805,67 +1805,6 @@ Node *clone(Node *graph) { Disruptor
- - Disruptor 系列二 - /2022/02/27/Disruptor-%E7%B3%BB%E5%88%97%E4%BA%8C/ - 这里开始慢慢深入的讲一下 disruptor,首先是 lock free , 相比于前面介绍的两个阻塞队列,
disruptor 本身是不直接使用锁的,因为本身的设计是单个线程去生产,通过 cas 来维护头指针,
不直接维护尾指针,这样就减少了锁的使用,提升了性能;第二个是这次介绍的重点,
减少 false sharing 的情况,也就是常说的 伪共享 问题,那么什么叫 伪共享 呢,
这里要扯到一些 cpu 缓存的知识,

譬如我在用的这个笔记本

这里就可能看到 L2 Cache 就是针对每个核的

这里可以看到现代 CPU 的结构里,分为三级缓存,越靠近 cpu 的速度越快,存储容量越小,
而 L1 跟 L2 是 CPU 核专属的每个核都有自己的 L1 和 L2 的,其中 L1 还分为数据和指令,
像我上面的图中显示的 L1 Cache 只有 64KB 大小,其中数据 32KB,指令 32KB,
而 L2 则有 256KB,L3 有 4MB,其中的 Line Size 是我们这里比较重要的一个值,
CPU 其实会就近地从 Cache 中读取数据,碰到 Cache Miss 就再往下一级 Cache 读取,
每次读取是按照缓存行 Cache Line 读取,并且也遵循了“就近原则”,
也就是相近的数据有可能也会马上被读取,所以以行的形式读取,然而这也造成了 false sharing
因为类似于 ArrayBlockingQueue,需要有 takeIndex , putIndex , count , 因为在同一个类中,
很有可能存在于同一个 Cache Line 中,但是这几个值会被不同的线程修改,
导致从 Cache 取出来以后立马就会被失效,所谓的就近原则也就没用了,
因为需要反复地标记 dirty 脏位,然后把 Cache 刷掉,就造成了false sharing这种情况
而在 disruptor 中则使用了填充的方式,让我的头指针能够不产生false sharing

-
class LhsPadding
-{
-    protected long p1, p2, p3, p4, p5, p6, p7;
-}
-
-class Value extends LhsPadding
-{
-    protected volatile long value;
-}
-
-class RhsPadding extends Value
-{
-    protected long p9, p10, p11, p12, p13, p14, p15;
-}
-
-/**
- * <p>Concurrent sequence class used for tracking the progress of
- * the ring buffer and event processors.  Support a number
- * of concurrent operations including CAS and order writes.
- *
- * <p>Also attempts to be more efficient with regards to false
- * sharing by adding padding around the volatile field.
- */
-public class Sequence extends RhsPadding
-{
-

通过代码可以看到,sequence 中其实真正有意义的是 value 字段,因为需要在多线程环境下可见也
使用了volatile 关键字,而 LhsPaddingRhsPadding 分别在value 前后填充了各
7 个 long 型的变量,long 型的变量在 Java 中是占用 8 bytes,这样就相当于不管怎么样,
value 都会单独使用一个缓存行,使得其不会产生 false sharing 的问题。

-]]>
- - Java - - - Java - Disruptor - -
- - Dubbo 使用的几个记忆点 - /2022/04/02/Dubbo-%E4%BD%BF%E7%94%A8%E7%9A%84%E5%87%A0%E4%B8%AA%E8%AE%B0%E5%BF%86%E7%82%B9/ - 因为后台使用的 dubbo 作为 rpc 框架,并且会有一些日常使用情景有一些小的技巧,在这里做下记录作笔记用

-

dubbo 只拉取不注册

<dubbo:registry address="zookeeper://127.0.0.1:2181" register="false" />
-

就是只要 register="false" 就可以了,这样比如我们在开发环境想运行服务,但又不想让开发环境正常的请求调用到本地来,当然这不是唯一的方式,通过 dubbo 2.7 以上的 tag 路由也可以实现或者自行改造拉取和注册服务的逻辑,因为注册到注册中心的其实是一串带参数的 url,还是比较方便改造的。相反的就是只注册,不拉取

-

dubbo 只注册不拉取

<dubbo:registry address="zookeeper://127.0.0.1:2181" subscribe="false" />
-

这个使用场景就是如果我这个服务只作为 provider,没有任何调用其他的服务,其实就可以这么设置

-

权重配置

<dubbo:provider loadbalance="random" weight="50"/>
-

首先这是在使用了随机的负载均衡策略的时候可以进行配置,并且是对于多个 provider 的情况下,这样其实也可以部分解决上面的只拉取不注册的问题,我把自己的权重调成 0 或者很低

-]]>
- - Java - Dubbo - - - Java - Dubbo - RPC - 负载均衡 - -
Disruptor 系列三 /2022/09/25/Disruptor-%E7%B3%BB%E5%88%97%E4%B8%89/ @@ -2010,6 +1949,67 @@ Node *clone(Node *graph) { Disruptor + + Disruptor 系列二 + /2022/02/27/Disruptor-%E7%B3%BB%E5%88%97%E4%BA%8C/ + 这里开始慢慢深入的讲一下 disruptor,首先是 lock free , 相比于前面介绍的两个阻塞队列,
disruptor 本身是不直接使用锁的,因为本身的设计是单个线程去生产,通过 cas 来维护头指针,
不直接维护尾指针,这样就减少了锁的使用,提升了性能;第二个是这次介绍的重点,
减少 false sharing 的情况,也就是常说的 伪共享 问题,那么什么叫 伪共享 呢,
这里要扯到一些 cpu 缓存的知识,

譬如我在用的这个笔记本

这里就可能看到 L2 Cache 就是针对每个核的

这里可以看到现代 CPU 的结构里,分为三级缓存,越靠近 cpu 的速度越快,存储容量越小,
而 L1 跟 L2 是 CPU 核专属的每个核都有自己的 L1 和 L2 的,其中 L1 还分为数据和指令,
像我上面的图中显示的 L1 Cache 只有 64KB 大小,其中数据 32KB,指令 32KB,
而 L2 则有 256KB,L3 有 4MB,其中的 Line Size 是我们这里比较重要的一个值,
CPU 其实会就近地从 Cache 中读取数据,碰到 Cache Miss 就再往下一级 Cache 读取,
每次读取是按照缓存行 Cache Line 读取,并且也遵循了“就近原则”,
也就是相近的数据有可能也会马上被读取,所以以行的形式读取,然而这也造成了 false sharing
因为类似于 ArrayBlockingQueue,需要有 takeIndex , putIndex , count , 因为在同一个类中,
很有可能存在于同一个 Cache Line 中,但是这几个值会被不同的线程修改,
导致从 Cache 取出来以后立马就会被失效,所谓的就近原则也就没用了,
因为需要反复地标记 dirty 脏位,然后把 Cache 刷掉,就造成了false sharing这种情况
而在 disruptor 中则使用了填充的方式,让我的头指针能够不产生false sharing

+
class LhsPadding
+{
+    protected long p1, p2, p3, p4, p5, p6, p7;
+}
+
+class Value extends LhsPadding
+{
+    protected volatile long value;
+}
+
+class RhsPadding extends Value
+{
+    protected long p9, p10, p11, p12, p13, p14, p15;
+}
+
+/**
+ * <p>Concurrent sequence class used for tracking the progress of
+ * the ring buffer and event processors.  Support a number
+ * of concurrent operations including CAS and order writes.
+ *
+ * <p>Also attempts to be more efficient with regards to false
+ * sharing by adding padding around the volatile field.
+ */
+public class Sequence extends RhsPadding
+{
+

通过代码可以看到,sequence 中其实真正有意义的是 value 字段,因为需要在多线程环境下可见也
使用了volatile 关键字,而 LhsPaddingRhsPadding 分别在value 前后填充了各
7 个 long 型的变量,long 型的变量在 Java 中是占用 8 bytes,这样就相当于不管怎么样,
value 都会单独使用一个缓存行,使得其不会产生 false sharing 的问题。

+]]>
+ + Java + + + Java + Disruptor + +
+ + Dubbo 使用的几个记忆点 + /2022/04/02/Dubbo-%E4%BD%BF%E7%94%A8%E7%9A%84%E5%87%A0%E4%B8%AA%E8%AE%B0%E5%BF%86%E7%82%B9/ + 因为后台使用的 dubbo 作为 rpc 框架,并且会有一些日常使用情景有一些小的技巧,在这里做下记录作笔记用

+

dubbo 只拉取不注册

<dubbo:registry address="zookeeper://127.0.0.1:2181" register="false" />
+

就是只要 register="false" 就可以了,这样比如我们在开发环境想运行服务,但又不想让开发环境正常的请求调用到本地来,当然这不是唯一的方式,通过 dubbo 2.7 以上的 tag 路由也可以实现或者自行改造拉取和注册服务的逻辑,因为注册到注册中心的其实是一串带参数的 url,还是比较方便改造的。相反的就是只注册,不拉取

+

dubbo 只注册不拉取

<dubbo:registry address="zookeeper://127.0.0.1:2181" subscribe="false" />
+

这个使用场景就是如果我这个服务只作为 provider,没有任何调用其他的服务,其实就可以这么设置

+

权重配置

<dubbo:provider loadbalance="random" weight="50"/>
+

首先这是在使用了随机的负载均衡策略的时候可以进行配置,并且是对于多个 provider 的情况下,这样其实也可以部分解决上面的只拉取不注册的问题,我把自己的权重调成 0 或者很低

+]]>
+ + Java + Dubbo + + + Java + Dubbo + RPC + 负载均衡 + +
Filter, Interceptor, Aop, 啥, 啥, 啥? 这些都是啥? /2020/08/22/Filter-Intercepter-Aop-%E5%95%A5-%E5%95%A5-%E5%95%A5-%E8%BF%99%E4%BA%9B%E9%83%BD%E6%98%AF%E5%95%A5/ @@ -2561,28 +2561,175 @@ Node *clone(Node *graph) { - JVM源码分析之G1垃圾收集器分析一 - /2019/12/07/JVM-G1-Part-1/ - 对 Java 的 gc 实现比较感兴趣,原先一般都是看周志明的书,但其实并没有讲具体的 gc 源码,而是把整个思路和流程讲解了一下
特别是 G1 的具体实现
一般对 G1 的理解其实就是把原先整块的新生代老年代分成了以 region 为单位的小块内存,简而言之,就是原先对新生代老年代的收集会涉及到整个代的堆内存空间,而G1 把它变成了更细致的小块内存
这带来了一个很明显的好处和一个很明显的坏处,好处是内存收集可以更灵活,耗时会变短,但整个收集的处理复杂度就变高了
目前看了一点点关于 G1 收集的预期时间相关的代码

-
HeapWord* G1CollectedHeap::do_collection_pause(size_t word_size,
-                                               uint gc_count_before,
-                                               bool* succeeded,
-                                               GCCause::Cause gc_cause) {
-  assert_heap_not_locked_and_not_at_safepoint();
-  VM_G1CollectForAllocation op(word_size,
-                               gc_count_before,
-                               gc_cause,
-                               false, /* should_initiate_conc_mark */
-                               g1_policy()->max_pause_time_ms());
-  VMThread::execute(&op);
-
-  HeapWord* result = op.result();
-  bool ret_succeeded = op.prologue_succeeded() && op.pause_succeeded();
-  assert(result == NULL || ret_succeeded,
-         "the result should be NULL if the VM did not succeed");
-  *succeeded = ret_succeeded;
-
-  assert_heap_not_locked();
+    Leetcode 021 合并两个有序链表 ( Merge Two Sorted Lists ) 题解分析
+    /2021/10/07/Leetcode-021-%E5%90%88%E5%B9%B6%E4%B8%A4%E4%B8%AA%E6%9C%89%E5%BA%8F%E9%93%BE%E8%A1%A8-Merge-Two-Sorted-Lists-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/
+    题目介绍

Merge two sorted linked lists and return it as a sorted list. The list should be made by splicing together the nodes of the first two lists.

+

将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。

+

示例 1

+
+

输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]

+
+

示例 2

+

输入: l1 = [], l2 = []
输出: []

+
+

示例 3

+

输入: l1 = [], l2 = [0]
输出: [0]

+
+

简要分析

这题是 Easy 的,看着也挺简单,两个链表进行合并,就是比较下大小,可能将就点的话最好就在两个链表中原地合并

+

题解代码

public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
+        // 下面两个if判断了入参的边界,如果其一为null,直接返回另一个就可以了
+        if (l1 == null) {
+            return l2;
+        }
+        if (l2 == null) {
+            return l1;
+        }
+        // new 一个合并后的头结点
+        ListNode merged = new ListNode();
+        // 这个是当前节点
+        ListNode current = merged;
+        // 一开始给这个while加了l1和l2不全为null的条件,后面想了下不需要
+        // 因为内部前两个if就是跳出条件
+        while (true) {
+            if (l1 == null) {
+                // 这里其实跟开头类似,只不过这里需要将l2剩余部分接到merged链表后面
+                // 所以不能是直接current = l2,这样就是把后面的直接丢了
+                current.val = l2.val;
+                current.next = l2.next;
+                break;
+            }
+            if (l2 == null) {
+                current.val = l1.val;
+                current.next = l1.next;
+                break;
+            }
+            // 这里是两个链表都不为空的时候,就比较下大小
+            if (l1.val < l2.val) {
+                current.val = l1.val;
+                l1 = l1.next;
+            } else {
+                current.val = l2.val;
+                l2 = l2.next;
+            }
+            // 这里是new个新的,其实也可以放在循环头上
+            current.next = new ListNode();
+            current = current.next;
+        }
+        current = null;
+        // 返回这个头结点
+        return merged;
+    }
+ +

结果

+]]>
+ + Java + leetcode + + + leetcode + java + 题解 + + + + Leetcode 028 实现 strStr() ( Implement strStr() ) 题解分析 + /2021/10/31/Leetcode-028-%E5%AE%9E%E7%8E%B0-strStr-Implement-strStr-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + 题目介绍

Implement strStr().

+

Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

+

Clarification:

What should we return when needle is an empty string? This is a great question to ask during an interview.

+

For the purpose of this problem, we will return 0 when needle is an empty string. This is consistent to C’s strstr() and Java’s indexOf().

+

示例

Example 1:

+
Input: haystack = "hello", needle = "ll"
+Output: 2
+

Example 2:

+
Input: haystack = "aaaaa", needle = "bba"
+Output: -1
+

Example 3:

+
Input: haystack = "", needle = ""
+Output: 0
+ +

题解

字符串比较其实是写代码里永恒的主题,底层的编译器等处理肯定需要字符串对比,像 kmp 算法也是很厉害

+

code

public int strStr(String haystack, String needle) {
+        // 如果两个字符串都为空,返回 -1
+        if (haystack == null || needle == null) {
+            return -1;
+        }
+        // 如果 haystack 长度小于 needle 长度,返回 -1
+        if (haystack.length() < needle.length()) {
+            return -1;
+        }
+        // 如果 needle 为空字符串,返回 0
+        if (needle.equals("")) {
+            return 0;
+        }
+        // 如果两者相等,返回 0
+        if (haystack.equals(needle)) {
+            return 0;
+        }
+        int needleLength = needle.length();
+        int haystackLength = haystack.length();
+        for (int i = needleLength - 1; i <= haystackLength - 1; i++) {
+            // 比较 needle 最后一个字符,倒着比较稍微节省点时间
+            if (needle.charAt(needleLength - 1) == haystack.charAt(i)) {
+                // 如果needle 是 1 的话直接可以返回 i 作为位置了
+                if (needle.length() == 1) {
+                    return i;
+                }
+                boolean flag = true;
+                // 原来比的是 needle 的最后一个位置,然后这边从倒数第二个位置开始
+                int j = needle.length() - 2;
+                for (; j >= 0; j--) {
+                    // 这里的 i- (needleLength - j) + 1 ) 比较绕,其实是外循环的 i 表示当前 i 位置的字符跟 needle 最后一个字符
+                    // 相同,j 在上面的循环中--,对应的 haystack 也要在 i 这个位置 -- ,对应的位置就是 i - (needleLength - j) + 1
+                    if (needle.charAt(j) != haystack.charAt(i - (needleLength - j) + 1)) {
+                        flag = false;
+                        break;
+                    }
+                }
+                // 循环完了之后,如果 flag 为 true 说明 从 i 开始倒着对比都相同,但是这里需要起始位置,就需要
+                // i - needleLength + 1
+                if (flag) {
+                    return i - needleLength + 1;
+                }
+            }
+        }
+        // 这里表示未找到
+        return  -1;
+    }
]]>
+ + Java + leetcode + + + leetcode + java + 题解 + +
+ + JVM源码分析之G1垃圾收集器分析一 + /2019/12/07/JVM-G1-Part-1/ + 对 Java 的 gc 实现比较感兴趣,原先一般都是看周志明的书,但其实并没有讲具体的 gc 源码,而是把整个思路和流程讲解了一下
特别是 G1 的具体实现
一般对 G1 的理解其实就是把原先整块的新生代老年代分成了以 region 为单位的小块内存,简而言之,就是原先对新生代老年代的收集会涉及到整个代的堆内存空间,而G1 把它变成了更细致的小块内存
这带来了一个很明显的好处和一个很明显的坏处,好处是内存收集可以更灵活,耗时会变短,但整个收集的处理复杂度就变高了
目前看了一点点关于 G1 收集的预期时间相关的代码

+
HeapWord* G1CollectedHeap::do_collection_pause(size_t word_size,
+                                               uint gc_count_before,
+                                               bool* succeeded,
+                                               GCCause::Cause gc_cause) {
+  assert_heap_not_locked_and_not_at_safepoint();
+  VM_G1CollectForAllocation op(word_size,
+                               gc_count_before,
+                               gc_cause,
+                               false, /* should_initiate_conc_mark */
+                               g1_policy()->max_pause_time_ms());
+  VMThread::execute(&op);
+
+  HeapWord* result = op.result();
+  bool ret_succeeded = op.prologue_succeeded() && op.pause_succeeded();
+  assert(result == NULL || ret_succeeded,
+         "the result should be NULL if the VM did not succeed");
+  *succeeded = ret_succeeded;
+
+  assert_heap_not_locked();
   return result;
 }

这里就是收集时需要停顿的,其中VMThread::execute(&op);是具体执行的,真正执行的是VM_G1CollectForAllocation::doit方法

@@ -3167,181 +3314,34 @@ Node *clone(Node *graph) {
- Leetcode 021 合并两个有序链表 ( Merge Two Sorted Lists ) 题解分析 - /2021/10/07/Leetcode-021-%E5%90%88%E5%B9%B6%E4%B8%A4%E4%B8%AA%E6%9C%89%E5%BA%8F%E9%93%BE%E8%A1%A8-Merge-Two-Sorted-Lists-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 题目介绍

Merge two sorted linked lists and return it as a sorted list. The list should be made by splicing together the nodes of the first two lists.

-

将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。

-

示例 1

+ Leetcode 053 最大子序和 ( Maximum Subarray ) 题解分析 + /2021/11/28/Leetcode-053-%E6%9C%80%E5%A4%A7%E5%AD%90%E5%BA%8F%E5%92%8C-Maximum-Subarray-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + 题目介绍

Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.

+

A subarray is a contiguous part of an array.

+

示例

Example 1:

-

输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]

+

Input: nums = [-2,1,-3,4,-1,2,1,-5,4]
Output: 6
Explanation: [4,-1,2,1] has the largest sum = 6.

-

示例 2

-

输入: l1 = [], l2 = []
输出: []

+

Example 2:

+
+

Input: nums = [1]
Output: 1

-

示例 3

-

输入: l1 = [], l2 = [0]
输出: [0]

+

Example 3:

+
+

Input: nums = [5,4,-1,7,8]
Output: 23

-

简要分析

这题是 Easy 的,看着也挺简单,两个链表进行合并,就是比较下大小,可能将就点的话最好就在两个链表中原地合并

-

题解代码

public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
-        // 下面两个if判断了入参的边界,如果其一为null,直接返回另一个就可以了
-        if (l1 == null) {
-            return l2;
-        }
-        if (l2 == null) {
-            return l1;
-        }
-        // new 一个合并后的头结点
-        ListNode merged = new ListNode();
-        // 这个是当前节点
-        ListNode current = merged;
-        // 一开始给这个while加了l1和l2不全为null的条件,后面想了下不需要
-        // 因为内部前两个if就是跳出条件
-        while (true) {
-            if (l1 == null) {
-                // 这里其实跟开头类似,只不过这里需要将l2剩余部分接到merged链表后面
-                // 所以不能是直接current = l2,这样就是把后面的直接丢了
-                current.val = l2.val;
-                current.next = l2.next;
-                break;
-            }
-            if (l2 == null) {
-                current.val = l1.val;
-                current.next = l1.next;
-                break;
-            }
-            // 这里是两个链表都不为空的时候,就比较下大小
-            if (l1.val < l2.val) {
-                current.val = l1.val;
-                l1 = l1.next;
-            } else {
-                current.val = l2.val;
-                l2 = l2.next;
-            }
-            // 这里是new个新的,其实也可以放在循环头上
-            current.next = new ListNode();
-            current = current.next;
+

说起来这个题其实非常有渊源,大学数据结构的第一个题就是这个,而最佳的算法就是传说中的 online 算法,就是遍历一次就完了,最基本的做法就是记下来所有的连续子数组,然后求出最大的那个。

+

代码

public int maxSubArray(int[] nums) {
+        int max = nums[0];
+        int sum = nums[0];
+        for (int i = 1; i < nums.length; i++) {
+            // 这里最重要的就是这一行了,其实就是如果前面的 sum 是小于 0 的,那么就不需要前面的 sum,反正加上了还不如不加大
+            sum = Math.max(nums[i], sum + nums[i]);
+            // max 是用来承载最大值的
+            max = Math.max(max, sum);
         }
-        current = null;
-        // 返回这个头结点
-        return merged;
-    }
- -

结果

-]]> - - Java - leetcode - - - leetcode - java - 题解 - - - - Leetcode 028 实现 strStr() ( Implement strStr() ) 题解分析 - /2021/10/31/Leetcode-028-%E5%AE%9E%E7%8E%B0-strStr-Implement-strStr-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 题目介绍

Implement strStr().

-

Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

-

Clarification:

What should we return when needle is an empty string? This is a great question to ask during an interview.

-

For the purpose of this problem, we will return 0 when needle is an empty string. This is consistent to C’s strstr() and Java’s indexOf().

-

示例

Example 1:

-
Input: haystack = "hello", needle = "ll"
-Output: 2
-

Example 2:

-
Input: haystack = "aaaaa", needle = "bba"
-Output: -1
-

Example 3:

-
Input: haystack = "", needle = ""
-Output: 0
- -

题解

字符串比较其实是写代码里永恒的主题,底层的编译器等处理肯定需要字符串对比,像 kmp 算法也是很厉害

-

code

public int strStr(String haystack, String needle) {
-        // 如果两个字符串都为空,返回 -1
-        if (haystack == null || needle == null) {
-            return -1;
-        }
-        // 如果 haystack 长度小于 needle 长度,返回 -1
-        if (haystack.length() < needle.length()) {
-            return -1;
-        }
-        // 如果 needle 为空字符串,返回 0
-        if (needle.equals("")) {
-            return 0;
-        }
-        // 如果两者相等,返回 0
-        if (haystack.equals(needle)) {
-            return 0;
-        }
-        int needleLength = needle.length();
-        int haystackLength = haystack.length();
-        for (int i = needleLength - 1; i <= haystackLength - 1; i++) {
-            // 比较 needle 最后一个字符,倒着比较稍微节省点时间
-            if (needle.charAt(needleLength - 1) == haystack.charAt(i)) {
-                // 如果needle 是 1 的话直接可以返回 i 作为位置了
-                if (needle.length() == 1) {
-                    return i;
-                }
-                boolean flag = true;
-                // 原来比的是 needle 的最后一个位置,然后这边从倒数第二个位置开始
-                int j = needle.length() - 2;
-                for (; j >= 0; j--) {
-                    // 这里的 i- (needleLength - j) + 1 ) 比较绕,其实是外循环的 i 表示当前 i 位置的字符跟 needle 最后一个字符
-                    // 相同,j 在上面的循环中--,对应的 haystack 也要在 i 这个位置 -- ,对应的位置就是 i - (needleLength - j) + 1
-                    if (needle.charAt(j) != haystack.charAt(i - (needleLength - j) + 1)) {
-                        flag = false;
-                        break;
-                    }
-                }
-                // 循环完了之后,如果 flag 为 true 说明 从 i 开始倒着对比都相同,但是这里需要起始位置,就需要
-                // i - needleLength + 1
-                if (flag) {
-                    return i - needleLength + 1;
-                }
-            }
-        }
-        // 这里表示未找到
-        return  -1;
-    }
]]>
- - Java - leetcode - - - leetcode - java - 题解 - -
- - Leetcode 053 最大子序和 ( Maximum Subarray ) 题解分析 - /2021/11/28/Leetcode-053-%E6%9C%80%E5%A4%A7%E5%AD%90%E5%BA%8F%E5%92%8C-Maximum-Subarray-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 题目介绍

Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.

-

A subarray is a contiguous part of an array.

-

示例

Example 1:

-
-

Input: nums = [-2,1,-3,4,-1,2,1,-5,4]
Output: 6
Explanation: [4,-1,2,1] has the largest sum = 6.

-
-

Example 2:

-
-

Input: nums = [1]
Output: 1

-
-

Example 3:

-
-

Input: nums = [5,4,-1,7,8]
Output: 23

-
-

说起来这个题其实非常有渊源,大学数据结构的第一个题就是这个,而最佳的算法就是传说中的 online 算法,就是遍历一次就完了,最基本的做法就是记下来所有的连续子数组,然后求出最大的那个。

-

代码

public int maxSubArray(int[] nums) {
-        int max = nums[0];
-        int sum = nums[0];
-        for (int i = 1; i < nums.length; i++) {
-            // 这里最重要的就是这一行了,其实就是如果前面的 sum 是小于 0 的,那么就不需要前面的 sum,反正加上了还不如不加大
-            sum = Math.max(nums[i], sum + nums[i]);
-            // max 是用来承载最大值的
-            max = Math.max(max, sum);
-        }
-        return max;
-    }
]]>
+ return max; + }
]]> Java leetcode @@ -3643,6 +3643,87 @@ inorder = [9,3,15,20,7]
-

Input: grid = [[3,8,1,9],[19,7,2,5],[4,6,11,10],[12,0,21,13]], k = 4
Output: [[12,0,21,13],[3,8,1,9],[19,7,2,5],[4,6,11,10]]

+ Leetcode 16 最接近的三数之和 ( 3Sum Closest *Medium* ) 题解分析 + /2022/08/06/Leetcode-16-%E6%9C%80%E6%8E%A5%E8%BF%91%E7%9A%84%E4%B8%89%E6%95%B0%E4%B9%8B%E5%92%8C-3Sum-Closest-Medium-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + 题目介绍

Given an integer array nums of length n and an integer target, find three integers in nums such that the sum is closest to target.

+

Return the sum of the three integers.

+

You may assume that each input would have exactly one solution.

+

简单解释下就是之前是要三数之和等于目标值,现在是找到最接近的三数之和。

+

示例

Example 1:

+

Input: nums = [-1,2,1,-4], target = 1
Output: 2
Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

-

Example 3:

-

Input: grid = [[1,2,3],[4,5,6],[7,8,9]], k = 9
Output: [[1,2,3],[4,5,6],[7,8,9]]

+

Example 2:

+

Input: nums = [0,0,0], target = 1
Output: 0

-

提示

    -
  • m == grid.length
  • -
  • n == grid[i].length
  • -
  • 1 <= m <= 50
  • -
  • 1 <= n <= 50
  • -
  • -1000 <= grid[i][j] <= 1000
  • -
  • 0 <= k <= 100
  • -
-

解析

这个题主要是矩阵或者说数组的操作,并且题目要返回的是个 List,所以也不用原地操作,只需要找对位置就可以了,k 是多少就相当于让这个二维数组头尾衔接移动 k 个元素

-

代码

public List<List<Integer>> shiftGrid(int[][] grid, int k) {
-        // 行数
-        int m = grid.length;
-        // 列数
-        int n = grid[0].length;
-        // 偏移值,取下模
-        k = k % (m * n);
-        // 反向取下数量,因为我打算直接从头填充新的矩阵
-        /*
-         *    比如
-         *    1 2 3
-         *    4 5 6
-         *    7 8 9
-         *    需要变成
-         *    9 1 2
-         *    3 4 5
-         *    6 7 8
-         *    就要从 9 开始填充
-         */
-        int reverseK = m * n - k;
-        List<List<Integer>> matrix = new ArrayList<>();
-        // 这类就是两层循环
-        for (int i = 0; i < m; i++) {
-            List<Integer> line = new ArrayList<>();
-            for (int j = 0; j < n; j++) {
-                // 数量会随着循环迭代增长, 确认是第几个
-                int currentNum = reverseK + i * n +  (j + 1);
-                // 这里处理下到达矩阵末尾后减掉 m * n
-                if (currentNum > m * n) {
-                    currentNum -= m * n;
-                }
-                // 根据矩阵列数 n 算出在原来矩阵的位置
-                int last = (currentNum - 1) % n;
-                int passLine = (currentNum - 1) / n;
-
-                line.add(grid[passLine][last]);
-            }
-            matrix.add(line);
-        }
-        return matrix;
-    }
- -

结果数据


比较慢

-]]> - - Java - leetcode - - - leetcode - java - 题解 - Shift 2D Grid - - - - Leetcode 16 最接近的三数之和 ( 3Sum Closest *Medium* ) 题解分析 - /2022/08/06/Leetcode-16-%E6%9C%80%E6%8E%A5%E8%BF%91%E7%9A%84%E4%B8%89%E6%95%B0%E4%B9%8B%E5%92%8C-3Sum-Closest-Medium-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 题目介绍

Given an integer array nums of length n and an integer target, find three integers in nums such that the sum is closest to target.

-

Return the sum of the three integers.

-

You may assume that each input would have exactly one solution.

-

简单解释下就是之前是要三数之和等于目标值,现在是找到最接近的三数之和。

-

示例

Example 1:

-

Input: nums = [-1,2,1,-4], target = 1
Output: 2
Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

-
-

Example 2:

-

Input: nums = [0,0,0], target = 1
Output: 0

-
-

Constraints:

    -
  • 3 <= nums.length <= 1000
  • -
  • -1000 <= nums[i] <= 1000
  • -
  • -10^4 <= target <= 10^4
  • +

    Constraints:

      +
    • 3 <= nums.length <= 1000
    • +
    • -1000 <= nums[i] <= 1000
    • +
    • -10^4 <= target <= 10^4

    简单解析

    这个题思路上来讲不难,也是用原来三数之和的方式去做,利用”双指针法”或者其它描述法,但是需要简化逻辑

    code

    public int threeSumClosest(int[] nums, int target) {
    @@ -3949,6 +3949,67 @@ Input Explanation: The intersected node's value is 8 (note that this must no
             Linked List
           
       
    +  
    +    Leetcode 2 Add Two Numbers 题解分析
    +    /2020/10/11/Leetcode-2-Add-Two-Numbers-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/
    +    又 roll 到了一个以前做过的题,不过现在用 Java 也来写一下,是 easy 级别的,所以就简单说下

    +

    简要介绍

    You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.

    +

    You may assume the two numbers do not contain any leading zero, except the number 0 itself.
    就是给了两个链表,用来表示两个非负的整数,在链表中倒序放着,每个节点包含一位的数字,把他们加起来以后也按照原来的链表结构输出

    +

    样例

    example 1

    Input: l1 = [2,4,3], l2 = [5,6,4]
    +Output: [7,0,8]
    +Explanation: 342 + 465 = 807.
    + +

    example 2

    Input: l1 = [0], l2 = [0]
    +Output: [0]
    + +

    example 3

    Input: l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
    +Output: [8,9,9,9,0,0,0,1]
    + +

    题解

    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
    +        ListNode root = new ListNode();
    +        if (l1 == null && l2 == null) {
    +            return root;
    +        }
    +        ListNode tail = root;
    +        int entered = 0;
    +        // 这个条件加了 entered,就是还有进位的数
    +        while (l1 != null || l2 != null || entered != 0) {
    +            int temp = entered;
    +            if (l1 != null) {
    +                temp += l1.val;
    +                l1 = l1.next;
    +            }
    +            if (l2 != null) {
    +                temp += l2.val;
    +                l2 = l2.next;
    +            }
    +            entered = (temp - temp % 10) / 10;
    +            tail.val = temp % 10;
    +            // 循环内部的控制是为了排除最后的空节点
    +            if (l1 != null || l2 != null || entered != 0) {
    +                tail.next = new ListNode();
    +                tail = tail.next;
    +            }
    +        }
    +//        tail = null;
    +        return root;
    +    }
    +

    这里唯二需要注意的就是两个点,一个是循环条件需要包含进位值还存在的情况,还有一个是最后一个节点,如果是空的了,就不要在 new 一个出来了,写的比较挫

    +]]>
    + + Java + leetcode + java + linked list + linked list + + + leetcode + java + 题解 + linked list + +
    Leetcode 1862 向下取整数对和 ( Sum of Floored Pairs *Hard* ) 题解分析 /2022/09/11/Leetcode-1862-%E5%90%91%E4%B8%8B%E5%8F%96%E6%95%B4%E6%95%B0%E5%AF%B9%E5%92%8C-Sum-of-Floored-Pairs-Hard-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ @@ -4011,67 +4072,6 @@ Input Explanation: The intersected node's value is 8 (note that this must no 题解 - - Leetcode 2 Add Two Numbers 题解分析 - /2020/10/11/Leetcode-2-Add-Two-Numbers-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 又 roll 到了一个以前做过的题,不过现在用 Java 也来写一下,是 easy 级别的,所以就简单说下

    -

    简要介绍

    You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.

    -

    You may assume the two numbers do not contain any leading zero, except the number 0 itself.
    就是给了两个链表,用来表示两个非负的整数,在链表中倒序放着,每个节点包含一位的数字,把他们加起来以后也按照原来的链表结构输出

    -

    样例

    example 1

    Input: l1 = [2,4,3], l2 = [5,6,4]
    -Output: [7,0,8]
    -Explanation: 342 + 465 = 807.
    - -

    example 2

    Input: l1 = [0], l2 = [0]
    -Output: [0]
    - -

    example 3

    Input: l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
    -Output: [8,9,9,9,0,0,0,1]
    - -

    题解

    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
    -        ListNode root = new ListNode();
    -        if (l1 == null && l2 == null) {
    -            return root;
    -        }
    -        ListNode tail = root;
    -        int entered = 0;
    -        // 这个条件加了 entered,就是还有进位的数
    -        while (l1 != null || l2 != null || entered != 0) {
    -            int temp = entered;
    -            if (l1 != null) {
    -                temp += l1.val;
    -                l1 = l1.next;
    -            }
    -            if (l2 != null) {
    -                temp += l2.val;
    -                l2 = l2.next;
    -            }
    -            entered = (temp - temp % 10) / 10;
    -            tail.val = temp % 10;
    -            // 循环内部的控制是为了排除最后的空节点
    -            if (l1 != null || l2 != null || entered != 0) {
    -                tail.next = new ListNode();
    -                tail = tail.next;
    -            }
    -        }
    -//        tail = null;
    -        return root;
    -    }
    -

    这里唯二需要注意的就是两个点,一个是循环条件需要包含进位值还存在的情况,还有一个是最后一个节点,如果是空的了,就不要在 new 一个出来了,写的比较挫

    -]]>
    - - Java - leetcode - java - linked list - linked list - - - leetcode - java - 题解 - linked list - -
    Leetcode 20 有效的括号 ( Valid Parentheses *Easy* ) 题解分析 /2022/07/02/Leetcode-20-%E6%9C%89%E6%95%88%E7%9A%84%E6%8B%AC%E5%8F%B7-Valid-Parentheses-Easy-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ @@ -4215,6 +4215,53 @@ Output: [8,9,9,9,0,0,0,1] + + Leetcode 278 第一个错误的版本 ( First Bad Version *Easy* ) 题解分析 + /2022/08/14/Leetcode-278-%E7%AC%AC%E4%B8%80%E4%B8%AA%E9%94%99%E8%AF%AF%E7%9A%84%E7%89%88%E6%9C%AC-First-Bad-Version-Easy-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + 题目介绍

    You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based on the previous version, all the versions after a bad version are also bad.

    +

    Suppose you have n versions [1, 2, ..., n] and you want to find out the first bad one, which causes all the following ones to be bad.

    +

    You are given an API bool isBadVersion(version) which returns whether version is bad. Implement a function to find the first bad version. You should minimize the number of calls to the API.

    +

    示例

    Example 1:

    +

    Input: n = 5, bad = 4
    Output: 4
    Explanation:
    call isBadVersion(3) -> false
    call isBadVersion(5) -> true
    call isBadVersion(4) -> true
    Then 4 is the first bad version.

    +
    +

    Example 2:

    +

    Input: n = 1, bad = 1
    Output: 1

    +
    +

    简析

    简单来说就是一个二分查找,但是这个问题其实处理起来还是需要搞清楚一些边界问题

    +

    代码

    public int firstBadVersion(int n) {
    +    // 类似于双指针法
    +    int left = 1, right = n, mid;
    +    while (left < right) {
    +        // 取中点
    +        mid = left + (right - left) / 2;
    +        // 如果不是错误版本,就往右找
    +        if (!isBadVersion(mid)) {
    +            left = mid + 1;
    +        } else {
    +        // 如果是的话就往左查找
    +            right = mid;
    +        }
    +    }
    +    // 这里考虑交界情况是,在上面循环中如果 left 是好的,right 是坏的,那进入循环的时候 mid == left
    +    // 然后 left = mid + 1 就会等于 right,循环条件就跳出了,此时 left 就是那个起始的错误点了
    +    // 其实这两个是同一个值
    +    return left;
    +}
    + +

    往右移动示例

    往左移动示例

    +

    结果

    +]]>
    + + Java + leetcode + + + leetcode + java + 题解 + First Bad Version + +
    Leetcode 236 二叉树的最近公共祖先(Lowest Common Ancestor of a Binary Tree) 题解分析 /2021/05/23/Leetcode-236-%E4%BA%8C%E5%8F%89%E6%A0%91%E7%9A%84%E6%9C%80%E8%BF%91%E5%85%AC%E5%85%B1%E7%A5%96%E5%85%88-Lowest-Common-Ancestor-of-a-Binary-Tree-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ @@ -4263,53 +4310,6 @@ Output: [8,9,9,9,0,0,0,1] - - Leetcode 278 第一个错误的版本 ( First Bad Version *Easy* ) 题解分析 - /2022/08/14/Leetcode-278-%E7%AC%AC%E4%B8%80%E4%B8%AA%E9%94%99%E8%AF%AF%E7%9A%84%E7%89%88%E6%9C%AC-First-Bad-Version-Easy-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 题目介绍

    You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based on the previous version, all the versions after a bad version are also bad.

    -

    Suppose you have n versions [1, 2, ..., n] and you want to find out the first bad one, which causes all the following ones to be bad.

    -

    You are given an API bool isBadVersion(version) which returns whether version is bad. Implement a function to find the first bad version. You should minimize the number of calls to the API.

    -

    示例

    Example 1:

    -

    Input: n = 5, bad = 4
    Output: 4
    Explanation:
    call isBadVersion(3) -> false
    call isBadVersion(5) -> true
    call isBadVersion(4) -> true
    Then 4 is the first bad version.

    -
    -

    Example 2:

    -

    Input: n = 1, bad = 1
    Output: 1

    -
    -

    简析

    简单来说就是一个二分查找,但是这个问题其实处理起来还是需要搞清楚一些边界问题

    -

    代码

    public int firstBadVersion(int n) {
    -    // 类似于双指针法
    -    int left = 1, right = n, mid;
    -    while (left < right) {
    -        // 取中点
    -        mid = left + (right - left) / 2;
    -        // 如果不是错误版本,就往右找
    -        if (!isBadVersion(mid)) {
    -            left = mid + 1;
    -        } else {
    -        // 如果是的话就往左查找
    -            right = mid;
    -        }
    -    }
    -    // 这里考虑交界情况是,在上面循环中如果 left 是好的,right 是坏的,那进入循环的时候 mid == left
    -    // 然后 left = mid + 1 就会等于 right,循环条件就跳出了,此时 left 就是那个起始的错误点了
    -    // 其实这两个是同一个值
    -    return left;
    -}
    - -

    往右移动示例

    往左移动示例

    -

    结果

    -]]>
    - - Java - leetcode - - - leetcode - java - 题解 - First Bad Version - -
    Leetcode 3 Longest Substring Without Repeating Characters 题解分析 /2020/09/20/Leetcode-3-Longest-Substring-Without-Repeating-Characters-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ @@ -4516,6 +4516,80 @@ Output: 0 + + Leetcode 42 接雨水 (Trapping Rain Water) 题解分析 + /2021/07/04/Leetcode-42-%E6%8E%A5%E9%9B%A8%E6%B0%B4-Trapping-Rain-Water-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + 题目介绍

    给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。

    +

    示例


    输入:height = [0,1,0,2,1,0,1,3,2,1,2,1]
    输出:6
    解释:上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] 表示的高度图,在这种情况下,可以接 6 个单位的雨水(蓝色部分表示雨水)。

    +

    简单分析

    其实最开始的想法是从左到右扫区间,就是示例中的第一个水槽跟第二个水槽都可以用这个办法解决

    前面这种是属于右侧比左侧高的情况,对于左侧高右侧低的就不行了,(写这篇的时候想起来可以再反着扫一遍可能可以)

    所以这个方案不好,贴一下这个方案的代码

    +
    public int trap(int[] height) {
    +    int lastLeft = -1;
    +    int sum = 0;
    +    int tempSum = 0;
    +    boolean startFlag = true;
    +    for (int j : height) {
    +        if (startFlag && j <= 0) {
    +            startFlag = false;
    +            continue;
    +        }
    +        if (j >= lastLeft) {
    +            sum += tempSum;
    +            tempSum = 0;
    +            lastLeft = j;
    +        } else {
    +            tempSum += lastLeft - j;
    +        }
    +    }
    +    return sum;
    +}
    +

    后面结合网上的解法,其实可以反过来,对于每个格子找左右侧的最大值,取小的那个和当前格子的差值就是这一个的储水量了

    理解了这种想法,代码其实就不难了

    +

    代码

    int n = height.length;
    +if (n <= 2) {
    +    return 0;
    +}
    +// 思路转变下,其实可以对于每一格算储水量,算法就是找到这一格左边的最高点跟这一格右边的最高点,
    +// 比较两侧的最高点,取小的那个,然后再跟当前格子的高度对比,差值就是当前格的储水量
    +int maxL[] = new int[n];
    +int maxR[] = new int[n];
    +int max = height[0];
    +maxL[0] = 0;
    +// 计算左侧的最高点
    +for (int i = 1; i < n - 1; i++) {
    +    maxL[i] = max;
    +    if (max < height[i]) {
    +        max = height[i];
    +    }
    +}
    +max = height[n - 1];
    +maxR[n - 1] = 0;
    +int tempSum, sum = 0;
    +// 计算右侧的最高点,并且同步算出来储水量,节省一个循环
    +for (int i = n - 2; i > 0; i--) {
    +    maxR[i] = max;
    +    if (height[i] > max) {
    +        max = height[i];
    +    }
    +    tempSum = Math.min(maxL[i], maxR[i]) - height[i];
    +    if (tempSum > 0) {
    +        sum += tempSum;
    +    }
    +}
    +return sum;
    +]]>
    + + Java + leetcode + + + leetcode + java + dp + 代码题解 + Trapping Rain Water + 接雨水 + Leetcode 42 + +
    Leetcode 48 旋转图像(Rotate Image) 题解分析 /2021/05/01/Leetcode-48-%E6%97%8B%E8%BD%AC%E5%9B%BE%E5%83%8F-Rotate-Image-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ @@ -5041,45 +5115,6 @@ OS name: "mac os x", version: "10.14.6", arch: "x86_64& c++ - - Redis_分布式锁 - /2019/12/10/Redis-Part-1/ - 今天看了一下 redis 分布式锁 redlock 的实现,简单记录下,

    -

    加锁

    原先我对 redis 锁的概念就是加锁使用 setnx,解锁使用 lua 脚本,但是 setnx 具体是啥,lua 脚本是啥不是很清楚
    首先简单思考下这个问题,首先为啥不是先 get 一下 key 存不存在,然后再 set 一个 key value,因为加锁这个操作我们是要保证两点,一个是不能中途被打断,也就是说要原子性,如果是先 get 一下 key,如果不存在再 set 值的话,那就不是原子操作了;第二个是可不可以直接 set 值呢,显然不行,锁要保证唯一性,有且只能有一个线程或者其他应用单位获得该锁,正好 setnx 给了我们这种原子命令

    -

    然后是 setnx 的键和值分别是啥,键比较容易想到是要锁住的资源,比如 user_id, 这里有个我自己之前比较容易陷进去的误区,但是这个误区后
    面再说,这里其实是把user_id 作为要锁住的资源,在我获得锁的时候别的线程不允许操作,以此保证业务的正确性,不会被多个线程同时修改,确定了键,再来看看值是啥,其实原先我认为值是啥都没关系,我只要锁住了,光键就够我用了,但是考虑下多个线程的问题,如果我这个线程加了锁,然后我因为 gc 停顿等原因卡死了,这个时候redis 的锁或者说就是 redis 的缓存已经过期了,这时候另一个线程获得锁成功,然后我这个线程又活过来了,然后我就仍然认为我拿着锁,我去对数据进行修改或者释放锁,是不是就出现问题了,所以是不是我们还需要一个东西来区分这个锁是哪个线程加的,所以我们可以将值设置成为一个线程独有识别的值,至少在相对长的一段时间内不会重复。

    -

    上面其实还有两个问题,一个是当 gc 超时时,我这个线程如何知道我手里的锁已经过期了,一种方法是我在加好锁之后就维护一个超时时间,这里其实还有个问题,不过跟第二个问题相关,就一起说了,就是设置超时时间,有些对于不是锁的 redis 缓存操作可以是先设置好值,然后在设置过期时间,那么这就又有上面说到的不是原子性的问题,那么就需要在同一条指令里把超时时间也设置了,幸好 redis 提供了这种支持

    -
    SET resource_name my_random_value NX PX 30000
    -

    这里借鉴一下解释下,resource_name就是 key,代表要锁住的东西,my_random_value就是识别我这个线程的,NX代表只有在不存在的时候才设置,然后PX 30000表示超时时间是 30秒自动过期

    -

    PS:记录下我原先有的一个误区,是不是要用 key 来区分加锁的线程,这样只有一个用处,就是自身线程可以识别是否是自己加的锁,但是最大的问题是别的线程不知道,其实这个用户的出发点是我在担心前面提过的一个问题,就是当 gc 停顿后,我要去判断当前的这个锁是否是我加的,还有就是当释放锁的时候,如果保证不会错误释放了其他线程加的锁,但是这样附带很多其他问题,最大的就是其他线程怎么知道能不能加这个锁。

    -

    解锁

    当线程在锁过期之前就处理完了业务逻辑,那就可以提前释放这个锁,那么提前释放要怎么操作,直接del key显然是不行的,因为这样就是我前面想用线程随机值加资源名作为锁的初衷,我不能去释放别的线程加的锁,那么我要怎么办呢,先 get 一下看是不是我的?那又变成非原子的操作了,幸好redis 也考虑到了这个问题,给了lua 脚本来操作这种

    -
    if redis.call("get",KEYS[1]) == ARGV[1] then
    -    return redis.call("del",KEYS[1])
    -else
    -    return 0
    -end
    -

    这里的KEYS[1]就是前面加锁的resource_name,ARGV[1]就是线程的随机值my_random_value

    -

    多节点

    前面说的其实是单节点 redis 作为分布式锁的情况,那么当我们的 redis 有多节点的情况呢,如果多节点下处于加锁或者解锁或者锁有效情况下
    redis 的某个节点宕掉了怎么办,这里就有一些需要思考的地方,是否单独搞一个单节点的 redis作为分布式锁专用的,但是如果这个单节点的挂了呢,还有就是成本问题,所以我们需要一个多节点的分布式锁方案
    这里就引出了开头说到的redlock,这个可是 redis的作者写的, 他的加锁过程是分以下几步去做这个事情

    -
      -
    • 获取当前时间(毫秒数)。
    • -
    • 按顺序依次向N个Redis节点执行获取锁的操作。这个获取操作跟前面基于单Redis节点的获取锁的过程相同,包含随机字符串my_random_value,也包含过期时间(比如PX 30000,即锁的有效时间)。为了保证在某个Redis节点不可用的时候算法能够继续运行,这个获取锁的操作还有一个超时时间(time out),它要远小于锁的有效时间(几十毫秒量级)。客户端在向某个Redis节点获取锁失败以后,应该立即尝试下一个Redis节点。这里的失败,应该包含任何类型的失败,比如该Redis节点不可用,或者该Redis节点上的锁已经被其它客户端持有(注:Redlock原文中这里只提到了Redis节点不可用的情况,但也应该包含其它的失败情况)。
    • -
    • 计算整个获取锁的过程总共消耗了多长时间,计算方法是用当前时间减去第1步记录的时间。如果客户端从大多数Redis节点(>= N/2+1)成功获取到了锁,并且获取锁总共消耗的时间没有超过锁的有效时间(lock validity time),那么这时客户端才认为最终获取锁成功;否则,认为最终获取锁失败。
    • -
    • 如果最终获取锁成功了,那么这个锁的有效时间应该重新计算,它等于最初的锁的有效时间减去第3步计算出来的获取锁消耗的时间。
    • -
    • 如果最终获取锁失败了(可能由于获取到锁的Redis节点个数少于N/2+1,或者整个获取锁的过程消耗的时间超过了锁的最初有效时间),那么客户端应该立即向所有Redis节点发起释放锁的操作(即前面介绍的Redis Lua脚本)。
      释放锁的过程比较简单:客户端向所有Redis节点发起释放锁的操作,不管这些节点当时在获取锁的时候成功与否。这里为什么要向所有的节点发送释放锁的操作呢,这里是因为有部分的节点的失败原因可能是加锁时阻塞,加锁成功的结果没有及时返回,所以为了防止这种情况还是需要向所有发起这个释放锁的操作。
      初步记录就先到这。
    • -
    -]]>
    - - Redis - Distributed Lock - C - Redis - - - C - Redis - Distributed Lock - 分布式锁 - -
    Path Sum /2015/01/04/Path-Sum/ @@ -5132,6 +5167,45 @@ public: c++ + + Redis_分布式锁 + /2019/12/10/Redis-Part-1/ + 今天看了一下 redis 分布式锁 redlock 的实现,简单记录下,

    +

    加锁

    原先我对 redis 锁的概念就是加锁使用 setnx,解锁使用 lua 脚本,但是 setnx 具体是啥,lua 脚本是啥不是很清楚
    首先简单思考下这个问题,首先为啥不是先 get 一下 key 存不存在,然后再 set 一个 key value,因为加锁这个操作我们是要保证两点,一个是不能中途被打断,也就是说要原子性,如果是先 get 一下 key,如果不存在再 set 值的话,那就不是原子操作了;第二个是可不可以直接 set 值呢,显然不行,锁要保证唯一性,有且只能有一个线程或者其他应用单位获得该锁,正好 setnx 给了我们这种原子命令

    +

    然后是 setnx 的键和值分别是啥,键比较容易想到是要锁住的资源,比如 user_id, 这里有个我自己之前比较容易陷进去的误区,但是这个误区后
    面再说,这里其实是把user_id 作为要锁住的资源,在我获得锁的时候别的线程不允许操作,以此保证业务的正确性,不会被多个线程同时修改,确定了键,再来看看值是啥,其实原先我认为值是啥都没关系,我只要锁住了,光键就够我用了,但是考虑下多个线程的问题,如果我这个线程加了锁,然后我因为 gc 停顿等原因卡死了,这个时候redis 的锁或者说就是 redis 的缓存已经过期了,这时候另一个线程获得锁成功,然后我这个线程又活过来了,然后我就仍然认为我拿着锁,我去对数据进行修改或者释放锁,是不是就出现问题了,所以是不是我们还需要一个东西来区分这个锁是哪个线程加的,所以我们可以将值设置成为一个线程独有识别的值,至少在相对长的一段时间内不会重复。

    +

    上面其实还有两个问题,一个是当 gc 超时时,我这个线程如何知道我手里的锁已经过期了,一种方法是我在加好锁之后就维护一个超时时间,这里其实还有个问题,不过跟第二个问题相关,就一起说了,就是设置超时时间,有些对于不是锁的 redis 缓存操作可以是先设置好值,然后在设置过期时间,那么这就又有上面说到的不是原子性的问题,那么就需要在同一条指令里把超时时间也设置了,幸好 redis 提供了这种支持

    +
    SET resource_name my_random_value NX PX 30000
    +

    这里借鉴一下解释下,resource_name就是 key,代表要锁住的东西,my_random_value就是识别我这个线程的,NX代表只有在不存在的时候才设置,然后PX 30000表示超时时间是 30秒自动过期

    +

    PS:记录下我原先有的一个误区,是不是要用 key 来区分加锁的线程,这样只有一个用处,就是自身线程可以识别是否是自己加的锁,但是最大的问题是别的线程不知道,其实这个用户的出发点是我在担心前面提过的一个问题,就是当 gc 停顿后,我要去判断当前的这个锁是否是我加的,还有就是当释放锁的时候,如果保证不会错误释放了其他线程加的锁,但是这样附带很多其他问题,最大的就是其他线程怎么知道能不能加这个锁。

    +

    解锁

    当线程在锁过期之前就处理完了业务逻辑,那就可以提前释放这个锁,那么提前释放要怎么操作,直接del key显然是不行的,因为这样就是我前面想用线程随机值加资源名作为锁的初衷,我不能去释放别的线程加的锁,那么我要怎么办呢,先 get 一下看是不是我的?那又变成非原子的操作了,幸好redis 也考虑到了这个问题,给了lua 脚本来操作这种

    +
    if redis.call("get",KEYS[1]) == ARGV[1] then
    +    return redis.call("del",KEYS[1])
    +else
    +    return 0
    +end
    +

    这里的KEYS[1]就是前面加锁的resource_name,ARGV[1]就是线程的随机值my_random_value

    +

    多节点

    前面说的其实是单节点 redis 作为分布式锁的情况,那么当我们的 redis 有多节点的情况呢,如果多节点下处于加锁或者解锁或者锁有效情况下
    redis 的某个节点宕掉了怎么办,这里就有一些需要思考的地方,是否单独搞一个单节点的 redis作为分布式锁专用的,但是如果这个单节点的挂了呢,还有就是成本问题,所以我们需要一个多节点的分布式锁方案
    这里就引出了开头说到的redlock,这个可是 redis的作者写的, 他的加锁过程是分以下几步去做这个事情

    +
      +
    • 获取当前时间(毫秒数)。
    • +
    • 按顺序依次向N个Redis节点执行获取锁的操作。这个获取操作跟前面基于单Redis节点的获取锁的过程相同,包含随机字符串my_random_value,也包含过期时间(比如PX 30000,即锁的有效时间)。为了保证在某个Redis节点不可用的时候算法能够继续运行,这个获取锁的操作还有一个超时时间(time out),它要远小于锁的有效时间(几十毫秒量级)。客户端在向某个Redis节点获取锁失败以后,应该立即尝试下一个Redis节点。这里的失败,应该包含任何类型的失败,比如该Redis节点不可用,或者该Redis节点上的锁已经被其它客户端持有(注:Redlock原文中这里只提到了Redis节点不可用的情况,但也应该包含其它的失败情况)。
    • +
    • 计算整个获取锁的过程总共消耗了多长时间,计算方法是用当前时间减去第1步记录的时间。如果客户端从大多数Redis节点(>= N/2+1)成功获取到了锁,并且获取锁总共消耗的时间没有超过锁的有效时间(lock validity time),那么这时客户端才认为最终获取锁成功;否则,认为最终获取锁失败。
    • +
    • 如果最终获取锁成功了,那么这个锁的有效时间应该重新计算,它等于最初的锁的有效时间减去第3步计算出来的获取锁消耗的时间。
    • +
    • 如果最终获取锁失败了(可能由于获取到锁的Redis节点个数少于N/2+1,或者整个获取锁的过程消耗的时间超过了锁的最初有效时间),那么客户端应该立即向所有Redis节点发起释放锁的操作(即前面介绍的Redis Lua脚本)。
      释放锁的过程比较简单:客户端向所有Redis节点发起释放锁的操作,不管这些节点当时在获取锁的时候成功与否。这里为什么要向所有的节点发送释放锁的操作呢,这里是因为有部分的节点的失败原因可能是加锁时阻塞,加锁成功的结果没有及时返回,所以为了防止这种情况还是需要向所有发起这个释放锁的操作。
      初步记录就先到这。
    • +
    +]]>
    + + Redis + Distributed Lock + C + Redis + + + C + Redis + Distributed Lock + 分布式锁 + +
    Reverse Bits /2015/03/11/Reverse-Bits/ @@ -5447,32 +5521,6 @@ EXPOSE 80 - - docker比一般多一点的初学者介绍四 - /2022/12/25/docker%E6%AF%94%E4%B8%80%E8%88%AC%E5%A4%9A%E4%B8%80%E7%82%B9%E7%9A%84%E5%88%9D%E5%AD%A6%E8%80%85%E4%BB%8B%E7%BB%8D%E5%9B%9B/ - 这次单独介绍下docker体系里非常重要的cgroup,docker对资源的限制也是基于cgroup构建的,
    简单尝试
    新建一个shell脚本

    -
    #!/bin/bash
    -while true;do
    -    echo "1"
    -done
    - -

    直接执行的话就是单核100%的cpu

    -

    首先在cgroup下面建个目录

    -
    mkdir -p /sys/fs/cgroup/cpu/sxs_test/
    -

    查看目录下的文件

    其中cpuacct开头的表示cpu相关的统计信息,
    我们要配置cpu的额度,是在cpu.cfs_quota_us中

    -
    echo 2000 > /sys/fs/cgroup/cpu/sxs_test/cpu.cfs_quota_us  
    -

    这样表示可以使用2%的cpu,总的配额是在cpu.cfs_period_us中

    -

    然后将当前进程输入到cgroup.procs,

    -
    echo $$ > /sys/fs/cgroup/cpu/sxs_test/cgroup.procs
    -

    这样就会自动继承当前进程产生的新进程
    再次执行就可以看到cpu被限制了

    -]]>
    - - Docker - - - Docker - -
    docker比一般多一点的初学者介绍二 /2020/03/15/docker%E6%AF%94%E4%B8%80%E8%88%AC%E5%A4%9A%E4%B8%80%E7%82%B9%E7%9A%84%E5%88%9D%E5%AD%A6%E8%80%85%E4%BB%8B%E7%BB%8D%E4%BA%8C/ @@ -5513,6 +5561,32 @@ EXPOSE 80 + + docker比一般多一点的初学者介绍四 + /2022/12/25/docker%E6%AF%94%E4%B8%80%E8%88%AC%E5%A4%9A%E4%B8%80%E7%82%B9%E7%9A%84%E5%88%9D%E5%AD%A6%E8%80%85%E4%BB%8B%E7%BB%8D%E5%9B%9B/ + 这次单独介绍下docker体系里非常重要的cgroup,docker对资源的限制也是基于cgroup构建的,
    简单尝试
    新建一个shell脚本

    +
    #!/bin/bash
    +while true;do
    +    echo "1"
    +done
    + +

    直接执行的话就是单核100%的cpu

    +

    首先在cgroup下面建个目录

    +
    mkdir -p /sys/fs/cgroup/cpu/sxs_test/
    +

    查看目录下的文件

    其中cpuacct开头的表示cpu相关的统计信息,
    我们要配置cpu的额度,是在cpu.cfs_quota_us中

    +
    echo 2000 > /sys/fs/cgroup/cpu/sxs_test/cpu.cfs_quota_us  
    +

    这样表示可以使用2%的cpu,总的配额是在cpu.cfs_period_us中

    +

    然后将当前进程输入到cgroup.procs,

    +
    echo $$ > /sys/fs/cgroup/cpu/sxs_test/cgroup.procs
    +

    这样就会自动继承当前进程产生的新进程
    再次执行就可以看到cpu被限制了

    +]]>
    + + Docker + + + Docker + +
    dubbo 客户端配置的一个重要知识点 /2022/06/11/dubbo-%E5%AE%A2%E6%88%B7%E7%AB%AF%E9%85%8D%E7%BD%AE%E7%9A%84%E4%B8%80%E4%B8%AA%E9%87%8D%E8%A6%81%E7%9F%A5%E8%AF%86%E7%82%B9/ @@ -5690,6 +5764,55 @@ myusername ALL = this original tweet by Max Howell:

    +
    +

    Google: 90% of our engineers use the software you wrote (Homebrew),
    but you can’t invert a binary tree on a whiteboard so fuck off.

    +
    +
    /**
    + * Definition for a binary tree node.
    + * struct TreeNode {
    + *     int val;
    + *     TreeNode *left;
    + *     TreeNode *right;
    + *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
    + * };
    + */
    +class Solution {
    +public:
    +    TreeNode* invertTree(TreeNode* root) {
    +        if(root == NULL) return root;
    +        TreeNode* temp;
    +        temp = invertTree(root->left);
    +        root->left = invertTree(root->right);
    +        root->right = temp;
    +        return root;
    +    }
    +};
    ]]> + + leetcode + + + leetcode + c++ + +
    minimum-size-subarray-sum-209 /2016/10/11/minimum-size-subarray-sum-209/ @@ -5807,55 +5930,6 @@ separator CDATA #IMPLIED Mybatis - - invert-binary-tree - /2015/06/22/invert-binary-tree/ - Invert a binary tree

    -
         4
    -   /   \
    -  2     7
    - / \   / \
    -1   3 6   9
    -
    -

    to

    -
         4
    -   /   \
    -  7     2
    - / \   / \
    -9   6 3   1
    -
    -

    Trivia:
    This problem was inspired by this original tweet by Max Howell:

    -
    -

    Google: 90% of our engineers use the software you wrote (Homebrew),
    but you can’t invert a binary tree on a whiteboard so fuck off.

    -
    -
    /**
    - * Definition for a binary tree node.
    - * struct TreeNode {
    - *     int val;
    - *     TreeNode *left;
    - *     TreeNode *right;
    - *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
    - * };
    - */
    -class Solution {
    -public:
    -    TreeNode* invertTree(TreeNode* root) {
    -        if(root == NULL) return root;
    -        TreeNode* temp;
    -        temp = invertTree(root->left);
    -        root->left = invertTree(root->right);
    -        root->right = temp;
    -        return root;
    -    }
    -};
    ]]>
    - - leetcode - - - leetcode - c++ - -
    mybatis 的 $ 和 # 是有啥区别 /2020/09/06/mybatis-%E7%9A%84-%E5%92%8C-%E6%98%AF%E6%9C%89%E5%95%A5%E5%8C%BA%E5%88%AB/ @@ -6196,44 +6270,71 @@ public class DynamicSqlSource implements SqlSource { - mybatis系列-dataSource解析 - /2023/01/08/mybatis%E7%B3%BB%E5%88%97-dataSource%E8%A7%A3%E6%9E%90/ - DataSource 作为数据库查询的最重要的数据源,在 mybatis 中也展开来说下
    首先是解析的过程

    -
    SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
    + mybatis系列-mybatis是如何初始化mapper的 + /2022/12/04/mybatis%E6%98%AF%E5%A6%82%E4%BD%95%E5%88%9D%E5%A7%8B%E5%8C%96mapper%E7%9A%84/ + 前一篇讲了mybatis的初始化使用,如果我第一次看到这个使用入门文档,比较会产生疑惑的是配置了mapper,怎么就能通过selectOne跟语句id就能执行sql了,那么第一个问题,就是mapper是怎么被解析的,存在哪里,怎么被拿出来的

    +

    添加解析mapper

    org.apache.ibatis.session.SqlSessionFactoryBuilder#build(java.io.InputStream)
    +public SqlSessionFactory build(InputStream inputStream) {
    +  return build(inputStream, null, null);
    +}
    -

    在构建 SqlSessionFactory 也就是 DefaultSqlSessionFactory 的时候,

    -
    public SqlSessionFactory build(InputStream inputStream) {
    -    return build(inputStream, null, null);
    -  }
    -public SqlSessionFactory build(InputStream inputStream, String environment, Properties properties) {
    +

    通过读取mybatis-config.xml来构建SqlSessionFactory,

    +
    public SqlSessionFactory build(InputStream inputStream, String environment, Properties properties) {
    +  try {
    +    // 创建下xml的解析器
    +    XMLConfigBuilder parser = new XMLConfigBuilder(inputStream, environment, properties);
    +    // 进行解析,后再构建
    +    return build(parser.parse());
    +  } catch (Exception e) {
    +    throw ExceptionFactory.wrapException("Error building SqlSession.", e);
    +  } finally {
    +    ErrorContext.instance().reset();
         try {
    -      XMLConfigBuilder parser = new XMLConfigBuilder(inputStream, environment, properties);
    -      return build(parser.parse());
    -    } catch (Exception e) {
    -      throw ExceptionFactory.wrapException("Error building SqlSession.", e);
    -    } finally {
    -      ErrorContext.instance().reset();
    -      try {
    -      	if (inputStream != null) {
    -      	  inputStream.close();
    -      	}
    -      } catch (IOException e) {
    -        // Intentionally ignore. Prefer previous error.
    -      }
    +       if (inputStream != null) {
    +         inputStream.close();
    +       }
    +    } catch (IOException e) {
    +      // Intentionally ignore. Prefer previous error.
         }
    -  }
    -

    前面也说过,就是解析 mybatis-config.xmlConfiguration

    + }
    + +

    创建XMLConfigBuilder

    +
    public XMLConfigBuilder(InputStream inputStream, String environment, Properties props) {
    +    // --------> 创建 XPathParser
    +  this(new XPathParser(inputStream, true, props, new XMLMapperEntityResolver()), environment, props);
    +}
    +
    +public XPathParser(InputStream inputStream, boolean validation, Properties variables, EntityResolver entityResolver) {
    +    commonConstructor(validation, variables, entityResolver);
    +    this.document = createDocument(new InputSource(inputStream));
    +  }
    +
    +private XMLConfigBuilder(XPathParser parser, String environment, Properties props) {
    +  super(new Configuration());
    +  ErrorContext.instance().resource("SQL Mapper Configuration");
    +  this.configuration.setVariables(props);
    +  this.parsed = false;
    +  this.environment = environment;
    +  this.parser = parser;
    +}
    + +

    这里主要是创建了Builder包含了Parser
    然后调用parse方法

    public Configuration parse() {
       if (parsed) {
         throw new BuilderException("Each XMLConfigBuilder can only be used once.");
       }
    +  // 标记下是否已解析,但是这里是否有线程安全问题
       parsed = true;
    +  // --------> 解析配置
       parseConfiguration(parser.evalNode("/configuration"));
       return configuration;
    -}
    -private void parseConfiguration(XNode root) {
    +}
    + +

    实际的解析区分了各类标签

    +
    private void parseConfiguration(XNode root) {
       try {
         // issue #117 read properties first
    +    // 解析properties,这个不是spring自带的,需要额外配置,并且在config文件里应该放在最前
         propertiesElement(root.evalNode("properties"));
         Properties settings = settingsAsProperties(root.evalNode("settings"));
         loadCustomVfs(settings);
    @@ -6245,387 +6346,326 @@ public class DynamicSqlSource implements SqlSource {
         reflectorFactoryElement(root.evalNode("reflectorFactory"));
         settingsElement(settings);
         // read it after objectFactory and objectWrapperFactory issue #631
    -    // -------------> 是在这里解析了DataSource
         environmentsElement(root.evalNode("environments"));
         databaseIdProviderElement(root.evalNode("databaseIdProvider"));
         typeHandlerElement(root.evalNode("typeHandlers"));
    +    // ----------> 我们需要关注的是mapper的处理
         mapperElement(root.evalNode("mappers"));
       } catch (Exception e) {
         throw new BuilderException("Error parsing SQL Mapper Configuration. Cause: " + e, e);
       }
    -}
    -

    环境解析了这一块的内容

    -
    <environments default="development">
    -        <environment id="development">
    -            <transactionManager type="JDBC"/>
    -            <dataSource type="POOLED">
    -                <property name="driver" value="${driver}"/>
    -                <property name="url" value="${url}"/>
    -                <property name="username" value="${username}"/>
    -                <property name="password" value="${password}"/>
    -            </dataSource>
    -        </environment>
    -    </environments>
    -

    解析也是自上而下的,

    -
    private void environmentsElement(XNode context) throws Exception {
    -  if (context != null) {
    -    if (environment == null) {
    -      environment = context.getStringAttribute("default");
    -    }
    -    for (XNode child : context.getChildren()) {
    -      String id = child.getStringAttribute("id");
    -      if (isSpecifiedEnvironment(id)) {
    -        TransactionFactory txFactory = transactionManagerElement(child.evalNode("transactionManager"));
    -        DataSourceFactory dsFactory = dataSourceElement(child.evalNode("dataSource"));
    -        DataSource dataSource = dsFactory.getDataSource();
    -        Environment.Builder environmentBuilder = new Environment.Builder(id)
    -            .transactionFactory(txFactory)
    -            .dataSource(dataSource);
    -        configuration.setEnvironment(environmentBuilder.build());
    -        break;
    +}
    + +

    然后就是调用到mapperElement方法了

    +
    private void mapperElement(XNode parent) throws Exception {
    +  if (parent != null) {
    +    for (XNode child : parent.getChildren()) {
    +      if ("package".equals(child.getName())) {
    +        String mapperPackage = child.getStringAttribute("name");
    +        configuration.addMappers(mapperPackage);
    +      } else {
    +        String resource = child.getStringAttribute("resource");
    +        String url = child.getStringAttribute("url");
    +        String mapperClass = child.getStringAttribute("class");
    +        if (resource != null && url == null && mapperClass == null) {
    +          ErrorContext.instance().resource(resource);
    +          try(InputStream inputStream = Resources.getResourceAsStream(resource)) {
    +            XMLMapperBuilder mapperParser = new XMLMapperBuilder(inputStream, configuration, resource, configuration.getSqlFragments());
    +            // --------> 我们这没有指定package,所以是走到这
    +            mapperParser.parse();
    +          }
    +        } else if (resource == null && url != null && mapperClass == null) {
    +          ErrorContext.instance().resource(url);
    +          try(InputStream inputStream = Resources.getUrlAsStream(url)){
    +            XMLMapperBuilder mapperParser = new XMLMapperBuilder(inputStream, configuration, url, configuration.getSqlFragments());
    +            mapperParser.parse();
    +          }
    +        } else if (resource == null && url == null && mapperClass != null) {
    +          Class<?> mapperInterface = Resources.classForName(mapperClass);
    +          configuration.addMapper(mapperInterface);
    +        } else {
    +          throw new BuilderException("A mapper element may only specify a url, resource or class, but not more than one.");
    +        }
           }
         }
       }
    -}
    -

    前面第一步是解析事务管理器元素

    -
    private TransactionFactory transactionManagerElement(XNode context) throws Exception {
    -  if (context != null) {
    -    String type = context.getStringAttribute("type");
    -    Properties props = context.getChildrenAsProperties();
    -    TransactionFactory factory = (TransactionFactory) resolveClass(type).getDeclaredConstructor().newInstance();
    -    factory.setProperties(props);
    -    return factory;
    -  }
    -  throw new BuilderException("Environment declaration requires a TransactionFactory.");
    -}
    -

    而这里的 resolveClass 其实就使用了上一篇的 typeAliases 系统,这里是使用了 JdbcTransactionFactory 作为事务管理器,
    后面的就是 DataSourceFactory 的创建也是 DataSource 的创建

    -
    private DataSourceFactory dataSourceElement(XNode context) throws Exception {
    -  if (context != null) {
    -    String type = context.getStringAttribute("type");
    -    Properties props = context.getChildrenAsProperties();
    -    DataSourceFactory factory = (DataSourceFactory) resolveClass(type).getDeclaredConstructor().newInstance();
    -    factory.setProperties(props);
    -    return factory;
    +}
    + +

    核心就在这个parse()方法

    +
    public void parse() {
    +  if (!configuration.isResourceLoaded(resource)) {
    +    // -------> 然后就是走到这里,配置xml的mapper节点的内容
    +    configurationElement(parser.evalNode("/mapper"));
    +    configuration.addLoadedResource(resource);
    +    bindMapperForNamespace();
       }
    -  throw new BuilderException("Environment declaration requires a DataSourceFactory.");
    -}
    -

    因为在config文件中设置了Pooled,所以对应创建的就是 PooledDataSourceFactory
    但是这里其实有个比较需要注意的,mybatis 这里的其实是继承了 UnpooledDataSourceFactory
    将基础方法都放在了 UnpooledDataSourceFactory

    -
    public class PooledDataSourceFactory extends UnpooledDataSourceFactory {
     
    -  public PooledDataSourceFactory() {
    -    this.dataSource = new PooledDataSource();
    +  parsePendingResultMaps();
    +  parsePendingCacheRefs();
    +  parsePendingStatements();
    +}
    + +

    具体的处理逻辑

    +
    private void configurationElement(XNode context) {
    +  try {
    +    String namespace = context.getStringAttribute("namespace");
    +    if (namespace == null || namespace.isEmpty()) {
    +      throw new BuilderException("Mapper's namespace cannot be empty");
    +    }
    +    builderAssistant.setCurrentNamespace(namespace);
    +    cacheRefElement(context.evalNode("cache-ref"));
    +    cacheElement(context.evalNode("cache"));
    +    parameterMapElement(context.evalNodes("/mapper/parameterMap"));
    +    resultMapElements(context.evalNodes("/mapper/resultMap"));
    +    sqlElement(context.evalNodes("/mapper/sql"));
    +    // ------->  走到这,从上下文构建statement
    +    buildStatementFromContext(context.evalNodes("select|insert|update|delete"));
    +  } catch (Exception e) {
    +    throw new BuilderException("Error parsing Mapper XML. The XML location is '" + resource + "'. Cause: " + e, e);
       }
    +}
    +

    具体代码在这,从上下文构建statement,只不过区分了下databaseId

    +
    private void buildStatementFromContext(List<XNode> list) {
    +  if (configuration.getDatabaseId() != null) {
    +    buildStatementFromContext(list, configuration.getDatabaseId());
    +  }
    +  // -----> 判断databaseId
    +  buildStatementFromContext(list, null);
     }
    -

    这里只保留了在构造方法里创建 DataSource
    而这个 PooledDataSource 虽然没有直接继承 UnpooledDataSource,但其实
    在构造方法里也是

    -
    public PooledDataSource() {
    -  dataSource = new UnpooledDataSource();
    -}
    -

    至于为什么这么做呢应该也是考虑到能比较多的复用代码,因为 Pooled 其实跟 Unpooled 最重要的差别就在于是不是每次都重开连接
    使用连接池能够让应用在有大量查询的时候不用反复创建连接,省去了建联的网络等开销,Unpooled就是完成与数据库的连接,并可以获取该连接
    主要的代码

    -
    @Override
    -public Connection getConnection() throws SQLException {
    -  return doGetConnection(username, password);
    -}
     
    -@Override
    -public Connection getConnection(String username, String password) throws SQLException {
    -  return doGetConnection(username, password);
    -}
    -private Connection doGetConnection(String username, String password) throws SQLException {
    -  Properties props = new Properties();
    -  if (driverProperties != null) {
    -    props.putAll(driverProperties);
    +

    判断下databaseId

    +
    private void buildStatementFromContext(List<XNode> list, String requiredDatabaseId) {
    +  for (XNode context : list) {
    +    final XMLStatementBuilder statementParser = new XMLStatementBuilder(configuration, builderAssistant, context, requiredDatabaseId);
    +    try {
    +      // -------> 解析statement节点
    +      statementParser.parseStatementNode();
    +    } catch (IncompleteElementException e) {
    +      configuration.addIncompleteStatement(statementParser);
    +    }
       }
    -  if (username != null) {
    -    props.setProperty("user", username);
    +}
    + +

    接下来就是真正处理的xml语句内容的,各个节点的信息内容

    +
    public void parseStatementNode() {
    +  String id = context.getStringAttribute("id");
    +  String databaseId = context.getStringAttribute("databaseId");
    +
    +  if (!databaseIdMatchesCurrent(id, databaseId, this.requiredDatabaseId)) {
    +    return;
       }
    -  if (password != null) {
    -    props.setProperty("password", password);
    +
    +  String nodeName = context.getNode().getNodeName();
    +  SqlCommandType sqlCommandType = SqlCommandType.valueOf(nodeName.toUpperCase(Locale.ENGLISH));
    +  boolean isSelect = sqlCommandType == SqlCommandType.SELECT;
    +  boolean flushCache = context.getBooleanAttribute("flushCache", !isSelect);
    +  boolean useCache = context.getBooleanAttribute("useCache", isSelect);
    +  boolean resultOrdered = context.getBooleanAttribute("resultOrdered", false);
    +
    +  // Include Fragments before parsing
    +  XMLIncludeTransformer includeParser = new XMLIncludeTransformer(configuration, builderAssistant);
    +  includeParser.applyIncludes(context.getNode());
    +
    +  String parameterType = context.getStringAttribute("parameterType");
    +  Class<?> parameterTypeClass = resolveClass(parameterType);
    +
    +  String lang = context.getStringAttribute("lang");
    +  LanguageDriver langDriver = getLanguageDriver(lang);
    +
    +  // Parse selectKey after includes and remove them.
    +  processSelectKeyNodes(id, parameterTypeClass, langDriver);
    +
    +  // Parse the SQL (pre: <selectKey> and <include> were parsed and removed)
    +  KeyGenerator keyGenerator;
    +  String keyStatementId = id + SelectKeyGenerator.SELECT_KEY_SUFFIX;
    +  keyStatementId = builderAssistant.applyCurrentNamespace(keyStatementId, true);
    +  if (configuration.hasKeyGenerator(keyStatementId)) {
    +    keyGenerator = configuration.getKeyGenerator(keyStatementId);
    +  } else {
    +    keyGenerator = context.getBooleanAttribute("useGeneratedKeys",
    +        configuration.isUseGeneratedKeys() && SqlCommandType.INSERT.equals(sqlCommandType))
    +        ? Jdbc3KeyGenerator.INSTANCE : NoKeyGenerator.INSTANCE;
       }
    -  return doGetConnection(props);
    -}
    -private Connection doGetConnection(Properties properties) throws SQLException {
    -  initializeDriver();
    -  Connection connection = DriverManager.getConnection(url, properties);
    -  configureConnection(connection);
    -  return connection;
    -}
    -

    而对于Pooled就会处理池化的逻辑

    -
    private PooledConnection popConnection(String username, String password) throws SQLException {
    -    boolean countedWait = false;
    -    PooledConnection conn = null;
    -    long t = System.currentTimeMillis();
    -    int localBadConnectionCount = 0;
     
    -    while (conn == null) {
    -      lock.lock();
    -      try {
    -        if (!state.idleConnections.isEmpty()) {
    -          // Pool has available connection
    -          conn = state.idleConnections.remove(0);
    -          if (log.isDebugEnabled()) {
    -            log.debug("Checked out connection " + conn.getRealHashCode() + " from pool.");
    -          }
    -        } else {
    -          // Pool does not have available connection
    -          if (state.activeConnections.size() < poolMaximumActiveConnections) {
    -            // Can create new connection
    -            conn = new PooledConnection(dataSource.getConnection(), this);
    -            if (log.isDebugEnabled()) {
    -              log.debug("Created connection " + conn.getRealHashCode() + ".");
    -            }
    -          } else {
    -            // Cannot create new connection
    -            PooledConnection oldestActiveConnection = state.activeConnections.get(0);
    -            long longestCheckoutTime = oldestActiveConnection.getCheckoutTime();
    -            if (longestCheckoutTime > poolMaximumCheckoutTime) {
    -              // Can claim overdue connection
    -              state.claimedOverdueConnectionCount++;
    -              state.accumulatedCheckoutTimeOfOverdueConnections += longestCheckoutTime;
    -              state.accumulatedCheckoutTime += longestCheckoutTime;
    -              state.activeConnections.remove(oldestActiveConnection);
    -              if (!oldestActiveConnection.getRealConnection().getAutoCommit()) {
    -                try {
    -                  oldestActiveConnection.getRealConnection().rollback();
    -                } catch (SQLException e) {
    -                  /*
    -                     Just log a message for debug and continue to execute the following
    -                     statement like nothing happened.
    -                     Wrap the bad connection with a new PooledConnection, this will help
    -                     to not interrupt current executing thread and give current thread a
    -                     chance to join the next competition for another valid/good database
    -                     connection. At the end of this loop, bad {@link @conn} will be set as null.
    -                   */
    -                  log.debug("Bad connection. Could not roll back");
    -                }
    -              }
    -              conn = new PooledConnection(oldestActiveConnection.getRealConnection(), this);
    -              conn.setCreatedTimestamp(oldestActiveConnection.getCreatedTimestamp());
    -              conn.setLastUsedTimestamp(oldestActiveConnection.getLastUsedTimestamp());
    -              oldestActiveConnection.invalidate();
    -              if (log.isDebugEnabled()) {
    -                log.debug("Claimed overdue connection " + conn.getRealHashCode() + ".");
    -              }
    -            } else {
    -              // Must wait
    -              try {
    -                if (!countedWait) {
    -                  state.hadToWaitCount++;
    -                  countedWait = true;
    -                }
    -                if (log.isDebugEnabled()) {
    -                  log.debug("Waiting as long as " + poolTimeToWait + " milliseconds for connection.");
    -                }
    -                long wt = System.currentTimeMillis();
    -                condition.await(poolTimeToWait, TimeUnit.MILLISECONDS);
    -                state.accumulatedWaitTime += System.currentTimeMillis() - wt;
    -              } catch (InterruptedException e) {
    -                // set interrupt flag
    -                Thread.currentThread().interrupt();
    -                break;
    -              }
    -            }
    -          }
    -        }
    -        if (conn != null) {
    -          // ping to server and check the connection is valid or not
    -          if (conn.isValid()) {
    -            if (!conn.getRealConnection().getAutoCommit()) {
    -              conn.getRealConnection().rollback();
    -            }
    -            conn.setConnectionTypeCode(assembleConnectionTypeCode(dataSource.getUrl(), username, password));
    -            conn.setCheckoutTimestamp(System.currentTimeMillis());
    -            conn.setLastUsedTimestamp(System.currentTimeMillis());
    -            state.activeConnections.add(conn);
    -            state.requestCount++;
    -            state.accumulatedRequestTime += System.currentTimeMillis() - t;
    -          } else {
    -            if (log.isDebugEnabled()) {
    -              log.debug("A bad connection (" + conn.getRealHashCode() + ") was returned from the pool, getting another connection.");
    -            }
    -            state.badConnectionCount++;
    -            localBadConnectionCount++;
    -            conn = null;
    -            if (localBadConnectionCount > (poolMaximumIdleConnections + poolMaximumLocalBadConnectionTolerance)) {
    -              if (log.isDebugEnabled()) {
    -                log.debug("PooledDataSource: Could not get a good connection to the database.");
    -              }
    -              throw new SQLException("PooledDataSource: Could not get a good connection to the database.");
    -            }
    -          }
    -        }
    -      } finally {
    -        lock.unlock();
    -      }
    +  // 语句的主要参数解析
    +  SqlSource sqlSource = langDriver.createSqlSource(configuration, context, parameterTypeClass);
    +  StatementType statementType = StatementType.valueOf(context.getStringAttribute("statementType", StatementType.PREPARED.toString()));
    +  Integer fetchSize = context.getIntAttribute("fetchSize");
    +  Integer timeout = context.getIntAttribute("timeout");
    +  String parameterMap = context.getStringAttribute("parameterMap");
    +  String resultType = context.getStringAttribute("resultType");
    +  Class<?> resultTypeClass = resolveClass(resultType);
    +  String resultMap = context.getStringAttribute("resultMap");
    +  String resultSetType = context.getStringAttribute("resultSetType");
    +  ResultSetType resultSetTypeEnum = resolveResultSetType(resultSetType);
    +  if (resultSetTypeEnum == null) {
    +    resultSetTypeEnum = configuration.getDefaultResultSetType();
    +  }
    +  String keyProperty = context.getStringAttribute("keyProperty");
    +  String keyColumn = context.getStringAttribute("keyColumn");
    +  String resultSets = context.getStringAttribute("resultSets");
     
    -    }
    +  // --------> 添加映射的statement
    +  builderAssistant.addMappedStatement(id, sqlSource, statementType, sqlCommandType,
    +      fetchSize, timeout, parameterMap, parameterTypeClass, resultMap, resultTypeClass,
    +      resultSetTypeEnum, flushCache, useCache, resultOrdered,
    +      keyGenerator, keyProperty, keyColumn, databaseId, langDriver, resultSets);
    +}
    - if (conn == null) { - if (log.isDebugEnabled()) { - log.debug("PooledDataSource: Unknown severe error condition. The connection pool returned a null connection."); - } - throw new SQLException("PooledDataSource: Unknown severe error condition. The connection pool returned a null connection."); - } - return conn; - }
    -

    它的入口不是个get方法,而是pop,从含义来来讲就不一样
    org.apache.ibatis.datasource.pooled.PooledDataSource#getConnection()

    -
    @Override
    -public Connection getConnection() throws SQLException {
    -  return popConnection(dataSource.getUsername(), dataSource.getPassword()).getProxyConnection();
    -}
    -

    对于具体怎么获取连接我们可以下一篇具体讲下

    -]]>
    - - Java - Mybatis - - - Java - Mysql - Mybatis - -
    - - Leetcode 42 接雨水 (Trapping Rain Water) 题解分析 - /2021/07/04/Leetcode-42-%E6%8E%A5%E9%9B%A8%E6%B0%B4-Trapping-Rain-Water-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ - 题目介绍

    给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。

    -

    示例


    输入:height = [0,1,0,2,1,0,1,3,2,1,2,1]
    输出:6
    解释:上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] 表示的高度图,在这种情况下,可以接 6 个单位的雨水(蓝色部分表示雨水)。

    -

    简单分析

    其实最开始的想法是从左到右扫区间,就是示例中的第一个水槽跟第二个水槽都可以用这个办法解决

    前面这种是属于右侧比左侧高的情况,对于左侧高右侧低的就不行了,(写这篇的时候想起来可以再反着扫一遍可能可以)

    所以这个方案不好,贴一下这个方案的代码

    -
    public int trap(int[] height) {
    -    int lastLeft = -1;
    -    int sum = 0;
    -    int tempSum = 0;
    -    boolean startFlag = true;
    -    for (int j : height) {
    -        if (startFlag && j <= 0) {
    -            startFlag = false;
    -            continue;
    -        }
    -        if (j >= lastLeft) {
    -            sum += tempSum;
    -            tempSum = 0;
    -            lastLeft = j;
    -        } else {
    -            tempSum += lastLeft - j;
    -        }
    -    }
    -    return sum;
    -}
    -

    后面结合网上的解法,其实可以反过来,对于每个格子找左右侧的最大值,取小的那个和当前格子的差值就是这一个的储水量了

    理解了这种想法,代码其实就不难了

    -

    代码

    int n = height.length;
    -if (n <= 2) {
    -    return 0;
    -}
    -// 思路转变下,其实可以对于每一格算储水量,算法就是找到这一格左边的最高点跟这一格右边的最高点,
    -// 比较两侧的最高点,取小的那个,然后再跟当前格子的高度对比,差值就是当前格的储水量
    -int maxL[] = new int[n];
    -int maxR[] = new int[n];
    -int max = height[0];
    -maxL[0] = 0;
    -// 计算左侧的最高点
    -for (int i = 1; i < n - 1; i++) {
    -    maxL[i] = max;
    -    if (max < height[i]) {
    -        max = height[i];
    -    }
    -}
    -max = height[n - 1];
    -maxR[n - 1] = 0;
    -int tempSum, sum = 0;
    -// 计算右侧的最高点,并且同步算出来储水量,节省一个循环
    -for (int i = n - 2; i > 0; i--) {
    -    maxR[i] = max;
    -    if (height[i] > max) {
    -        max = height[i];
    -    }
    -    tempSum = Math.min(maxL[i], maxR[i]) - height[i];
    -    if (tempSum > 0) {
    -        sum += tempSum;
    -    }
    -}
    -return sum;
    +

    添加的逻辑具体可以看下

    +
    public MappedStatement addMappedStatement(
    +    String id,
    +    SqlSource sqlSource,
    +    StatementType statementType,
    +    SqlCommandType sqlCommandType,
    +    Integer fetchSize,
    +    Integer timeout,
    +    String parameterMap,
    +    Class<?> parameterType,
    +    String resultMap,
    +    Class<?> resultType,
    +    ResultSetType resultSetType,
    +    boolean flushCache,
    +    boolean useCache,
    +    boolean resultOrdered,
    +    KeyGenerator keyGenerator,
    +    String keyProperty,
    +    String keyColumn,
    +    String databaseId,
    +    LanguageDriver lang,
    +    String resultSets) {
    +
    +  if (unresolvedCacheRef) {
    +    throw new IncompleteElementException("Cache-ref not yet resolved");
    +  }
    +
    +  id = applyCurrentNamespace(id, false);
    +  boolean isSelect = sqlCommandType == SqlCommandType.SELECT;
    +
    +  MappedStatement.Builder statementBuilder = new MappedStatement.Builder(configuration, id, sqlSource, sqlCommandType)
    +      .resource(resource)
    +      .fetchSize(fetchSize)
    +      .timeout(timeout)
    +      .statementType(statementType)
    +      .keyGenerator(keyGenerator)
    +      .keyProperty(keyProperty)
    +      .keyColumn(keyColumn)
    +      .databaseId(databaseId)
    +      .lang(lang)
    +      .resultOrdered(resultOrdered)
    +      .resultSets(resultSets)
    +      .resultMaps(getStatementResultMaps(resultMap, resultType, id))
    +      .resultSetType(resultSetType)
    +      .flushCacheRequired(valueOrDefault(flushCache, !isSelect))
    +      .useCache(valueOrDefault(useCache, isSelect))
    +      .cache(currentCache);
    +
    +  ParameterMap statementParameterMap = getStatementParameterMap(parameterMap, parameterType, id);
    +  if (statementParameterMap != null) {
    +    statementBuilder.parameterMap(statementParameterMap);
    +  }
    +
    +  MappedStatement statement = statementBuilder.build();
    +  // ------>  正好是这里在configuration中添加了映射好的statement
    +  configuration.addMappedStatement(statement);
    +  return statement;
    +}
    + +

    而里面就是往map里添加

    +
    public void addMappedStatement(MappedStatement ms) {
    +  mappedStatements.put(ms.getId(), ms);
    +}
    + +

    获取mapper

    StudentDO studentDO = session.selectOne("com.nicksxs.mybatisdemo.StudentMapper.selectStudent", 1);
    + +

    就是调用了 org.apache.ibatis.session.defaults.DefaultSqlSession#selectOne(java.lang.String, java.lang.Object)

    +
    public <T> T selectOne(String statement, Object parameter) {
    +  // Popular vote was to return null on 0 results and throw exception on too many.
    +  List<T> list = this.selectList(statement, parameter);
    +  if (list.size() == 1) {
    +    return list.get(0);
    +  } else if (list.size() > 1) {
    +    throw new TooManyResultsException("Expected one result (or null) to be returned by selectOne(), but found: " + list.size());
    +  } else {
    +    return null;
    +  }
    +}
    + +

    调用实际的实现方法

    +
    public <E> List<E> selectList(String statement, Object parameter) {
    +  return this.selectList(statement, parameter, RowBounds.DEFAULT);
    +}
    + +

    这里还有一层

    +
    public <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds) {
    +  return selectList(statement, parameter, rowBounds, Executor.NO_RESULT_HANDLER);
    +}
    + + +

    根本的就是从configuration里获取了mappedStatement

    +
    private <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds, ResultHandler handler) {
    +  try {
    +    // 这里进行了获取
    +    MappedStatement ms = configuration.getMappedStatement(statement);
    +    return executor.query(ms, wrapCollection(parameter), rowBounds, handler);
    +  } catch (Exception e) {
    +    throw ExceptionFactory.wrapException("Error querying database.  Cause: " + e, e);
    +  } finally {
    +    ErrorContext.instance().reset();
    +  }
    +}
    ]]>
    Java - leetcode + Mybatis - leetcode - java - dp - 代码题解 - Trapping Rain Water - 接雨水 - Leetcode 42 + Java + Mysql + Mybatis
    - mybatis系列-mybatis是如何初始化mapper的 - /2022/12/04/mybatis%E6%98%AF%E5%A6%82%E4%BD%95%E5%88%9D%E5%A7%8B%E5%8C%96mapper%E7%9A%84/ - 前一篇讲了mybatis的初始化使用,如果我第一次看到这个使用入门文档,比较会产生疑惑的是配置了mapper,怎么就能通过selectOne跟语句id就能执行sql了,那么第一个问题,就是mapper是怎么被解析的,存在哪里,怎么被拿出来的

    -

    添加解析mapper

    org.apache.ibatis.session.SqlSessionFactoryBuilder#build(java.io.InputStream)
    -public SqlSessionFactory build(InputStream inputStream) {
    -  return build(inputStream, null, null);
    -}
    + mybatis系列-dataSource解析 + /2023/01/08/mybatis%E7%B3%BB%E5%88%97-dataSource%E8%A7%A3%E6%9E%90/ + DataSource 作为数据库查询的最重要的数据源,在 mybatis 中也展开来说下
    首先是解析的过程

    +
    SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
    -

    通过读取mybatis-config.xml来构建SqlSessionFactory,

    -
    public SqlSessionFactory build(InputStream inputStream, String environment, Properties properties) {
    -  try {
    -    // 创建下xml的解析器
    -    XMLConfigBuilder parser = new XMLConfigBuilder(inputStream, environment, properties);
    -    // 进行解析,后再构建
    -    return build(parser.parse());
    -  } catch (Exception e) {
    -    throw ExceptionFactory.wrapException("Error building SqlSession.", e);
    -  } finally {
    -    ErrorContext.instance().reset();
    +

    在构建 SqlSessionFactory 也就是 DefaultSqlSessionFactory 的时候,

    +
    public SqlSessionFactory build(InputStream inputStream) {
    +    return build(inputStream, null, null);
    +  }
    +public SqlSessionFactory build(InputStream inputStream, String environment, Properties properties) {
         try {
    -       if (inputStream != null) {
    -         inputStream.close();
    -       }
    -    } catch (IOException e) {
    -      // Intentionally ignore. Prefer previous error.
    +      XMLConfigBuilder parser = new XMLConfigBuilder(inputStream, environment, properties);
    +      return build(parser.parse());
    +    } catch (Exception e) {
    +      throw ExceptionFactory.wrapException("Error building SqlSession.", e);
    +    } finally {
    +      ErrorContext.instance().reset();
    +      try {
    +      	if (inputStream != null) {
    +      	  inputStream.close();
    +      	}
    +      } catch (IOException e) {
    +        // Intentionally ignore. Prefer previous error.
    +      }
         }
    -  }
    - -

    创建XMLConfigBuilder

    -
    public XMLConfigBuilder(InputStream inputStream, String environment, Properties props) {
    -    // --------> 创建 XPathParser
    -  this(new XPathParser(inputStream, true, props, new XMLMapperEntityResolver()), environment, props);
    -}
    -
    -public XPathParser(InputStream inputStream, boolean validation, Properties variables, EntityResolver entityResolver) {
    -    commonConstructor(validation, variables, entityResolver);
    -    this.document = createDocument(new InputSource(inputStream));
    -  }
    -
    -private XMLConfigBuilder(XPathParser parser, String environment, Properties props) {
    -  super(new Configuration());
    -  ErrorContext.instance().resource("SQL Mapper Configuration");
    -  this.configuration.setVariables(props);
    -  this.parsed = false;
    -  this.environment = environment;
    -  this.parser = parser;
    -}
    - -

    这里主要是创建了Builder包含了Parser
    然后调用parse方法

    + }
    +

    前面也说过,就是解析 mybatis-config.xmlConfiguration

    public Configuration parse() {
       if (parsed) {
         throw new BuilderException("Each XMLConfigBuilder can only be used once.");
       }
    -  // 标记下是否已解析,但是这里是否有线程安全问题
       parsed = true;
    -  // --------> 解析配置
       parseConfiguration(parser.evalNode("/configuration"));
       return configuration;
    -}
    - -

    实际的解析区分了各类标签

    -
    private void parseConfiguration(XNode root) {
    +}
    +private void parseConfiguration(XNode root) {
       try {
         // issue #117 read properties first
    -    // 解析properties,这个不是spring自带的,需要额外配置,并且在config文件里应该放在最前
         propertiesElement(root.evalNode("properties"));
         Properties settings = settingsAsProperties(root.evalNode("settings"));
         loadCustomVfs(settings);
    @@ -6637,276 +6677,236 @@ maxR[n -reflectorFactoryElement(root.evalNode("reflectorFactory"));
         settingsElement(settings);
         // read it after objectFactory and objectWrapperFactory issue #631
    +    // -------------> 是在这里解析了DataSource
         environmentsElement(root.evalNode("environments"));
         databaseIdProviderElement(root.evalNode("databaseIdProvider"));
         typeHandlerElement(root.evalNode("typeHandlers"));
    -    // ----------> 我们需要关注的是mapper的处理
         mapperElement(root.evalNode("mappers"));
       } catch (Exception e) {
         throw new BuilderException("Error parsing SQL Mapper Configuration. Cause: " + e, e);
       }
    -}
    - -

    然后就是调用到mapperElement方法了

    -
    private void mapperElement(XNode parent) throws Exception {
    -  if (parent != null) {
    -    for (XNode child : parent.getChildren()) {
    -      if ("package".equals(child.getName())) {
    -        String mapperPackage = child.getStringAttribute("name");
    -        configuration.addMappers(mapperPackage);
    -      } else {
    -        String resource = child.getStringAttribute("resource");
    -        String url = child.getStringAttribute("url");
    -        String mapperClass = child.getStringAttribute("class");
    -        if (resource != null && url == null && mapperClass == null) {
    -          ErrorContext.instance().resource(resource);
    -          try(InputStream inputStream = Resources.getResourceAsStream(resource)) {
    -            XMLMapperBuilder mapperParser = new XMLMapperBuilder(inputStream, configuration, resource, configuration.getSqlFragments());
    -            // --------> 我们这没有指定package,所以是走到这
    -            mapperParser.parse();
    -          }
    -        } else if (resource == null && url != null && mapperClass == null) {
    -          ErrorContext.instance().resource(url);
    -          try(InputStream inputStream = Resources.getUrlAsStream(url)){
    -            XMLMapperBuilder mapperParser = new XMLMapperBuilder(inputStream, configuration, url, configuration.getSqlFragments());
    -            mapperParser.parse();
    -          }
    -        } else if (resource == null && url == null && mapperClass != null) {
    -          Class<?> mapperInterface = Resources.classForName(mapperClass);
    -          configuration.addMapper(mapperInterface);
    -        } else {
    -          throw new BuilderException("A mapper element may only specify a url, resource or class, but not more than one.");
    -        }
    -      }
    +}
    +

    环境解析了这一块的内容

    +
    <environments default="development">
    +        <environment id="development">
    +            <transactionManager type="JDBC"/>
    +            <dataSource type="POOLED">
    +                <property name="driver" value="${driver}"/>
    +                <property name="url" value="${url}"/>
    +                <property name="username" value="${username}"/>
    +                <property name="password" value="${password}"/>
    +            </dataSource>
    +        </environment>
    +    </environments>
    +

    解析也是自上而下的,

    +
    private void environmentsElement(XNode context) throws Exception {
    +  if (context != null) {
    +    if (environment == null) {
    +      environment = context.getStringAttribute("default");
         }
    -  }
    -}
    - -

    核心就在这个parse()方法

    -
    public void parse() {
    -  if (!configuration.isResourceLoaded(resource)) {
    -    // -------> 然后就是走到这里,配置xml的mapper节点的内容
    -    configurationElement(parser.evalNode("/mapper"));
    -    configuration.addLoadedResource(resource);
    -    bindMapperForNamespace();
    -  }
    -
    -  parsePendingResultMaps();
    -  parsePendingCacheRefs();
    -  parsePendingStatements();
    -}
    - -

    具体的处理逻辑

    -
    private void configurationElement(XNode context) {
    -  try {
    -    String namespace = context.getStringAttribute("namespace");
    -    if (namespace == null || namespace.isEmpty()) {
    -      throw new BuilderException("Mapper's namespace cannot be empty");
    +    for (XNode child : context.getChildren()) {
    +      String id = child.getStringAttribute("id");
    +      if (isSpecifiedEnvironment(id)) {
    +        TransactionFactory txFactory = transactionManagerElement(child.evalNode("transactionManager"));
    +        DataSourceFactory dsFactory = dataSourceElement(child.evalNode("dataSource"));
    +        DataSource dataSource = dsFactory.getDataSource();
    +        Environment.Builder environmentBuilder = new Environment.Builder(id)
    +            .transactionFactory(txFactory)
    +            .dataSource(dataSource);
    +        configuration.setEnvironment(environmentBuilder.build());
    +        break;
    +      }
         }
    -    builderAssistant.setCurrentNamespace(namespace);
    -    cacheRefElement(context.evalNode("cache-ref"));
    -    cacheElement(context.evalNode("cache"));
    -    parameterMapElement(context.evalNodes("/mapper/parameterMap"));
    -    resultMapElements(context.evalNodes("/mapper/resultMap"));
    -    sqlElement(context.evalNodes("/mapper/sql"));
    -    // ------->  走到这,从上下文构建statement
    -    buildStatementFromContext(context.evalNodes("select|insert|update|delete"));
    -  } catch (Exception e) {
    -    throw new BuilderException("Error parsing Mapper XML. The XML location is '" + resource + "'. Cause: " + e, e);
       }
    -}
    - -

    具体代码在这,从上下文构建statement,只不过区分了下databaseId

    -
    private void buildStatementFromContext(List<XNode> list) {
    -  if (configuration.getDatabaseId() != null) {
    -    buildStatementFromContext(list, configuration.getDatabaseId());
    +}
    +

    前面第一步是解析事务管理器元素

    +
    private TransactionFactory transactionManagerElement(XNode context) throws Exception {
    +  if (context != null) {
    +    String type = context.getStringAttribute("type");
    +    Properties props = context.getChildrenAsProperties();
    +    TransactionFactory factory = (TransactionFactory) resolveClass(type).getDeclaredConstructor().newInstance();
    +    factory.setProperties(props);
    +    return factory;
       }
    -  // -----> 判断databaseId
    -  buildStatementFromContext(list, null);
    -}
    - -

    判断下databaseId

    -
    private void buildStatementFromContext(List<XNode> list, String requiredDatabaseId) {
    -  for (XNode context : list) {
    -    final XMLStatementBuilder statementParser = new XMLStatementBuilder(configuration, builderAssistant, context, requiredDatabaseId);
    -    try {
    -      // -------> 解析statement节点
    -      statementParser.parseStatementNode();
    -    } catch (IncompleteElementException e) {
    -      configuration.addIncompleteStatement(statementParser);
    -    }
    +  throw new BuilderException("Environment declaration requires a TransactionFactory.");
    +}
    +

    而这里的 resolveClass 其实就使用了上一篇的 typeAliases 系统,这里是使用了 JdbcTransactionFactory 作为事务管理器,
    后面的就是 DataSourceFactory 的创建也是 DataSource 的创建

    +
    private DataSourceFactory dataSourceElement(XNode context) throws Exception {
    +  if (context != null) {
    +    String type = context.getStringAttribute("type");
    +    Properties props = context.getChildrenAsProperties();
    +    DataSourceFactory factory = (DataSourceFactory) resolveClass(type).getDeclaredConstructor().newInstance();
    +    factory.setProperties(props);
    +    return factory;
       }
    -}
    - -

    接下来就是真正处理的xml语句内容的,各个节点的信息内容

    -
    public void parseStatementNode() {
    -  String id = context.getStringAttribute("id");
    -  String databaseId = context.getStringAttribute("databaseId");
    +  throw new BuilderException("Environment declaration requires a DataSourceFactory.");
    +}
    +

    因为在config文件中设置了Pooled,所以对应创建的就是 PooledDataSourceFactory
    但是这里其实有个比较需要注意的,mybatis 这里的其实是继承了 UnpooledDataSourceFactory
    将基础方法都放在了 UnpooledDataSourceFactory

    +
    public class PooledDataSourceFactory extends UnpooledDataSourceFactory {
     
    -  if (!databaseIdMatchesCurrent(id, databaseId, this.requiredDatabaseId)) {
    -    return;
    +  public PooledDataSourceFactory() {
    +    this.dataSource = new PooledDataSource();
       }
     
    -  String nodeName = context.getNode().getNodeName();
    -  SqlCommandType sqlCommandType = SqlCommandType.valueOf(nodeName.toUpperCase(Locale.ENGLISH));
    -  boolean isSelect = sqlCommandType == SqlCommandType.SELECT;
    -  boolean flushCache = context.getBooleanAttribute("flushCache", !isSelect);
    -  boolean useCache = context.getBooleanAttribute("useCache", isSelect);
    -  boolean resultOrdered = context.getBooleanAttribute("resultOrdered", false);
    -
    -  // Include Fragments before parsing
    -  XMLIncludeTransformer includeParser = new XMLIncludeTransformer(configuration, builderAssistant);
    -  includeParser.applyIncludes(context.getNode());
    -
    -  String parameterType = context.getStringAttribute("parameterType");
    -  Class<?> parameterTypeClass = resolveClass(parameterType);
    -
    -  String lang = context.getStringAttribute("lang");
    -  LanguageDriver langDriver = getLanguageDriver(lang);
    -
    -  // Parse selectKey after includes and remove them.
    -  processSelectKeyNodes(id, parameterTypeClass, langDriver);
    +}
    +

    这里只保留了在构造方法里创建 DataSource
    而这个 PooledDataSource 虽然没有直接继承 UnpooledDataSource,但其实
    在构造方法里也是

    +
    public PooledDataSource() {
    +  dataSource = new UnpooledDataSource();
    +}
    +

    至于为什么这么做呢应该也是考虑到能比较多的复用代码,因为 Pooled 其实跟 Unpooled 最重要的差别就在于是不是每次都重开连接
    使用连接池能够让应用在有大量查询的时候不用反复创建连接,省去了建联的网络等开销,Unpooled就是完成与数据库的连接,并可以获取该连接
    主要的代码

    +
    @Override
    +public Connection getConnection() throws SQLException {
    +  return doGetConnection(username, password);
    +}
     
    -  // Parse the SQL (pre: <selectKey> and <include> were parsed and removed)
    -  KeyGenerator keyGenerator;
    -  String keyStatementId = id + SelectKeyGenerator.SELECT_KEY_SUFFIX;
    -  keyStatementId = builderAssistant.applyCurrentNamespace(keyStatementId, true);
    -  if (configuration.hasKeyGenerator(keyStatementId)) {
    -    keyGenerator = configuration.getKeyGenerator(keyStatementId);
    -  } else {
    -    keyGenerator = context.getBooleanAttribute("useGeneratedKeys",
    -        configuration.isUseGeneratedKeys() && SqlCommandType.INSERT.equals(sqlCommandType))
    -        ? Jdbc3KeyGenerator.INSTANCE : NoKeyGenerator.INSTANCE;
    +@Override
    +public Connection getConnection(String username, String password) throws SQLException {
    +  return doGetConnection(username, password);
    +}
    +private Connection doGetConnection(String username, String password) throws SQLException {
    +  Properties props = new Properties();
    +  if (driverProperties != null) {
    +    props.putAll(driverProperties);
       }
    -
    -  // 语句的主要参数解析
    -  SqlSource sqlSource = langDriver.createSqlSource(configuration, context, parameterTypeClass);
    -  StatementType statementType = StatementType.valueOf(context.getStringAttribute("statementType", StatementType.PREPARED.toString()));
    -  Integer fetchSize = context.getIntAttribute("fetchSize");
    -  Integer timeout = context.getIntAttribute("timeout");
    -  String parameterMap = context.getStringAttribute("parameterMap");
    -  String resultType = context.getStringAttribute("resultType");
    -  Class<?> resultTypeClass = resolveClass(resultType);
    -  String resultMap = context.getStringAttribute("resultMap");
    -  String resultSetType = context.getStringAttribute("resultSetType");
    -  ResultSetType resultSetTypeEnum = resolveResultSetType(resultSetType);
    -  if (resultSetTypeEnum == null) {
    -    resultSetTypeEnum = configuration.getDefaultResultSetType();
    +  if (username != null) {
    +    props.setProperty("user", username);
       }
    -  String keyProperty = context.getStringAttribute("keyProperty");
    -  String keyColumn = context.getStringAttribute("keyColumn");
    -  String resultSets = context.getStringAttribute("resultSets");
    -
    -  // --------> 添加映射的statement
    -  builderAssistant.addMappedStatement(id, sqlSource, statementType, sqlCommandType,
    -      fetchSize, timeout, parameterMap, parameterTypeClass, resultMap, resultTypeClass,
    -      resultSetTypeEnum, flushCache, useCache, resultOrdered,
    -      keyGenerator, keyProperty, keyColumn, databaseId, langDriver, resultSets);
    -}
    - - -

    添加的逻辑具体可以看下

    -
    public MappedStatement addMappedStatement(
    -    String id,
    -    SqlSource sqlSource,
    -    StatementType statementType,
    -    SqlCommandType sqlCommandType,
    -    Integer fetchSize,
    -    Integer timeout,
    -    String parameterMap,
    -    Class<?> parameterType,
    -    String resultMap,
    -    Class<?> resultType,
    -    ResultSetType resultSetType,
    -    boolean flushCache,
    -    boolean useCache,
    -    boolean resultOrdered,
    -    KeyGenerator keyGenerator,
    -    String keyProperty,
    -    String keyColumn,
    -    String databaseId,
    -    LanguageDriver lang,
    -    String resultSets) {
    -
    -  if (unresolvedCacheRef) {
    -    throw new IncompleteElementException("Cache-ref not yet resolved");
    +  if (password != null) {
    +    props.setProperty("password", password);
       }
    +  return doGetConnection(props);
    +}
    +private Connection doGetConnection(Properties properties) throws SQLException {
    +  initializeDriver();
    +  Connection connection = DriverManager.getConnection(url, properties);
    +  configureConnection(connection);
    +  return connection;
    +}
    +

    而对于Pooled就会处理池化的逻辑

    +
    private PooledConnection popConnection(String username, String password) throws SQLException {
    +    boolean countedWait = false;
    +    PooledConnection conn = null;
    +    long t = System.currentTimeMillis();
    +    int localBadConnectionCount = 0;
     
    -  id = applyCurrentNamespace(id, false);
    -  boolean isSelect = sqlCommandType == SqlCommandType.SELECT;
    -
    -  MappedStatement.Builder statementBuilder = new MappedStatement.Builder(configuration, id, sqlSource, sqlCommandType)
    -      .resource(resource)
    -      .fetchSize(fetchSize)
    -      .timeout(timeout)
    -      .statementType(statementType)
    -      .keyGenerator(keyGenerator)
    -      .keyProperty(keyProperty)
    -      .keyColumn(keyColumn)
    -      .databaseId(databaseId)
    -      .lang(lang)
    -      .resultOrdered(resultOrdered)
    -      .resultSets(resultSets)
    -      .resultMaps(getStatementResultMaps(resultMap, resultType, id))
    -      .resultSetType(resultSetType)
    -      .flushCacheRequired(valueOrDefault(flushCache, !isSelect))
    -      .useCache(valueOrDefault(useCache, isSelect))
    -      .cache(currentCache);
    -
    -  ParameterMap statementParameterMap = getStatementParameterMap(parameterMap, parameterType, id);
    -  if (statementParameterMap != null) {
    -    statementBuilder.parameterMap(statementParameterMap);
    -  }
    -
    -  MappedStatement statement = statementBuilder.build();
    -  // ------>  正好是这里在configuration中添加了映射好的statement
    -  configuration.addMappedStatement(statement);
    -  return statement;
    -}
    - -

    而里面就是往map里添加

    -
    public void addMappedStatement(MappedStatement ms) {
    -  mappedStatements.put(ms.getId(), ms);
    -}
    - -

    获取mapper

    StudentDO studentDO = session.selectOne("com.nicksxs.mybatisdemo.StudentMapper.selectStudent", 1);
    - -

    就是调用了 org.apache.ibatis.session.defaults.DefaultSqlSession#selectOne(java.lang.String, java.lang.Object)

    -
    public <T> T selectOne(String statement, Object parameter) {
    -  // Popular vote was to return null on 0 results and throw exception on too many.
    -  List<T> list = this.selectList(statement, parameter);
    -  if (list.size() == 1) {
    -    return list.get(0);
    -  } else if (list.size() > 1) {
    -    throw new TooManyResultsException("Expected one result (or null) to be returned by selectOne(), but found: " + list.size());
    -  } else {
    -    return null;
    -  }
    -}
    - -

    调用实际的实现方法

    -
    public <E> List<E> selectList(String statement, Object parameter) {
    -  return this.selectList(statement, parameter, RowBounds.DEFAULT);
    -}
    + while (conn == null) { + lock.lock(); + try { + if (!state.idleConnections.isEmpty()) { + // Pool has available connection + conn = state.idleConnections.remove(0); + if (log.isDebugEnabled()) { + log.debug("Checked out connection " + conn.getRealHashCode() + " from pool."); + } + } else { + // Pool does not have available connection + if (state.activeConnections.size() < poolMaximumActiveConnections) { + // Can create new connection + conn = new PooledConnection(dataSource.getConnection(), this); + if (log.isDebugEnabled()) { + log.debug("Created connection " + conn.getRealHashCode() + "."); + } + } else { + // Cannot create new connection + PooledConnection oldestActiveConnection = state.activeConnections.get(0); + long longestCheckoutTime = oldestActiveConnection.getCheckoutTime(); + if (longestCheckoutTime > poolMaximumCheckoutTime) { + // Can claim overdue connection + state.claimedOverdueConnectionCount++; + state.accumulatedCheckoutTimeOfOverdueConnections += longestCheckoutTime; + state.accumulatedCheckoutTime += longestCheckoutTime; + state.activeConnections.remove(oldestActiveConnection); + if (!oldestActiveConnection.getRealConnection().getAutoCommit()) { + try { + oldestActiveConnection.getRealConnection().rollback(); + } catch (SQLException e) { + /* + Just log a message for debug and continue to execute the following + statement like nothing happened. + Wrap the bad connection with a new PooledConnection, this will help + to not interrupt current executing thread and give current thread a + chance to join the next competition for another valid/good database + connection. At the end of this loop, bad {@link @conn} will be set as null. + */ + log.debug("Bad connection. Could not roll back"); + } + } + conn = new PooledConnection(oldestActiveConnection.getRealConnection(), this); + conn.setCreatedTimestamp(oldestActiveConnection.getCreatedTimestamp()); + conn.setLastUsedTimestamp(oldestActiveConnection.getLastUsedTimestamp()); + oldestActiveConnection.invalidate(); + if (log.isDebugEnabled()) { + log.debug("Claimed overdue connection " + conn.getRealHashCode() + "."); + } + } else { + // Must wait + try { + if (!countedWait) { + state.hadToWaitCount++; + countedWait = true; + } + if (log.isDebugEnabled()) { + log.debug("Waiting as long as " + poolTimeToWait + " milliseconds for connection."); + } + long wt = System.currentTimeMillis(); + condition.await(poolTimeToWait, TimeUnit.MILLISECONDS); + state.accumulatedWaitTime += System.currentTimeMillis() - wt; + } catch (InterruptedException e) { + // set interrupt flag + Thread.currentThread().interrupt(); + break; + } + } + } + } + if (conn != null) { + // ping to server and check the connection is valid or not + if (conn.isValid()) { + if (!conn.getRealConnection().getAutoCommit()) { + conn.getRealConnection().rollback(); + } + conn.setConnectionTypeCode(assembleConnectionTypeCode(dataSource.getUrl(), username, password)); + conn.setCheckoutTimestamp(System.currentTimeMillis()); + conn.setLastUsedTimestamp(System.currentTimeMillis()); + state.activeConnections.add(conn); + state.requestCount++; + state.accumulatedRequestTime += System.currentTimeMillis() - t; + } else { + if (log.isDebugEnabled()) { + log.debug("A bad connection (" + conn.getRealHashCode() + ") was returned from the pool, getting another connection."); + } + state.badConnectionCount++; + localBadConnectionCount++; + conn = null; + if (localBadConnectionCount > (poolMaximumIdleConnections + poolMaximumLocalBadConnectionTolerance)) { + if (log.isDebugEnabled()) { + log.debug("PooledDataSource: Could not get a good connection to the database."); + } + throw new SQLException("PooledDataSource: Could not get a good connection to the database."); + } + } + } + } finally { + lock.unlock(); + } -

    这里还有一层

    -
    public <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds) {
    -  return selectList(statement, parameter, rowBounds, Executor.NO_RESULT_HANDLER);
    -}
    + } + if (conn == null) { + if (log.isDebugEnabled()) { + log.debug("PooledDataSource: Unknown severe error condition. The connection pool returned a null connection."); + } + throw new SQLException("PooledDataSource: Unknown severe error condition. The connection pool returned a null connection."); + } -

    根本的就是从configuration里获取了mappedStatement

    -
    private <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds, ResultHandler handler) {
    -  try {
    -    // 这里进行了获取
    -    MappedStatement ms = configuration.getMappedStatement(statement);
    -    return executor.query(ms, wrapCollection(parameter), rowBounds, handler);
    -  } catch (Exception e) {
    -    throw ExceptionFactory.wrapException("Error querying database.  Cause: " + e, e);
    -  } finally {
    -    ErrorContext.instance().reset();
    -  }
    -}
    + return conn; + }
    +

    它的入口不是个get方法,而是pop,从含义来来讲就不一样
    org.apache.ibatis.datasource.pooled.PooledDataSource#getConnection()

    +
    @Override
    +public Connection getConnection() throws SQLException {
    +  return popConnection(dataSource.getUsername(), dataSource.getPassword()).getProxyConnection();
    +}
    +

    对于具体怎么获取连接我们可以下一篇具体讲下

    ]]> Java @@ -7108,352 +7108,201 @@ maxR[n - - nginx 日志小记 - /2022/04/17/nginx-%E6%97%A5%E5%BF%97%E5%B0%8F%E8%AE%B0/ - nginx 默认的日志有特定的格式,我们也可以自定义,

    -

    默认的格式是预定义的 combined

    -
    log_format combined '$remote_addr - $remote_user [$time_local] '
    -                    '"$request" $status $body_bytes_sent '
    -                    '"$http_referer" "$http_user_agent"';
    + mybatis系列-第一条sql的更多细节 + /2022/12/18/mybatis%E7%B3%BB%E5%88%97-%E7%AC%AC%E4%B8%80%E6%9D%A1sql%E7%9A%84%E6%9B%B4%E5%A4%9A%E7%BB%86%E8%8A%82/ + 执行细节
    首先设置了默认的languageDriver
    org/mybatis/mybatis/3.5.11/mybatis-3.5.11-sources.jar!/org/apache/ibatis/session/Configuration.java:215
    configuration的构造方法里

    +
    languageRegistry.setDefaultDriverClass(XMLLanguageDriver.class);
    -

    配置的日志可以使用这个默认的,如果满足需求的话

    -
    Syntax:	access_log path [format [buffer=size] [gzip[=level]] [flush=time] [if=condition]];
    -        access_log off;
    -Default: access_log logs/access.log combined;
    -Context: http, server, location, if in location, limit_except
    +

    而在
    org.apache.ibatis.builder.xml.XMLStatementBuilder#parseStatementNode
    中,创建了sqlSource,这里就会根据前面的 LanguageDriver 的实现选择对应的 sqlSource

    +
    SqlSource sqlSource = langDriver.createSqlSource(configuration, context, parameterTypeClass);
    -

    而如果需要额外的一些配置的话可以自己定义 log_format ,比如我想要给日志里加上请求时间,那就可以自己定义一个 log_format 比如添加下

    -
    $request_time
    -request processing time in seconds with a milliseconds resolution;   
    -time elapsed between the first bytes were read from the client and the log write after the last bytes were sent to the client
    +

    createSqlSource 就会调用

    +
    @Override
    +public SqlSource createSqlSource(Configuration configuration, XNode script, Class<?> parameterType) {
    +  XMLScriptBuilder builder = new XMLScriptBuilder(configuration, script, parameterType);
    +  return builder.parseScriptNode();
    +}
    -
    log_format combined_extend '$remote_addr - $remote_user [$time_local] '
    -                    '"$request" $status $body_bytes_sent '
    -                    '"$http_referer" "$http_user_agent" "$request_time"';
    +

    再往下的逻辑在 parseScriptNode 中,org.apache.ibatis.scripting.xmltags.XMLScriptBuilder#parseScriptNode

    +
    public SqlSource parseScriptNode() {
    +  MixedSqlNode rootSqlNode = parseDynamicTags(context);
    +  SqlSource sqlSource;
    +  if (isDynamic) {
    +    sqlSource = new DynamicSqlSource(configuration, rootSqlNode);
    +  } else {
    +    sqlSource = new RawSqlSource(configuration, rootSqlNode, parameterType);
    +  }
    +  return sqlSource;
    +}
    -

    然后其他的比如还有 gzip 压缩,可以设置压缩级别,flush 刷盘时间还有根据条件控制

    -

    这里的条件控制简单看了下还比较厉害

    -

    比如我想对2xx 跟 3xx 的访问不记录日志

    -
    map $status $loggable {
    -    ~^[23]  0;
    -    default 1;
    -}
    +

    首先要解析dynamicTag,调用了org.apache.ibatis.scripting.xmltags.XMLScriptBuilder#parseDynamicTags

    +
    protected MixedSqlNode parseDynamicTags(XNode node) {
    +    List<SqlNode> contents = new ArrayList<>();
    +    NodeList children = node.getNode().getChildNodes();
    +    for (int i = 0; i < children.getLength(); i++) {
    +      XNode child = node.newXNode(children.item(i));
    +      if (child.getNode().getNodeType() == Node.CDATA_SECTION_NODE || child.getNode().getNodeType() == Node.TEXT_NODE) {
    +        String data = child.getStringBody("");
    +        TextSqlNode textSqlNode = new TextSqlNode(data);
    +        // ---------> 主要是这边的逻辑
    +        if (textSqlNode.isDynamic()) {
    +          contents.add(textSqlNode);
    +          isDynamic = true;
    +        } else {
    +          contents.add(new StaticTextSqlNode(data));
    +        }
    +      } else if (child.getNode().getNodeType() == Node.ELEMENT_NODE) { // issue #628
    +        String nodeName = child.getNode().getNodeName();
    +        NodeHandler handler = nodeHandlerMap.get(nodeName);
    +        if (handler == null) {
    +          throw new BuilderException("Unknown element <" + nodeName + "> in SQL statement.");
    +        }
    +        handler.handleNode(child, contents);
    +        isDynamic = true;
    +      }
    +    }
    +    return new MixedSqlNode(contents);
    +  }
    -access_log /path/to/access.log combined if=$loggable;
    +

    判断是否是动态sql,调用了org.apache.ibatis.scripting.xmltags.TextSqlNode#isDynamic

    +
    public boolean isDynamic() {
    +  DynamicCheckerTokenParser checker = new DynamicCheckerTokenParser();
    +  // ----------> 主要是这里的方法
    +  GenericTokenParser parser = createParser(checker);
    +  parser.parse(text);
    +  return checker.isDynamic();
    +}
    -

    $loggable 是 0 或者空时表示 if 条件为否,上面的默认就是 1,只有当请求状态 status 是 2xx 或 3xx 时才是 0,代表不用记录,有了这个特性就可以更灵活地配置日志

    -

    文章主要参考了 nginx 的 log 模块的文档

    -]]>
    - - nginx - - - nginx - 日志 - -
    - - openresty - /2019/06/18/openresty/ - 目前公司要对一些新的产品功能做灰度测试,因为在后端业务代码层面添加判断比较麻烦,所以想在nginx上做点手脚,就想到了openresty
    前后也踩了不少坑,这边先写一点

    -

    首先是日志
    error_log logs/error.log debug;
    需要nginx开启日志的debug才能看到日志

    -

    使用 lua_code_cache off即可, 另外注意只有使用 content_by_lua_file 才会生效

    -
    http {
    -  lua_code_cache off;
    -}
    -
    -location ~* /(\d+-.*)/api/orgunits/load_all(.*) {
    -   default_type 'application/json;charset=utf-8';
    -   content_by_lua_file /data/projects/xxx/current/lua/controller/load_data.lua;
    -}
    - -

    使用lua给nginx请求response头添加内容可以用这个

    -
    ngx.header['response'] = 'header'
    +

    创建parser的时候可以看到这个parser是干了啥,其实就是找有没有${ , }

    +
    private GenericTokenParser createParser(TokenHandler handler) {
    +  return new GenericTokenParser("${", "}", handler);
    +}
    +

    如果是的话,就在上面把 isDynamic 设置为true 如果是true 的话就创建 DynamicSqlSource

    +
    sqlSource = new DynamicSqlSource(configuration, rootSqlNode);
    -

    使用总结

    -

    后续:

    -
      -
    1. 一开始在本地环境的时候使用content_by_lua_file只关注了头,后来发到测试环境发现请求内容都没代理转发到后端服务上
      网上查了下发现content_by_lua_file是将请求的所有内容包括response都用这里面的lua脚本生成了,content这个词就表示是请求内容
      后来改成了access_by_lua_file就正常了,只是要去获取请求内容和修改响应头,并不是要完整的接管请求

      -
    2. -
    3. 后来又碰到了一个坑是nginx有个client_body_buffer_size的配置参数,nginx在32位和64位系统里有8K和16K两个默认值,当请求内容大于这两个值的时候,会把请求内容放到临时文件里,这个时候openresty里的ngx.req.get_post_args()就会报“failed to get post args: requesty body in temp file not supported”这个错误,将client_body_buffer_size这个参数配置调大一点就好了

      -
    4. -
    5. 还有就是lua的异常捕获,网上看一般是用pcall和xpcall来进行保护调用,因为问题主要出在cjson的decode,这里有两个解决方案,一个就是将cjson.decode使用pcall封装,

      -
      local decode = require("cjson").decode
      +

      如果不是的话就创建RawSqlSource

      +
      sqlSource = new RawSqlSource(configuration, rootSqlNode, parameterType);
      +```java
       
      -function json_decode( str )
      -    local ok, t = pcall(decode, str)
      -    if not ok then
      -      return nil
      -    end
      +但是这不是一个真实可用的 `sqlSource` ,
      +实际创建的时候会走到这
      +```java
      +public RawSqlSource(Configuration configuration, SqlNode rootSqlNode, Class<?> parameterType) {
      +    this(configuration, getSql(configuration, rootSqlNode), parameterType);
      +  }
       
      -    return t
      -end
      -

      这个是使用了pcall,称为保护调用,会在内部错误后返回两个参数,第一个是false,第二个是错误信息
      还有一种是使用cjson.safe包

      -
      local json = require("cjson.safe")
      -local str = [[ {"key:"value"} ]]
      +  public RawSqlSource(Configuration configuration, String sql, Class<?> parameterType) {
      +    SqlSourceBuilder sqlSourceParser = new SqlSourceBuilder(configuration);
      +    Class<?> clazz = parameterType == null ? Object.class : parameterType;
      +    sqlSource = sqlSourceParser.parse(sql, clazz, new HashMap<>());
      +  }
      -local t = json.decode(str) -if t then - ngx.say(" --> ", type(t)) -end
      -

      cjson.safe包会在解析失败的时候返回nil

      -
    6. -
    7. 还有一个是redis链接时如果host使用的是域名的话会提示“failed to connect: no resolver defined to resolve “redis.xxxxxx.com””,这里需要使用nginx的resolver指令,
      resolver 8.8.8.8 valid=3600s;

      -
    8. -
    9. 还有一点补充下
      就是业务在使用redis的时候使用了db的特性,所以在lua访问redis的时候也需要执行db,这里lua的redis库也支持了这个特性,可以使用instance:select(config:get(‘db’))来切换db

      -
    10. -
    11. 性能优化tips
      建议是尽量少使用阶段钩子,例如content_by_lua_file,*_by_lua

      -
    12. -
    13. 发现一个不错的openresty站点
      地址

      -
    14. -
    -]]>
    - - nginx - - - nginx - openresty - -
    - - mybatis系列-第一条sql的细节 - /2022/12/11/mybatis%E7%B3%BB%E5%88%97-%E7%AC%AC%E4%B8%80%E6%9D%A1sql%E7%9A%84%E7%BB%86%E8%8A%82/ - 先补充两个点,
    第一是前面我们说了
    使用org.apache.ibatis.builder.xml.XMLConfigBuilder 创建了parser解析器,那么解析的结果是什么
    看这个方法的返回值

    -
    public Configuration parse() {
    -  if (parsed) {
    -    throw new BuilderException("Each XMLConfigBuilder can only be used once.");
    +

    具体的sqlSource是通过org.apache.ibatis.builder.SqlSourceBuilder#parse 创建的
    具体的代码逻辑是

    +
    public SqlSource parse(String originalSql, Class<?> parameterType, Map<String, Object> additionalParameters) {
    +  ParameterMappingTokenHandler handler = new ParameterMappingTokenHandler(configuration, parameterType, additionalParameters);
    +  GenericTokenParser parser = new GenericTokenParser("#{", "}", handler);
    +  String sql;
    +  if (configuration.isShrinkWhitespacesInSql()) {
    +    sql = parser.parse(removeExtraWhitespaces(originalSql));
    +  } else {
    +    sql = parser.parse(originalSql);
       }
    -  parsed = true;
    -  parseConfiguration(parser.evalNode("/configuration"));
    -  return configuration;
    -}
    + return new StaticSqlSource(configuration, sql, handler.getParameterMappings()); +}
    -

    返回的是 org.apache.ibatis.session.Configuration , 而这个 Configuration 也是 mybatis 中特别重要的配置核心类,贴一下里面的成员变量,

    -
    public class Configuration {
    +

    这里创建的其实是StaticSqlSource ,多带一句前面的parser是将原来这样select * from student where id = #{id}sql 解析成了select * from student where id = ? 然后创建了StaticSqlSource

    +
    public StaticSqlSource(Configuration configuration, String sql, List<ParameterMapping> parameterMappings) {
    +  this.sql = sql;
    +  this.parameterMappings = parameterMappings;
    +  this.configuration = configuration;
    +}
    - protected Environment environment; +

    为什么前面要讲这么多好像没什么关系的代码呢,其实在最开始我们执行sql的代码中

    +
    @Override
    +  public <E> List<E> query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler) throws SQLException {
    +    BoundSql boundSql = ms.getBoundSql(parameterObject);
    +    CacheKey key = createCacheKey(ms, parameterObject, rowBounds, boundSql);
    +    return query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    +  }
    - protected boolean safeRowBoundsEnabled; - protected boolean safeResultHandlerEnabled = true; - protected boolean mapUnderscoreToCamelCase; - protected boolean aggressiveLazyLoading; - protected boolean multipleResultSetsEnabled = true; - protected boolean useGeneratedKeys; - protected boolean useColumnLabel = true; - protected boolean cacheEnabled = true; - protected boolean callSettersOnNulls; - protected boolean useActualParamName = true; - protected boolean returnInstanceForEmptyRow; - protected boolean shrinkWhitespacesInSql; - protected boolean nullableOnForEach; - protected boolean argNameBasedConstructorAutoMapping; +

    这里获取了BoundSql,而BoundSql是怎么来的呢,首先调用了org.apache.ibatis.mapping.MappedStatement#getBoundSql

    +
    public BoundSql getBoundSql(Object parameterObject) {
    +    BoundSql boundSql = sqlSource.getBoundSql(parameterObject);
    +    List<ParameterMapping> parameterMappings = boundSql.getParameterMappings();
    +    if (parameterMappings == null || parameterMappings.isEmpty()) {
    +      boundSql = new BoundSql(configuration, boundSql.getSql(), parameterMap.getParameterMappings(), parameterObject);
    +    }
     
    -  protected String logPrefix;
    -  protected Class<? extends Log> logImpl;
    -  protected Class<? extends VFS> vfsImpl;
    -  protected Class<?> defaultSqlProviderType;
    -  protected LocalCacheScope localCacheScope = LocalCacheScope.SESSION;
    -  protected JdbcType jdbcTypeForNull = JdbcType.OTHER;
    -  protected Set<String> lazyLoadTriggerMethods = new HashSet<>(Arrays.asList("equals", "clone", "hashCode", "toString"));
    -  protected Integer defaultStatementTimeout;
    -  protected Integer defaultFetchSize;
    -  protected ResultSetType defaultResultSetType;
    -  protected ExecutorType defaultExecutorType = ExecutorType.SIMPLE;
    -  protected AutoMappingBehavior autoMappingBehavior = AutoMappingBehavior.PARTIAL;
    -  protected AutoMappingUnknownColumnBehavior autoMappingUnknownColumnBehavior = AutoMappingUnknownColumnBehavior.NONE;
    +    // check for nested result maps in parameter mappings (issue #30)
    +    for (ParameterMapping pm : boundSql.getParameterMappings()) {
    +      String rmId = pm.getResultMapId();
    +      if (rmId != null) {
    +        ResultMap rm = configuration.getResultMap(rmId);
    +        if (rm != null) {
    +          hasNestedResultMaps |= rm.hasNestedResultMaps();
    +        }
    +      }
    +    }
     
    -  protected Properties variables = new Properties();
    -  protected ReflectorFactory reflectorFactory = new DefaultReflectorFactory();
    -  protected ObjectFactory objectFactory = new DefaultObjectFactory();
    -  protected ObjectWrapperFactory objectWrapperFactory = new DefaultObjectWrapperFactory();
    +    return boundSql;
    +  }
    - protected boolean lazyLoadingEnabled = false; - protected ProxyFactory proxyFactory = new JavassistProxyFactory(); // #224 Using internal Javassist instead of OGNL +

    而我们从上面的解析中可以看到这里的sqlSource是一层RawSqlSource , 它的getBoundSql又是调用内部的sqlSource的方法

    +
    @Override
    +public BoundSql getBoundSql(Object parameterObject) {
    +  return sqlSource.getBoundSql(parameterObject);
    +}
    - protected String databaseId; - /** - * Configuration factory class. - * Used to create Configuration for loading deserialized unread properties. - * - * @see <a href='https://github.com/mybatis/old-google-code-issues/issues/300'>Issue 300 (google code)</a> - */ - protected Class<?> configurationFactory; +

    内部的sqlSource 就是StaticSqlSource

    +
    @Override
    +public BoundSql getBoundSql(Object parameterObject) {
    +  return new BoundSql(configuration, sql, parameterMappings, parameterObject);
    +}
    - protected final MapperRegistry mapperRegistry = new MapperRegistry(this); - protected final InterceptorChain interceptorChain = new InterceptorChain(); - protected final TypeHandlerRegistry typeHandlerRegistry = new TypeHandlerRegistry(this); - protected final TypeAliasRegistry typeAliasRegistry = new TypeAliasRegistry(); - protected final LanguageDriverRegistry languageRegistry = new LanguageDriverRegistry(); +

    这个BoundSql的内容也比较简单

    +
    public BoundSql(Configuration configuration, String sql, List<ParameterMapping> parameterMappings, Object parameterObject) {
    +  this.sql = sql;
    +  this.parameterMappings = parameterMappings;
    +  this.parameterObject = parameterObject;
    +  this.additionalParameters = new HashMap<>();
    +  this.metaParameters = configuration.newMetaObject(additionalParameters);
    +}
    - protected final Map<String, MappedStatement> mappedStatements = new StrictMap<MappedStatement>("Mapped Statements collection") - .conflictMessageProducer((savedValue, targetValue) -> - ". please check " + savedValue.getResource() + " and " + targetValue.getResource()); - protected final Map<String, Cache> caches = new StrictMap<>("Caches collection"); - protected final Map<String, ResultMap> resultMaps = new StrictMap<>("Result Maps collection"); - protected final Map<String, ParameterMap> parameterMaps = new StrictMap<>("Parameter Maps collection"); - protected final Map<String, KeyGenerator> keyGenerators = new StrictMap<>("Key Generators collection"); +

    而上次在这边org.apache.ibatis.executor.SimpleExecutor#doQuery 的时候落了个东西,就是StatementHandler的逻辑

    +
    @Override
    +public <E> List<E> doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {
    +  Statement stmt = null;
    +  try {
    +    Configuration configuration = ms.getConfiguration();
    +    StatementHandler handler = configuration.newStatementHandler(wrapper, ms, parameter, rowBounds, resultHandler, boundSql);
    +    stmt = prepareStatement(handler, ms.getStatementLog());
    +    return handler.query(stmt, resultHandler);
    +  } finally {
    +    closeStatement(stmt);
    +  }
    +}
    - protected final Set<String> loadedResources = new HashSet<>(); - protected final Map<String, XNode> sqlFragments = new StrictMap<>("XML fragments parsed from previous mappers"); +

    它是通过statementType来区分应该使用哪个statementHandler,我们这使用的就是PreparedStatementHandler

    +
    public RoutingStatementHandler(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) {
     
    -  protected final Collection<XMLStatementBuilder> incompleteStatements = new LinkedList<>();
    -  protected final Collection<CacheRefResolver> incompleteCacheRefs = new LinkedList<>();
    -  protected final Collection<ResultMapResolver> incompleteResultMaps = new LinkedList<>();
    -  protected final Collection<MethodResolver> incompleteMethods = new LinkedList<>();
    + switch (ms.getStatementType()) { + case STATEMENT: + delegate = new SimpleStatementHandler(executor, ms, parameter, rowBounds, resultHandler, boundSql); + break; + case PREPARED: + delegate = new PreparedStatementHandler(executor, ms, parameter, rowBounds, resultHandler, boundSql); + break; + case CALLABLE: + delegate = new CallableStatementHandler(executor, ms, parameter, rowBounds, resultHandler, boundSql); + break; + default: + throw new ExecutorException("Unknown statement type: " + ms.getStatementType()); + } -

    这么多成员变量,先不一一解释作用,但是其中的几个参数我们应该是已经知道了的,第一个就是 mappedStatements ,上一篇我们知道被解析的mapper就是放在这里,后面的 resultMapsparameterMaps 也比较常用的就是我们参数和结果的映射map,这里跟我之前有一篇解释为啥我们一些变量的使用会比较特殊,比如list,可以参考这篇keyGenerators是在我们需要定义主键生成器的时候使用。
    然后第二点是我们创建的 org.apache.ibatis.session.SqlSessionFactory 是哪个,

    -
    public SqlSessionFactory build(Configuration config) {
    -  return new DefaultSqlSessionFactory(config);
    -}
    - -

    是这个 DefaultSqlSessionFactory ,这是其中一个 SqlSessionFactory 的实现
    接下来我们看看 openSession 里干了啥

    -
    public SqlSession openSession() {
    -  return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, false);
    -}
    - -

    这边有几个参数,第一个是默认的执行器类型,往上找找上面贴着的 Configuration 的成员变量里可以看到默认是
    protected ExecutorType defaultExecutorType = ExecutorType.SIMPLE;

    -

    因为没有指明特殊的执行逻辑,所以默认我们也就用简单类型的,第二个参数是是事务级别,第三个是是否自动提交

    -
    private SqlSession openSessionFromDataSource(ExecutorType execType, TransactionIsolationLevel level, boolean autoCommit) {
    -  Transaction tx = null;
    -  try {
    -    final Environment environment = configuration.getEnvironment();
    -    final TransactionFactory transactionFactory = getTransactionFactoryFromEnvironment(environment);
    -    tx = transactionFactory.newTransaction(environment.getDataSource(), level, autoCommit);
    -    // --------> 先关注这里
    -    final Executor executor = configuration.newExecutor(tx, execType);
    -    return new DefaultSqlSession(configuration, executor, autoCommit);
    -  } catch (Exception e) {
    -    closeTransaction(tx); // may have fetched a connection so lets call close()
    -    throw ExceptionFactory.wrapException("Error opening session.  Cause: " + e, e);
    -  } finally {
    -    ErrorContext.instance().reset();
    -  }
    -}
    - -

    具体是调用了 Configuration 的这个方法

    -
    public Executor newExecutor(Transaction transaction, ExecutorType executorType) {
    -  executorType = executorType == null ? defaultExecutorType : executorType;
    -  Executor executor;
    -  if (ExecutorType.BATCH == executorType) {
    -    executor = new BatchExecutor(this, transaction);
    -  } else if (ExecutorType.REUSE == executorType) {
    -    executor = new ReuseExecutor(this, transaction);
    -  } else {
    -    // ---------> 会走到这个分支
    -    executor = new SimpleExecutor(this, transaction);
    -  }
    -  if (cacheEnabled) {
    -    executor = new CachingExecutor(executor);
    -  }
    -  executor = (Executor) interceptorChain.pluginAll(executor);
    -  return executor;
     }
    -

    上面传入的 executorTypeConfiguration 的默认类型,也就是 simple 类型,并且 cacheEnabledConfiguration 默认为 true,所以会包装成CachingExecutor ,然后后面就是插件了,这块我们先不展开
    然后我们的openSession返回的就是创建了DefaultSqlSession

    -
    public DefaultSqlSession(Configuration configuration, Executor executor, boolean autoCommit) {
    -    this.configuration = configuration;
    -    this.executor = executor;
    -    this.dirty = false;
    -    this.autoCommit = autoCommit;
    -  }
    - -

    然后就是调用 selectOne, 因为前面已经把这部分代码说过了,就直接跳转过来
    org.apache.ibatis.session.defaults.DefaultSqlSession#selectList(java.lang.String, java.lang.Object, org.apache.ibatis.session.RowBounds, org.apache.ibatis.session.ResultHandler)

    -
    private <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds, ResultHandler handler) {
    -  try {
    -    MappedStatement ms = configuration.getMappedStatement(statement);
    -    return executor.query(ms, wrapCollection(parameter), rowBounds, handler);
    -  } catch (Exception e) {
    -    throw ExceptionFactory.wrapException("Error querying database.  Cause: " + e, e);
    -  } finally {
    -    ErrorContext.instance().reset();
    -  }
    -}
    - -

    因为前面说了 executor 包装了 CachingExecutor ,所以会先调用

    -
    @Override
    -public <E> List<E> query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler) throws SQLException {
    -  BoundSql boundSql = ms.getBoundSql(parameterObject);
    -  CacheKey key = createCacheKey(ms, parameterObject, rowBounds, boundSql);
    -  return query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    -}
    - -

    然后是调用的真实的query方法

    -
    @Override
    -public <E> List<E> query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
    -    throws SQLException {
    -  Cache cache = ms.getCache();
    -  if (cache != null) {
    -    flushCacheIfRequired(ms);
    -    if (ms.isUseCache() && resultHandler == null) {
    -      ensureNoOutParams(ms, boundSql);
    -      @SuppressWarnings("unchecked")
    -      List<E> list = (List<E>) tcm.getObject(cache, key);
    -      if (list == null) {
    -        list = delegate.query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    -        tcm.putObject(cache, key, list); // issue #578 and #116
    -      }
    -      return list;
    -    }
    -  }
    -  return delegate.query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    -}
    - -

    这里是第一次查询,没有缓存就先到最后一行,继续是调用到 org.apache.ibatis.executor.BaseExecutor#queryFromDatabase

    -
    @Override
    -  public <E> List<E> query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql) throws SQLException {
    -    ErrorContext.instance().resource(ms.getResource()).activity("executing a query").object(ms.getId());
    -    if (closed) {
    -      throw new ExecutorException("Executor was closed.");
    -    }
    -    if (queryStack == 0 && ms.isFlushCacheRequired()) {
    -      clearLocalCache();
    -    }
    -    List<E> list;
    -    try {
    -      queryStack++;
    -      list = resultHandler == null ? (List<E>) localCache.getObject(key) : null;
    -      if (list != null) {
    -        handleLocallyCachedOutputParameters(ms, key, parameter, boundSql);
    -      } else {
    -        // ----------->会走到这里
    -        list = queryFromDatabase(ms, parameter, rowBounds, resultHandler, key, boundSql);
    -      }
    -    } finally {
    -      queryStack--;
    -    }
    -    if (queryStack == 0) {
    -      for (DeferredLoad deferredLoad : deferredLoads) {
    -        deferredLoad.load();
    -      }
    -      // issue #601
    -      deferredLoads.clear();
    -      if (configuration.getLocalCacheScope() == LocalCacheScope.STATEMENT) {
    -        // issue #482
    -        clearLocalCache();
    -      }
    -    }
    -    return list;
    -  }
    - -

    然后是

    -
    private <E> List<E> queryFromDatabase(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql) throws SQLException {
    -  List<E> list;
    -  localCache.putObject(key, EXECUTION_PLACEHOLDER);
    -  try {
    -    list = doQuery(ms, parameter, rowBounds, resultHandler, boundSql);
    -  } finally {
    -    localCache.removeObject(key);
    -  }
    -  localCache.putObject(key, list);
    -  if (ms.getStatementType() == StatementType.CALLABLE) {
    -    localOutputParameterCache.putObject(key, parameter);
    -  }
    -  return list;
    -}
    - -

    然后就是 simpleExecutor 的执行过程

    +

    所以上次有个细节可以补充,这边的doQuery里面的handler.query 应该是调用了PreparedStatementHandler 的query方法

    @Override
     public <E> List<E> doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {
       Statement stmt = null;
    @@ -7467,7 +7316,8 @@ location ~*}
     }
    -

    接下去其实就是跟jdbc交互了

    + +

    因为上面prepareStatement中getConnection拿到connection是com.mysql.cj.jdbc.ConnectionImpl#ConnectionImpl(com.mysql.cj.conf.HostInfo)

    @Override
     public <E> List<E> query(Statement statement, ResultHandler resultHandler) throws SQLException {
       PreparedStatement ps = (PreparedStatement) statement;
    @@ -7475,462 +7325,167 @@ location ~*return resultSetHandler.handleResultSets(ps);
     }
    -

    com.mysql.cj.jdbc.ClientPreparedStatement#execute

    -
    public boolean execute() throws SQLException {
    -        try {
    -            synchronized(this.checkClosed().getConnectionMutex()) {
    -                JdbcConnection locallyScopedConn = this.connection;
    -                if (!this.doPingInstead && !this.checkReadOnlySafeStatement()) {
    -                    throw SQLError.createSQLException(Messages.getString("PreparedStatement.20") + Messages.getString("PreparedStatement.21"), "S1009", this.exceptionInterceptor);
    -                } else {
    -                    ResultSetInternalMethods rs = null;
    -                    this.lastQueryIsOnDupKeyUpdate = false;
    -                    if (this.retrieveGeneratedKeys) {
    -                        this.lastQueryIsOnDupKeyUpdate = this.containsOnDuplicateKeyUpdate();
    -                    }
    -
    -                    this.batchedGeneratedKeys = null;
    -                    this.resetCancelledState();
    -                    this.implicitlyCloseAllOpenResults();
    -                    this.clearWarnings();
    -                    if (this.doPingInstead) {
    -                        this.doPingInstead();
    -                        return true;
    -                    } else {
    -                        this.setupStreamingTimeout(locallyScopedConn);
    -                        Message sendPacket = ((PreparedQuery)this.query).fillSendPacket(((PreparedQuery)this.query).getQueryBindings());
    -                        String oldDb = null;
    -                        if (!locallyScopedConn.getDatabase().equals(this.getCurrentDatabase())) {
    -                            oldDb = locallyScopedConn.getDatabase();
    -                            locallyScopedConn.setDatabase(this.getCurrentDatabase());
    -                        }
    +

    那又为什么是这个呢,可以在网上找,我们在mybatis-config.xml里配置的

    +
    <transactionManager type="JDBC"/>
    - CachedResultSetMetaData cachedMetadata = null; - boolean cacheResultSetMetadata = (Boolean)locallyScopedConn.getPropertySet().getBooleanProperty(PropertyKey.cacheResultSetMetadata).getValue(); - if (cacheResultSetMetadata) { - cachedMetadata = locallyScopedConn.getCachedMetaData(((PreparedQuery)this.query).getOriginalSql()); - } +

    因此在parseConfiguration中配置environment时

    +
    private void parseConfiguration(XNode root) {
    +    try {
    +      // issue #117 read properties first
    +      propertiesElement(root.evalNode("properties"));
    +      Properties settings = settingsAsProperties(root.evalNode("settings"));
    +      loadCustomVfs(settings);
    +      loadCustomLogImpl(settings);
    +      typeAliasesElement(root.evalNode("typeAliases"));
    +      pluginElement(root.evalNode("plugins"));
    +      objectFactoryElement(root.evalNode("objectFactory"));
    +      objectWrapperFactoryElement(root.evalNode("objectWrapperFactory"));
    +      reflectorFactoryElement(root.evalNode("reflectorFactory"));
    +      settingsElement(settings);
    +      // read it after objectFactory and objectWrapperFactory issue #631
    +      // ----------> 就是这里
    +      environmentsElement(root.evalNode("environments"));
    +      databaseIdProviderElement(root.evalNode("databaseIdProvider"));
    +      typeHandlerElement(root.evalNode("typeHandlers"));
    +      mapperElement(root.evalNode("mappers"));
    +    } catch (Exception e) {
    +      throw new BuilderException("Error parsing SQL Mapper Configuration. Cause: " + e, e);
    +    }
    +  }
    - locallyScopedConn.setSessionMaxRows(this.getQueryInfo().getFirstStmtChar() == 'S' ? this.maxRows : -1); - rs = this.executeInternal(this.maxRows, sendPacket, this.createStreamingResultSet(), this.getQueryInfo().getFirstStmtChar() == 'S', cachedMetadata, false); - if (cachedMetadata != null) { - locallyScopedConn.initializeResultsMetadataFromCache(((PreparedQuery)this.query).getOriginalSql(), cachedMetadata, rs); - } else if (rs.hasRows() && cacheResultSetMetadata) { - locallyScopedConn.initializeResultsMetadataFromCache(((PreparedQuery)this.query).getOriginalSql(), (CachedResultSetMetaData)null, rs); - } +

    调用的这个方法通过获取xml中的transactionManager 配置的类型,也就是JDBC

    +
    private void environmentsElement(XNode context) throws Exception {
    +  if (context != null) {
    +    if (environment == null) {
    +      environment = context.getStringAttribute("default");
    +    }
    +    for (XNode child : context.getChildren()) {
    +      String id = child.getStringAttribute("id");
    +      if (isSpecifiedEnvironment(id)) {
    +        // -------> 找到这里
    +        TransactionFactory txFactory = transactionManagerElement(child.evalNode("transactionManager"));
    +        DataSourceFactory dsFactory = dataSourceElement(child.evalNode("dataSource"));
    +        DataSource dataSource = dsFactory.getDataSource();
    +        Environment.Builder environmentBuilder = new Environment.Builder(id)
    +            .transactionFactory(txFactory)
    +            .dataSource(dataSource);
    +        configuration.setEnvironment(environmentBuilder.build());
    +        break;
    +      }
    +    }
    +  }
    +}
    - if (this.retrieveGeneratedKeys) { - rs.setFirstCharOfQuery(this.getQueryInfo().getFirstStmtChar()); - } +

    是通过以下方法获取的,

    +
    // 方法全限定名 org.apache.ibatis.builder.xml.XMLConfigBuilder#transactionManagerElement
    +private TransactionFactory transactionManagerElement(XNode context) throws Exception {
    +    if (context != null) {
    +      String type = context.getStringAttribute("type");
    +      Properties props = context.getChildrenAsProperties();
    +      TransactionFactory factory = (TransactionFactory) resolveClass(type).getDeclaredConstructor().newInstance();
    +      factory.setProperties(props);
    +      return factory;
    +    }
    +    throw new BuilderException("Environment declaration requires a TransactionFactory.");
    +  }
     
    -                        if (oldDb != null) {
    -                            locallyScopedConn.setDatabase(oldDb);
    -                        }
    -
    -                        if (rs != null) {
    -                            this.lastInsertId = rs.getUpdateID();
    -                            this.results = rs;
    -                        }
    -
    -                        return rs != null && rs.hasRows();
    -                    }
    -                }
    -            }
    -        } catch (CJException var11) {
    -            throw SQLExceptionsMapping.translateException(var11, this.getExceptionInterceptor());
    -        }
    -    }
    - -]]> - - Java - Mybatis - - - Java - Mysql - Mybatis - - - - mybatis系列-第一条sql的更多细节 - /2022/12/18/mybatis%E7%B3%BB%E5%88%97-%E7%AC%AC%E4%B8%80%E6%9D%A1sql%E7%9A%84%E6%9B%B4%E5%A4%9A%E7%BB%86%E8%8A%82/ - 执行细节
    首先设置了默认的languageDriver
    org/mybatis/mybatis/3.5.11/mybatis-3.5.11-sources.jar!/org/apache/ibatis/session/Configuration.java:215
    configuration的构造方法里

    -
    languageRegistry.setDefaultDriverClass(XMLLanguageDriver.class);
    - -

    而在
    org.apache.ibatis.builder.xml.XMLStatementBuilder#parseStatementNode
    中,创建了sqlSource,这里就会根据前面的 LanguageDriver 的实现选择对应的 sqlSource

    -
    SqlSource sqlSource = langDriver.createSqlSource(configuration, context, parameterTypeClass);
    - -

    createSqlSource 就会调用

    -
    @Override
    -public SqlSource createSqlSource(Configuration configuration, XNode script, Class<?> parameterType) {
    -  XMLScriptBuilder builder = new XMLScriptBuilder(configuration, script, parameterType);
    -  return builder.parseScriptNode();
    -}
    - -

    再往下的逻辑在 parseScriptNode 中,org.apache.ibatis.scripting.xmltags.XMLScriptBuilder#parseScriptNode

    -
    public SqlSource parseScriptNode() {
    -  MixedSqlNode rootSqlNode = parseDynamicTags(context);
    -  SqlSource sqlSource;
    -  if (isDynamic) {
    -    sqlSource = new DynamicSqlSource(configuration, rootSqlNode);
    -  } else {
    -    sqlSource = new RawSqlSource(configuration, rootSqlNode, parameterType);
    +// 方法全限定名 org.apache.ibatis.builder.BaseBuilder#resolveClass
    +protected <T> Class<? extends T> resolveClass(String alias) {
    +    if (alias == null) {
    +      return null;
    +    }
    +    try {
    +      return resolveAlias(alias);
    +    } catch (Exception e) {
    +      throw new BuilderException("Error resolving class. Cause: " + e, e);
    +    }
       }
    -  return sqlSource;
    -}
    -

    首先要解析dynamicTag,调用了org.apache.ibatis.scripting.xmltags.XMLScriptBuilder#parseDynamicTags

    -
    protected MixedSqlNode parseDynamicTags(XNode node) {
    -    List<SqlNode> contents = new ArrayList<>();
    -    NodeList children = node.getNode().getChildNodes();
    -    for (int i = 0; i < children.getLength(); i++) {
    -      XNode child = node.newXNode(children.item(i));
    -      if (child.getNode().getNodeType() == Node.CDATA_SECTION_NODE || child.getNode().getNodeType() == Node.TEXT_NODE) {
    -        String data = child.getStringBody("");
    -        TextSqlNode textSqlNode = new TextSqlNode(data);
    -        // ---------> 主要是这边的逻辑
    -        if (textSqlNode.isDynamic()) {
    -          contents.add(textSqlNode);
    -          isDynamic = true;
    -        } else {
    -          contents.add(new StaticTextSqlNode(data));
    -        }
    -      } else if (child.getNode().getNodeType() == Node.ELEMENT_NODE) { // issue #628
    -        String nodeName = child.getNode().getNodeName();
    -        NodeHandler handler = nodeHandlerMap.get(nodeName);
    -        if (handler == null) {
    -          throw new BuilderException("Unknown element <" + nodeName + "> in SQL statement.");
    -        }
    -        handler.handleNode(child, contents);
    -        isDynamic = true;
    +// 方法全限定名 org.apache.ibatis.builder.BaseBuilder#resolveAlias
    +  protected <T> Class<? extends T> resolveAlias(String alias) {
    +    return typeAliasRegistry.resolveAlias(alias);
    +  }
    +// 方法全限定名 org.apache.ibatis.type.TypeAliasRegistry#resolveAlias
    +  public <T> Class<T> resolveAlias(String string) {
    +    try {
    +      if (string == null) {
    +        return null;
           }
    +      // issue #748
    +      String key = string.toLowerCase(Locale.ENGLISH);
    +      Class<T> value;
    +      if (typeAliases.containsKey(key)) {
    +        value = (Class<T>) typeAliases.get(key);
    +      } else {
    +        value = (Class<T>) Resources.classForName(string);
    +      }
    +      return value;
    +    } catch (ClassNotFoundException e) {
    +      throw new TypeException("Could not resolve type alias '" + string + "'.  Cause: " + e, e);
         }
    -    return new MixedSqlNode(contents);
    -  }
    - -

    判断是否是动态sql,调用了org.apache.ibatis.scripting.xmltags.TextSqlNode#isDynamic

    -
    public boolean isDynamic() {
    -  DynamicCheckerTokenParser checker = new DynamicCheckerTokenParser();
    -  // ----------> 主要是这里的方法
    -  GenericTokenParser parser = createParser(checker);
    -  parser.parse(text);
    -  return checker.isDynamic();
    -}
    - -

    创建parser的时候可以看到这个parser是干了啥,其实就是找有没有${ , }

    -
    private GenericTokenParser createParser(TokenHandler handler) {
    -  return new GenericTokenParser("${", "}", handler);
    -}
    + }
    +

    而通过JDBC获取得是啥的,就是在Configuration的构造方法里写了的JdbcTransactionFactory

    +
    public Configuration() {
    +  typeAliasRegistry.registerAlias("JDBC", JdbcTransactionFactory.class);
    -

    如果是的话,就在上面把 isDynamic 设置为true 如果是true 的话就创建 DynamicSqlSource

    -
    sqlSource = new DynamicSqlSource(configuration, rootSqlNode);
    +

    所以我们在这

    +
    private SqlSession openSessionFromDataSource(ExecutorType execType, TransactionIsolationLevel level, boolean autoCommit) {
    +  Transaction tx = null;
    +  try {
    +    final Environment environment = configuration.getEnvironment();
    +    final TransactionFactory transactionFactory = getTransactionFactoryFromEnvironment(environment);
    -

    如果不是的话就创建RawSqlSource

    -
    sqlSource = new RawSqlSource(configuration, rootSqlNode, parameterType);
    +

    获得到的TransactionFactory 就是 JdbcTransactionFactory ,而后

    +
    tx = transactionFactory.newTransaction(environment.getDataSource(), level, autoCommit);
     ```java
     
    -但是这不是一个真实可用的 `sqlSource` ,
    -实际创建的时候会走到这
    +创建的transaction就是JdbcTransaction 
     ```java
    -public RawSqlSource(Configuration configuration, SqlNode rootSqlNode, Class<?> parameterType) {
    -    this(configuration, getSql(configuration, rootSqlNode), parameterType);
    -  }
    -
    -  public RawSqlSource(Configuration configuration, String sql, Class<?> parameterType) {
    -    SqlSourceBuilder sqlSourceParser = new SqlSourceBuilder(configuration);
    -    Class<?> clazz = parameterType == null ? Object.class : parameterType;
    -    sqlSource = sqlSourceParser.parse(sql, clazz, new HashMap<>());
    -  }
    + @Override + public Transaction newTransaction(DataSource ds, TransactionIsolationLevel level, boolean autoCommit) { + return new JdbcTransaction(ds, level, autoCommit, skipSetAutoCommitOnClose); + }
    -

    具体的sqlSource是通过org.apache.ibatis.builder.SqlSourceBuilder#parse 创建的
    具体的代码逻辑是

    -
    public SqlSource parse(String originalSql, Class<?> parameterType, Map<String, Object> additionalParameters) {
    -  ParameterMappingTokenHandler handler = new ParameterMappingTokenHandler(configuration, parameterType, additionalParameters);
    -  GenericTokenParser parser = new GenericTokenParser("#{", "}", handler);
    -  String sql;
    -  if (configuration.isShrinkWhitespacesInSql()) {
    -    sql = parser.parse(removeExtraWhitespaces(originalSql));
    +

    然后我们再会上去看代码getConnection ,

    +
    protected Connection getConnection(Log statementLog) throws SQLException {
    +  // -------> 这里的transaction就是JdbcTransaction
    +  Connection connection = transaction.getConnection();
    +  if (statementLog.isDebugEnabled()) {
    +    return ConnectionLogger.newInstance(connection, statementLog, queryStack);
       } else {
    -    sql = parser.parse(originalSql);
    +    return connection;
       }
    -  return new StaticSqlSource(configuration, sql, handler.getParameterMappings());
    -}
    - -

    这里创建的其实是StaticSqlSource ,多带一句前面的parser是将原来这样select * from student where id = #{id}sql 解析成了select * from student where id = ? 然后创建了StaticSqlSource

    -
    public StaticSqlSource(Configuration configuration, String sql, List<ParameterMapping> parameterMappings) {
    -  this.sql = sql;
    -  this.parameterMappings = parameterMappings;
    -  this.configuration = configuration;
    -}
    - -

    为什么前面要讲这么多好像没什么关系的代码呢,其实在最开始我们执行sql的代码中

    -
    @Override
    -  public <E> List<E> query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler) throws SQLException {
    -    BoundSql boundSql = ms.getBoundSql(parameterObject);
    -    CacheKey key = createCacheKey(ms, parameterObject, rowBounds, boundSql);
    -    return query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    -  }
    +}
    -

    这里获取了BoundSql,而BoundSql是怎么来的呢,首先调用了org.apache.ibatis.mapping.MappedStatement#getBoundSql

    -
    public BoundSql getBoundSql(Object parameterObject) {
    -    BoundSql boundSql = sqlSource.getBoundSql(parameterObject);
    -    List<ParameterMapping> parameterMappings = boundSql.getParameterMappings();
    -    if (parameterMappings == null || parameterMappings.isEmpty()) {
    -      boundSql = new BoundSql(configuration, boundSql.getSql(), parameterMap.getParameterMappings(), parameterObject);
    +

    即调用了

    +
      @Override
    +  public Connection getConnection() throws SQLException {
    +    if (connection == null) {
    +      openConnection();
         }
    +    return connection;
    +  }
     
    -    // check for nested result maps in parameter mappings (issue #30)
    -    for (ParameterMapping pm : boundSql.getParameterMappings()) {
    -      String rmId = pm.getResultMapId();
    -      if (rmId != null) {
    -        ResultMap rm = configuration.getResultMap(rmId);
    -        if (rm != null) {
    -          hasNestedResultMaps |= rm.hasNestedResultMaps();
    -        }
    -      }
    +  protected void openConnection() throws SQLException {
    +    if (log.isDebugEnabled()) {
    +      log.debug("Opening JDBC Connection");
         }
    +    connection = dataSource.getConnection();
    +    if (level != null) {
    +      connection.setTransactionIsolation(level.getLevel());
    +    }
    +    setDesiredAutoCommit(autoCommit);
    +  }
    +  @Override
    +  public Connection getConnection() throws SQLException {
    +    return popConnection(dataSource.getUsername(), dataSource.getPassword()).getProxyConnection();
    +  }
     
    -    return boundSql;
    -  }
    - -

    而我们从上面的解析中可以看到这里的sqlSource是一层RawSqlSource , 它的getBoundSql又是调用内部的sqlSource的方法

    -
    @Override
    -public BoundSql getBoundSql(Object parameterObject) {
    -  return sqlSource.getBoundSql(parameterObject);
    -}
    - -

    内部的sqlSource 就是StaticSqlSource

    -
    @Override
    -public BoundSql getBoundSql(Object parameterObject) {
    -  return new BoundSql(configuration, sql, parameterMappings, parameterObject);
    -}
    - -

    这个BoundSql的内容也比较简单

    -
    public BoundSql(Configuration configuration, String sql, List<ParameterMapping> parameterMappings, Object parameterObject) {
    -  this.sql = sql;
    -  this.parameterMappings = parameterMappings;
    -  this.parameterObject = parameterObject;
    -  this.additionalParameters = new HashMap<>();
    -  this.metaParameters = configuration.newMetaObject(additionalParameters);
    -}
    - -

    而上次在这边org.apache.ibatis.executor.SimpleExecutor#doQuery 的时候落了个东西,就是StatementHandler的逻辑

    -
    @Override
    -public <E> List<E> doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {
    -  Statement stmt = null;
    -  try {
    -    Configuration configuration = ms.getConfiguration();
    -    StatementHandler handler = configuration.newStatementHandler(wrapper, ms, parameter, rowBounds, resultHandler, boundSql);
    -    stmt = prepareStatement(handler, ms.getStatementLog());
    -    return handler.query(stmt, resultHandler);
    -  } finally {
    -    closeStatement(stmt);
    -  }
    -}
    - -

    它是通过statementType来区分应该使用哪个statementHandler,我们这使用的就是PreparedStatementHandler

    -
    public RoutingStatementHandler(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) {
    -
    -  switch (ms.getStatementType()) {
    -    case STATEMENT:
    -      delegate = new SimpleStatementHandler(executor, ms, parameter, rowBounds, resultHandler, boundSql);
    -      break;
    -    case PREPARED:
    -      delegate = new PreparedStatementHandler(executor, ms, parameter, rowBounds, resultHandler, boundSql);
    -      break;
    -    case CALLABLE:
    -      delegate = new CallableStatementHandler(executor, ms, parameter, rowBounds, resultHandler, boundSql);
    -      break;
    -    default:
    -      throw new ExecutorException("Unknown statement type: " + ms.getStatementType());
    -  }
    -
    -}
    - -

    所以上次有个细节可以补充,这边的doQuery里面的handler.query 应该是调用了PreparedStatementHandler 的query方法

    -
    @Override
    -public <E> List<E> doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {
    -  Statement stmt = null;
    -  try {
    -    Configuration configuration = ms.getConfiguration();
    -    StatementHandler handler = configuration.newStatementHandler(wrapper, ms, parameter, rowBounds, resultHandler, boundSql);
    -    stmt = prepareStatement(handler, ms.getStatementLog());
    -    return handler.query(stmt, resultHandler);
    -  } finally {
    -    closeStatement(stmt);
    -  }
    -}
    - - -

    因为上面prepareStatement中getConnection拿到connection是com.mysql.cj.jdbc.ConnectionImpl#ConnectionImpl(com.mysql.cj.conf.HostInfo)

    -
    @Override
    -public <E> List<E> query(Statement statement, ResultHandler resultHandler) throws SQLException {
    -  PreparedStatement ps = (PreparedStatement) statement;
    -  ps.execute();
    -  return resultSetHandler.handleResultSets(ps);
    -}
    - -

    那又为什么是这个呢,可以在网上找,我们在mybatis-config.xml里配置的

    -
    <transactionManager type="JDBC"/>
    - -

    因此在parseConfiguration中配置environment时

    -
    private void parseConfiguration(XNode root) {
    -    try {
    -      // issue #117 read properties first
    -      propertiesElement(root.evalNode("properties"));
    -      Properties settings = settingsAsProperties(root.evalNode("settings"));
    -      loadCustomVfs(settings);
    -      loadCustomLogImpl(settings);
    -      typeAliasesElement(root.evalNode("typeAliases"));
    -      pluginElement(root.evalNode("plugins"));
    -      objectFactoryElement(root.evalNode("objectFactory"));
    -      objectWrapperFactoryElement(root.evalNode("objectWrapperFactory"));
    -      reflectorFactoryElement(root.evalNode("reflectorFactory"));
    -      settingsElement(settings);
    -      // read it after objectFactory and objectWrapperFactory issue #631
    -      // ----------> 就是这里
    -      environmentsElement(root.evalNode("environments"));
    -      databaseIdProviderElement(root.evalNode("databaseIdProvider"));
    -      typeHandlerElement(root.evalNode("typeHandlers"));
    -      mapperElement(root.evalNode("mappers"));
    -    } catch (Exception e) {
    -      throw new BuilderException("Error parsing SQL Mapper Configuration. Cause: " + e, e);
    -    }
    -  }
    - -

    调用的这个方法通过获取xml中的transactionManager 配置的类型,也就是JDBC

    -
    private void environmentsElement(XNode context) throws Exception {
    -  if (context != null) {
    -    if (environment == null) {
    -      environment = context.getStringAttribute("default");
    -    }
    -    for (XNode child : context.getChildren()) {
    -      String id = child.getStringAttribute("id");
    -      if (isSpecifiedEnvironment(id)) {
    -        // -------> 找到这里
    -        TransactionFactory txFactory = transactionManagerElement(child.evalNode("transactionManager"));
    -        DataSourceFactory dsFactory = dataSourceElement(child.evalNode("dataSource"));
    -        DataSource dataSource = dsFactory.getDataSource();
    -        Environment.Builder environmentBuilder = new Environment.Builder(id)
    -            .transactionFactory(txFactory)
    -            .dataSource(dataSource);
    -        configuration.setEnvironment(environmentBuilder.build());
    -        break;
    -      }
    -    }
    -  }
    -}
    - -

    是通过以下方法获取的,

    -
    // 方法全限定名 org.apache.ibatis.builder.xml.XMLConfigBuilder#transactionManagerElement
    -private TransactionFactory transactionManagerElement(XNode context) throws Exception {
    -    if (context != null) {
    -      String type = context.getStringAttribute("type");
    -      Properties props = context.getChildrenAsProperties();
    -      TransactionFactory factory = (TransactionFactory) resolveClass(type).getDeclaredConstructor().newInstance();
    -      factory.setProperties(props);
    -      return factory;
    -    }
    -    throw new BuilderException("Environment declaration requires a TransactionFactory.");
    -  }
    -
    -// 方法全限定名 org.apache.ibatis.builder.BaseBuilder#resolveClass
    -protected <T> Class<? extends T> resolveClass(String alias) {
    -    if (alias == null) {
    -      return null;
    -    }
    -    try {
    -      return resolveAlias(alias);
    -    } catch (Exception e) {
    -      throw new BuilderException("Error resolving class. Cause: " + e, e);
    -    }
    -  }
    -
    -// 方法全限定名 org.apache.ibatis.builder.BaseBuilder#resolveAlias
    -  protected <T> Class<? extends T> resolveAlias(String alias) {
    -    return typeAliasRegistry.resolveAlias(alias);
    -  }
    -// 方法全限定名 org.apache.ibatis.type.TypeAliasRegistry#resolveAlias
    -  public <T> Class<T> resolveAlias(String string) {
    -    try {
    -      if (string == null) {
    -        return null;
    -      }
    -      // issue #748
    -      String key = string.toLowerCase(Locale.ENGLISH);
    -      Class<T> value;
    -      if (typeAliases.containsKey(key)) {
    -        value = (Class<T>) typeAliases.get(key);
    -      } else {
    -        value = (Class<T>) Resources.classForName(string);
    -      }
    -      return value;
    -    } catch (ClassNotFoundException e) {
    -      throw new TypeException("Could not resolve type alias '" + string + "'.  Cause: " + e, e);
    -    }
    -  }
    -

    而通过JDBC获取得是啥的,就是在Configuration的构造方法里写了的JdbcTransactionFactory

    -
    public Configuration() {
    -  typeAliasRegistry.registerAlias("JDBC", JdbcTransactionFactory.class);
    - -

    所以我们在这

    -
    private SqlSession openSessionFromDataSource(ExecutorType execType, TransactionIsolationLevel level, boolean autoCommit) {
    -  Transaction tx = null;
    -  try {
    -    final Environment environment = configuration.getEnvironment();
    -    final TransactionFactory transactionFactory = getTransactionFactoryFromEnvironment(environment);
    - -

    获得到的TransactionFactory 就是 JdbcTransactionFactory ,而后

    -
    tx = transactionFactory.newTransaction(environment.getDataSource(), level, autoCommit);
    -```java
    -
    -创建的transaction就是JdbcTransaction 
    -```java
    -  @Override
    -  public Transaction newTransaction(DataSource ds, TransactionIsolationLevel level, boolean autoCommit) {
    -    return new JdbcTransaction(ds, level, autoCommit, skipSetAutoCommitOnClose);
    -  }
    - -

    然后我们再会上去看代码getConnection ,

    -
    protected Connection getConnection(Log statementLog) throws SQLException {
    -  // -------> 这里的transaction就是JdbcTransaction
    -  Connection connection = transaction.getConnection();
    -  if (statementLog.isDebugEnabled()) {
    -    return ConnectionLogger.newInstance(connection, statementLog, queryStack);
    -  } else {
    -    return connection;
    -  }
    -}
    - -

    即调用了

    -
      @Override
    -  public Connection getConnection() throws SQLException {
    -    if (connection == null) {
    -      openConnection();
    -    }
    -    return connection;
    -  }
    -
    -  protected void openConnection() throws SQLException {
    -    if (log.isDebugEnabled()) {
    -      log.debug("Opening JDBC Connection");
    -    }
    -    connection = dataSource.getConnection();
    -    if (level != null) {
    -      connection.setTransactionIsolation(level.getLevel());
    -    }
    -    setDesiredAutoCommit(autoCommit);
    -  }
    -  @Override
    -  public Connection getConnection() throws SQLException {
    -    return popConnection(dataSource.getUsername(), dataSource.getPassword()).getProxyConnection();
    -  }
    -
    -private PooledConnection popConnection(String username, String password) throws SQLException {
    -    boolean countedWait = false;
    -    PooledConnection conn = null;
    -    long t = System.currentTimeMillis();
    -    int localBadConnectionCount = 0;
    +private PooledConnection popConnection(String username, String password) throws SQLException {
    +    boolean countedWait = false;
    +    PooledConnection conn = null;
    +    long t = System.currentTimeMillis();
    +    int localBadConnectionCount = 0;
     
         while (conn == null) {
           lock.lock();
    @@ -8210,1198 +7765,688 @@ location ~*
       
       
    -    pcre-intro-and-a-simple-package
    -    /2015/01/16/pcre-intro-and-a-simple-package/
    -    Pcre
    -

    Perl Compatible Regular Expressions (PCRE) is a regular
    expression C library inspired by the regular expression
    capabilities in the Perl programming language, written
    by Philip Hazel, starting in summer 1997.

    -
    -

    因为最近工作内容的一部分需要做字符串的识别处理,所以就顺便用上了之前在PHP中用过的正则,在C/C++中本身不包含正则库,这里使用的pcre,对MFC开发,在这里提供了静态链接库,在引入lib跟.h文件后即可使用。

    - + mybatis系列-第一条sql的细节 + /2022/12/11/mybatis%E7%B3%BB%E5%88%97-%E7%AC%AC%E4%B8%80%E6%9D%A1sql%E7%9A%84%E7%BB%86%E8%8A%82/ + 先补充两个点,
    第一是前面我们说了
    使用org.apache.ibatis.builder.xml.XMLConfigBuilder 创建了parser解析器,那么解析的结果是什么
    看这个方法的返回值

    +
    public Configuration parse() {
    +  if (parsed) {
    +    throw new BuilderException("Each XMLConfigBuilder can only be used once.");
    +  }
    +  parsed = true;
    +  parseConfiguration(parser.evalNode("/configuration"));
    +  return configuration;
    +}
    -

    Regular Expression Syntax

    然后是一些正则语法,官方的语法文档比较科学严谨,特别是对类似于贪婪匹配等细节的说明,当然一般的使用可以在网上找到很多匹配语法,例如这个

    -

    PCRE函数介绍

    -

    pcre_compile
    原型:

    -
    -
    #include <pcre.h>
    -pcre *pcre_compile(const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr);
    -

    功能:将一个正则表达式编译成一个内部表示,在匹配多个字符串时,可以加速匹配。其同pcre_compile2功能一样只是缺少一个参数errorcodeptr。
    参数:
    pattern 正则表达式
    options 为0,或者其他参数选项
    errptr 出错消息
    erroffset 出错位置
    tableptr 指向一个字符数组的指针,可以设置为空NULL

    -
    -

    pcre_exec
    原型:

    -
    -
    #include <pcre.h>
    -int pcre_exec(const pcre *code, const pcre_extra *extra, const char *subject, int length, int startoffset, int options, int *ovector, int ovecsize)
    -

    功能:使用编译好的模式进行匹配,采用与Perl相似的算法,返回匹配串的偏移位置。
    参数:
    code 编译好的模式
    extra 指向一个pcre_extra结构体,可以为NULL
    subject 需要匹配的字符串
    length 匹配的字符串长度(Byte)
    startoffset 匹配的开始位置
    options 选项位
    ovector 指向一个结果的整型数组
    ovecsize 数组大小。

    -

    这里是两个最常用的函数的简单说明,pcre的静态库提供了一系列的函数以供使用,可以参考这个博客说明,另外对于以上函数的具体参数详细说明可以参考官网此处

    -

    一个丑陋的封装

    void COcxDemoDlg::pcre_exec_all(const pcre * re, PCRE_SPTR src, vector<pair<int, int>> &vc)
    -{
    -	int rc;
    -	int ovector[30];
    -	int i = 0;
    -	pair<int, int> pr;
    -	rc = pcre_exec(re, NULL, src, strlen(src), i, 0, ovector, 30);
    -	for (; rc > 0;)
    -	{
    -		i = ovector[1];
    -		pr.first = ovector[2];
    -		pr.second = ovector[3];
    -		vc.push_back(pr);
    -		rc = pcre_exec(re, NULL, src, strlen(src), i, 0, ovector, 30);
    -	}
    -}
    -

    vector中是全文匹配后的索引对,只是简单地用下。

    -]]>
    - - C++ - - - c++ - mfc - -
    - - php-abstract-class-and-interface - /2016/11/10/php-abstract-class-and-interface/ - PHP抽象类和接口
      -
    • 抽象类与接口
    • -
    • 抽象类内可以包含非抽象函数,即可实现函数
    • -
    • 抽象类内必须包含至少一个抽象方法,抽象类和接口均不能实例化
    • -
    • 抽象类可以设置访问级别,接口默认都是public
    • -
    • 类可以实现多个接口但不能继承多个抽象类
    • -
    • 类必须实现抽象类和接口里的抽象方法,不一定要实现抽象类的非抽象方法
    • -
    • 接口内不能定义变量,但是可以定义常量
    • -
    -

    示例代码

    <?php
    -interface int1{
    -    const INTER1 = 111;
    -    function inter1();
    -}
    -interface int2{
    -    const INTER1 = 222;
    -    function inter2();
    -}
    -abstract class abst1{
    -    public function abstr1(){
    -        echo 1111;
    -    }
    -    abstract function abstra1(){
    -        echo 'ahahahha';
    -    }
    -}
    -abstract class abst2{
    -    public function abstr2(){
    -        echo 1111;
    -    }
    -    abstract function abstra2();
    -}
    -class normal1 extends abst1{
    -    protected function abstr2(){
    -        echo 222;
    -    }
    -}
    +

    返回的是 org.apache.ibatis.session.Configuration , 而这个 Configuration 也是 mybatis 中特别重要的配置核心类,贴一下里面的成员变量,

    +
    public class Configuration {
     
    -

    result

    PHP Fatal error:  Abstract function abst1::abstra1() cannot contain body in new.php on line 17
    +  protected Environment environment;
     
    -Fatal error: Abstract function abst1::abstra1() cannot contain body in php on line 17
    -]]> - - php - - - php - - - - powershell 初体验二 - /2022/11/20/powershell-%E5%88%9D%E4%BD%93%E9%AA%8C%E4%BA%8C/ - powershell创建数组也很方便
    可以这样

    -
    $nums=2,0,1,2
    -

    顺便可以用下我们上次学到的gettype()

    -

    如果是想创建连续数字的数组还可以用这个方便的方法

    -
    $nums=1..5
    -


    而且数组还可以存放各种类型的数据

    -
    $array=1,"哈哈",([System.Guid]::NewGuid()),(get-date)
    -


    还有判断类型可以用-is

    创建一个空数组

    -
    $array=@()
    -


    数组添加元素

    -
    $array+="a"
    -


    数组删除元素

    -
    $a=1..4
    -$a=$a[0..1]+$a[3]
    -

    -]]>
    - - 语言 - - - powershell - -
    - - powershell 初体验 - /2022/11/13/powershell-%E5%88%9D%E4%BD%93%E9%AA%8C/ - powershell变量

    变量命名类似于php

    -
    PS C:\Users\Nicks> $a=1
    -PS C:\Users\Nicks> $b=2
    -PS C:\Users\Nicks> $a*$b
    -2
    -

    有一个比较好用的是变量交换
    一般的语言做两个变量交换一般需要一个临时变量

    -
    $tmp=$a
    -$a=$b
    -$b=$tmp
    -

    而在powershell中可以这样

    -
    $a,$b=$b,$a
    -PS C:\Users\Nicks> $a,$b=$b,$a
    -PS C:\Users\Nicks> $a
    -2
    -PS C:\Users\Nicks> $b
    -1
    -

    还可以通过这个

    -
    PS C:\Users\Nicks> ls variable:
    +  protected boolean safeRowBoundsEnabled;
    +  protected boolean safeResultHandlerEnabled = true;
    +  protected boolean mapUnderscoreToCamelCase;
    +  protected boolean aggressiveLazyLoading;
    +  protected boolean multipleResultSetsEnabled = true;
    +  protected boolean useGeneratedKeys;
    +  protected boolean useColumnLabel = true;
    +  protected boolean cacheEnabled = true;
    +  protected boolean callSettersOnNulls;
    +  protected boolean useActualParamName = true;
    +  protected boolean returnInstanceForEmptyRow;
    +  protected boolean shrinkWhitespacesInSql;
    +  protected boolean nullableOnForEach;
    +  protected boolean argNameBasedConstructorAutoMapping;
     
    -Name                           Value
    -----                           -----
    -$                              $b
    -?                              True
    -^                              $b
    -a                              2
    -args                           {}
    -b                              1
    -

    查看现存的变量
    当然一般脚本都是动态类型的,
    可以通过
    gettype方法

    -]]>
    - - 语言 - - - powershell - -
    - - rabbitmq-tips - /2017/04/25/rabbitmq-tips/ - rabbitmq 介绍

    接触了一下rabbitmq,原来在选型的时候是在rabbitmq跟kafka之间做选择,网上搜了一下之后发现kafka的优势在于吞吐量,而rabbitmq相对注重可靠性,因为应用在im上,需要保证消息不能丢失所以就暂时选定rabbitmq,
    Message Queue的需求由来已久,80年代最早在金融交易中,高盛等公司采用Teknekron公司的产品,当时的Message queuing软件叫做:the information bus(TIB)。 TIB被电信和通讯公司采用,路透社收购了Teknekron公司。之后,IBM开发了MQSeries,微软开发了Microsoft Message Queue(MSMQ)。这些商业MQ供应商的问题是厂商锁定,价格高昂。2001年,Java Message queuing试图解决锁定和交互性的问题,但对应用来说反而更加麻烦了。
    RabbitMQ采用Erlang语言开发。Erlang语言由Ericson设计,专门为开发concurrent和distribution系统的一种语言,在电信领域使用广泛。OTP(Open Telecom Platform)作为Erlang语言的一部分,包含了很多基于Erlang开发的中间件/库/工具,如mnesia/SASL,极大方便了Erlang应用的开发。OTP就类似于Python语言中众多的module,用户借助这些module可以很方便的开发应用。
    于是2004年,摩根大通和iMatrix开始着手Advanced Message Queuing Protocol (AMQP)开放标准的开发。2006年,AMQP规范发布。2007年,Rabbit技术公司基于AMQP标准开发的RabbitMQ 1.0 发布。所有主要的编程语言均有与代理接口通讯的客户端库。

    -

    简单的使用经验

    通俗的理解

    这里介绍下其中的一些概念,connection表示和队列服务器的连接,一般情况下是tcp连接, channel表示通道,可以在一个连接上建立多个通道,这里主要是节省了tcp连接握手的成本,exchange可以理解成一个路由器,将消息推送给对应的队列queue,其实是像一个订阅的模式。

    -

    集群经验

    rabbitmqctl stop这个是关闭rabbitmq,在搭建集群时候先关闭服务,然后使用rabbitmq-server -detached静默启动,这时候使用rabbitmqctl cluster_status查看集群状态,因为还没将节点加入集群,所以只能看到类似

    -
    Cluster status of node rabbit@rabbit1 ...
    -[{nodes,[{disc,[rabbit@rabbit1,rabbit@rabbit2,rabbit@rabbit3]}]},
    - {running_nodes,[rabbit@rabbit2,rabbit@rabbit1]}]
    -...done.
    -

    然后就可以把当前节点加入集群,

    -
    rabbit2$ rabbitmqctl stop_app #这个stop_app与stop的区别是前者停的是rabbitmq应用,保留erlang节点,
    -                              #后者是停止了rabbitmq和erlang节点
    -Stopping node rabbit@rabbit2 ...done.
    -rabbit2$ rabbitmqctl join_cluster rabbit@rabbit1 #这里可以用--ram指定将当前节点作为内存节点加入集群
    -Clustering node rabbit@rabbit2 with [rabbit@rabbit1] ...done.
    -rabbit2$ rabbitmqctl start_app
    -Starting node rabbit@rabbit2 ...done.
    -

    其他可以参考官方文档

    -

    一些坑

    消息丢失

    这里碰到过一个坑,对于使用exchange来做消息路由的,会有一个情况,就是在routing_key没被订阅的时候,会将该条找不到路由对应的queue的消息丢掉What happens if we break our contract and send a message with one or four words, like "orange" or "quick.orange.male.rabbit"? Well, these messages won't match any bindings and will be lost.对应链接,而当使用空的exchange时,会保留消息,当出现消费者的时候就可以将收到之前生产者所推送的消息对应链接,这里就是用了空的exchange。

    -

    集群搭建

    集群搭建的时候有个erlang vm生成的random cookie,这个是用来做集群之间认证的,相同的cookie才能连接,但是如果通过vim打开复制后在其他几点新建文件写入会多一个换行,导致集群建立是报错,所以这里最好使用scp等传输命令直接传输cookie文件,同时要注意下cookie的文件权限。
    另外在集群搭建的时候如果更改过hostname,那么要把rabbitmq的数据库删除,否则启动后会马上挂掉

    -]]>
    - - php - - - php - mq - im - -
    - - redis 的 rdb 和 COW 介绍 - /2021/08/15/redis-%E7%9A%84-rdb-%E5%92%8C-COW-%E4%BB%8B%E7%BB%8D/ - redis 在使用 rdb 策略进行备份时,rdb 的意思是会在开启备份的时候将开启时间点的内存数据进行备份,并且可以设置时间,这样子就是这个策略其实还是不完全可靠的,如果是在这个间隔中宕机了,或者间隔过长,不过这个不在这次的要说的内容中,如果自己去写这个 rdb 的策略可能就有点类似于 mvcc 的 redolog,需要知道这个时间点之前的数据是怎么样的,防止后面更改的干扰,但是这样一方面需要有比较复杂的 mvcc 实现,另一方面是很占用存储空间,所以 redis 在这里面使用了 COW (Copy On Write) 技术,这个技术呢以前听过,也大致了解是怎么个意思,这次稍微具体地来看下,其实 redis 的 copy-on-write 就是来自于 linux 的 cow

    -

    Linux中的CopyOnWrite

    fork()之后,kernel把父进程中所有的内存页的权限都设为read-only,然后子进程的地址空间指向父进程。当父子进程都只读内存时,相安无事。当其中某个进程写内存时,CPU硬件检测到内存页是read-only的,于是触发页异常中断(page-fault),陷入kernel的一个中断例程。中断例程中,kernel就会把触发的异常的页复制一份,于是父子进程各自持有独立的一份。这个操作其实可以类比为写屏障,正常的读取是没问题的,当有写入时就会分裂。

    -

    CopyOnWrite的好处:

    1、减少分配和复制资源时带来的瞬时延迟;
    2、减少不必要的资源分配;
    CopyOnWrite的缺点:
    1、如果父子进程都需要进行大量的写操作,会产生大量的分页错误(页异常中断page-fault);

    -

    Redis中的CopyOnWrite

    Redis在持久化时,如果是采用BGSAVE命令或者BGREWRITEAOF的方式,那Redis会fork出一个子进程来读取数据,从而写到磁盘中。
    总体来看,Redis还是读操作比较多。如果子进程存在期间,发生了大量的写操作,那可能就会出现很多的分页错误(页异常中断page-fault),这样就得耗费不少性能在复制上。
    而在rehash阶段上,写操作是无法避免的。所以Redis在fork出子进程之后,将负载因子阈值提高,尽量减少写操作,避免不必要的内存写入操作,最大限度地节约内存。这里其实更巧妙了,在细节上去优化会产生大量页异常中断的情况。

    -]]>
    - - redis - - - redis - -
    - - redis数据结构介绍-第一部分 SDS,链表,字典 - /2019/12/26/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D/ - redis是现在服务端很常用的缓存中间件,其实原来还有memcache之类的竞品,但是现在貌似 redis 快一统江湖,这里当然不是在吹,只是个人角度的一个感觉,不权威只是主观感觉。
    redis 主要有五种数据结构,StringsListsSetsHashesSorted Sets,这五种数据结构先简单介绍下,Strings类型的其实就是我们最常用的 key-value,实际开发中也会用的最多;Lists是列表,这个有些会用来做队列,因为 redis 目前常用的版本支持丰富的列表操作;还有是Sets集合,这个主要的特点就是集合中元素不重复,可以用在有这类需求的场景里;Hashes是叫散列,类似于 Python 中的字典结构;还有就是Sorted Sets这个是个有序集合;一眼看这些其实没啥特别的,除了最后这个有序集合,不过去了解背后的实现方式还是比较有意思的。

    -

    SDS 简单动态字符串

    先从Strings开始说,了解过 C 语言的应该知道,C 语言中的字符串其实是个 char[] 字符数组,redis 也不例外,只是最开始的版本就对这个做了一丢丢的优化,而正是这一丢丢的优化,让这个 redis 的使用效率提升了数倍

    -
    struct sdshdr {
    -    // 字符串长度
    -    int len;
    -    // 字符串空余字符数
    -    int free;
    -    // 字符串内容
    -    char buf[];
    -};
    -

    这里引用了 redis 在 github 上最早的 2.2 版本的代码,代码路径是https://github.com/antirez/redis/blob/2.2/src/sds.h,可以看到这个结构体里只有仨元素,两个 int 型和一个 char 型数组,两个 int 型其实就是我说的优化,因为 C 语言本身的字符串数组,有两个问题,一个是要知道它实际已被占用的长度,需要去遍历这个数组,第二个就是比较容易踩坑的是遍历的时候要注意它有个以\0作为结尾的特点;通过上面的两个 int 型参数,一个是知道字符串目前的长度,一个是知道字符串还剩余多少位空间,这样子坐着两个操作从 O(N)简化到了O(1)了,还有第二个 free 还有个比较重要的作用就是能防止 C 字符串的溢出问题,在存储之前可以先判断 free 长度,如果长度不够就先扩容了,先介绍到这,这个系列可以写蛮多的,慢慢介绍吧

    -

    链表

    链表是比较常见的数据结构了,但是因为 redis 是用 C 写的,所以在不依赖第三方库的情况下只能自己写一个了,redis 的链表是个有头的链表,而且是无环的,具体的结构我也找了 github 上最早版本的代码

    -
    typedef struct listNode {
    -    // 前置节点
    -    struct listNode *prev;
    -    // 后置节点
    -    struct listNode *next;
    -    // 值
    -    void *value;
    -} listNode;
    +  protected String logPrefix;
    +  protected Class<? extends Log> logImpl;
    +  protected Class<? extends VFS> vfsImpl;
    +  protected Class<?> defaultSqlProviderType;
    +  protected LocalCacheScope localCacheScope = LocalCacheScope.SESSION;
    +  protected JdbcType jdbcTypeForNull = JdbcType.OTHER;
    +  protected Set<String> lazyLoadTriggerMethods = new HashSet<>(Arrays.asList("equals", "clone", "hashCode", "toString"));
    +  protected Integer defaultStatementTimeout;
    +  protected Integer defaultFetchSize;
    +  protected ResultSetType defaultResultSetType;
    +  protected ExecutorType defaultExecutorType = ExecutorType.SIMPLE;
    +  protected AutoMappingBehavior autoMappingBehavior = AutoMappingBehavior.PARTIAL;
    +  protected AutoMappingUnknownColumnBehavior autoMappingUnknownColumnBehavior = AutoMappingUnknownColumnBehavior.NONE;
     
    -typedef struct list {
    -    // 链表表头
    -    listNode *head;
    -    // 当前节点,也可以说是最后节点
    -    listNode *tail;
    -    // 节点复制函数
    -    void *(*dup)(void *ptr);
    -    // 节点值释放函数
    -    void (*free)(void *ptr);
    -    // 节点值比较函数
    -    int (*match)(void *ptr, void *key);
    -    // 链表包含的节点数量
    -    unsigned int len;
    -} list;
    -

    代码地址是这个https://github.com/antirez/redis/blob/2.2/src/adlist.h
    可以看下节点是由listNode承载的,包括值和一个指向前节点跟一个指向后一节点的两个指针,然后值是 void 指针类型,所以可以承载不同类型的值
    然后是 list结构用来承载一个链表,包含了表头,和表尾,复制函数,释放函数和比较函数,还有链表长度,因为包含了前两个节点,找到表尾节点跟表头都是 O(1)的时间复杂度,还有节点数量,其实这个跟 SDS 是同一个做法,就是空间换时间,这也是写代码里比较常见的做法,以此让一些高频的操作提速。

    -

    字典

    字典也是个常用的数据结构,其实只是叫法不同,数据结构中叫 hash 散列,Java 中叫 Map,PHP 中是数组 array,Python 中也叫字典 dict,因为纯 C 语言本身不带这些数据结构,所以这也是个痛并快乐着的过程,享受 C 语言的高性能的同时也要接受它只提供了语言的基本功能的现实,各种轮子都需要自己造,redis 同样实现了自己的字典
    下面来看看代码

    -
    typedef struct dictEntry {
    -    void *key;
    -    void *val;
    -    struct dictEntry *next;
    -} dictEntry;
    +  protected Properties variables = new Properties();
    +  protected ReflectorFactory reflectorFactory = new DefaultReflectorFactory();
    +  protected ObjectFactory objectFactory = new DefaultObjectFactory();
    +  protected ObjectWrapperFactory objectWrapperFactory = new DefaultObjectWrapperFactory();
     
    -typedef struct dictType {
    -    unsigned int (*hashFunction)(const void *key);
    -    void *(*keyDup)(void *privdata, const void *key);
    -    void *(*valDup)(void *privdata, const void *obj);
    -    int (*keyCompare)(void *privdata, const void *key1, const void *key2);
    -    void (*keyDestructor)(void *privdata, void *key);
    -    void (*valDestructor)(void *privdata, void *obj);
    -} dictType;
    -
    -/* This is our hash table structure. Every dictionary has two of this as we
    - * implement incremental rehashing, for the old to the new table. */
    -typedef struct dictht {
    -    dictEntry **table;
    -    unsigned long size;
    -    unsigned long sizemask;
    -    unsigned long used;
    -} dictht;
    +  protected boolean lazyLoadingEnabled = false;
    +  protected ProxyFactory proxyFactory = new JavassistProxyFactory(); // #224 Using internal Javassist instead of OGNL
     
    -typedef struct dict {
    -    dictType *type;
    -    void *privdata;
    -    dictht ht[2];
    -    int rehashidx; /* rehashing not in progress if rehashidx == -1 */
    -    int iterators; /* number of iterators currently running */
    -} dict;
    -

    看了下这个 2.2 版本的代码跟最新版的其实也差的不是很多,所以还是照旧用老代码,可以看到上面四个结构体中,其实只有三个是存储数据用的,dictType 是用来放操作函数的,那么三个存放数据的结构体分别是干嘛的,这时候感觉需要一个图来说明比较好,稍等,我去画个图~

    这个图看着应该比较清楚这些都是用来干嘛的了,dict 是我们的主体结构,它有一个指向 dictType 的指针,这里面包含了字典的操作函数,然后是一个私有数据指针,接下来是一个 dictht 的数组,包含两个dictht,这个就是用来存数据的了,然后是 rehashidx 表示重哈希的状态,当是-1 的时候表示当前没有重哈希,iterators 表示正在遍历的迭代器的数量。
    首先说说为啥需要有两个 dictht,这是因为字典 dict 这个数据结构随着数据量的增减,会需要在中途做扩容或者缩容操作,如果只有一个的话,对它进行扩容缩容时会影响正常的访问和修改操作,或者说保证正常查询,修改的正确性会比较复杂,并且因为需要高效利用空间,不能一下子申请一个非常大的空间来存很少的数据。当 dict 中 dictht 中的数据量超过 size 的时候负载就超过了 1,就需要进行扩容,这里的其实跟 Java 中的 HashMap 比较类似,超过一定的负载之后进行扩容。这里为啥 size 会超过 1 呢,可能有部分不了解这类结构的同学会比较奇怪,其实就是上图中画的,在数据结构中对于散列的冲突有几类解决方法,比如转换成链表,二次散列,找下个空槽等,这里就使用了链表法,或者说拉链法。当一个新元素通过 hashFunction 得出的 key 跟 sizemask 取模之后的值相同了,那就将其放在原来的节点之前,变成链表挂在数组 dictht.table下面,放在原有节点前是考虑到可能会优先访问。
    忘了说明下 dictht 跟 dictEntry 的关系了,dictht 就是个哈希表,它里面是个dictEntry 的二维数组,而 dictEntry 是个包含了 key-value 结构之外还有一个 next 指针,因此可以将哈希冲突的以链表的形式保存下来。
    在重点说下重哈希,可能同样写 Java 的同学对这个比较有感觉,跟 HashMap 一样,会以 2 的 N 次方进行扩容,那么扩容的方法就会比较简单,每个键重哈希要不就在原来这个槽,要不就在原来的槽加原 dictht.size 的位置;然后是重头戏,具体是怎么做扩容呢,其实这里就把第二个 ht 用上了,其实这两个hashtable 的具体作用有点类似于 jvm 中的两个 survival 区,但是又不全一样,因为 redis 在扩容的时候是采用的渐进式地重哈希,什么叫渐进式的呢,就是它不是像 jvm 那种标记复制的模式直接将一个 eden 区和原来的 survival 区存活的对象复制到另一个 survival 区,而是在每一次添加,删除,查找或者更新操作时,都会额外的帮忙搬运一部分的原 dictht 中的数据,这里会根据 rehashidx 的值来判断,如果是-1 表示并没有在重哈希中,如果是 0 表示开始重哈希了,然后rehashidx 还会随着每次的帮忙搬运往上加,但全部被搬运完成后 rehashidx 又变回了-1,又可以扯到Java 中的 Concurrent HashMap, 他在扩容的时候也使用了类似的操作。

    -]]>
    - - Redis - 数据结构 - 源码 - C - Redis - - - redis - 数据结构 - 源码 - -
    - - redis数据结构介绍二-第二部分 跳表 - /2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ - 跳表 skiplist

    跳表是个在我们日常的代码中不太常用到的数据结构,相对来讲就没有像数组,链表,字典,散列,树等结构那么熟悉,所以就从头开始分析下,首先是链表,跳表跟链表都有个表字(太硬扯了我🤦‍♀️),注意这是个有序链表

    如上图,在这个链表里如果我要找到 23,是不是我需要从3,5,9开始一直往后找直到找到 23,也就是说时间复杂度是 O(N),N 的一次幂复杂度,那么我们来看看第二个

    这个结构跟原先有点不一样,它给链表中偶数位的节点又加了一个指针把它们链接起来,这样子当我们要寻找 23 的时候就可以从原来的一个个往下找变成跳着找,先找到 5,然后是 10,接着是 19,然后是 28,这时候发现 28 比 23 大了,那我在退回到 19,然后从下一层原来的链表往前找,

    这里毛估估是不是前面的节点我就少找了一半,有那么点二分法的意思。
    前面的其实是跳表的引子,真正的跳表其实不是这样,因为上面的其实有个比较大的问题,就是插入一个元素后需要调整每个元素的指针,在 redis 中的跳表其实是做了个随机层数的优化,因为沿着前面的例子,其实当数据量很大的时候,是不是层数越多,其查询效率越高,但是随着层数变多,要保持这种严格的层数规则其实也会增大处理复杂度,所以 redis 插入每个元素的时候都是使用随机的方式,看一眼代码

    -
    /* ZSETs use a specialized version of Skiplists */
    -typedef struct zskiplistNode {
    -    sds ele;
    -    double score;
    -    struct zskiplistNode *backward;
    -    struct zskiplistLevel {
    -        struct zskiplistNode *forward;
    -        unsigned long span;
    -    } level[];
    -} zskiplistNode;
    +  protected String databaseId;
    +  /**
    +   * Configuration factory class.
    +   * Used to create Configuration for loading deserialized unread properties.
    +   *
    +   * @see <a href='https://github.com/mybatis/old-google-code-issues/issues/300'>Issue 300 (google code)</a>
    +   */
    +  protected Class<?> configurationFactory;
     
    -typedef struct zskiplist {
    -    struct zskiplistNode *header, *tail;
    -    unsigned long length;
    -    int level;
    -} zskiplist;
    +  protected final MapperRegistry mapperRegistry = new MapperRegistry(this);
    +  protected final InterceptorChain interceptorChain = new InterceptorChain();
    +  protected final TypeHandlerRegistry typeHandlerRegistry = new TypeHandlerRegistry(this);
    +  protected final TypeAliasRegistry typeAliasRegistry = new TypeAliasRegistry();
    +  protected final LanguageDriverRegistry languageRegistry = new LanguageDriverRegistry();
     
    -typedef struct zset {
    -    dict *dict;
    -    zskiplist *zsl;
    -} zset;
    -

    忘了说了,redis 是把 skiplist 跳表用在 zset 里,zset 是个有序的集合,可以看到 zskiplist 就是个跳表的结构,里面用 header 保存跳表的表头,tail 保存表尾,还有长度和最大层级,具体的跳表节点元素使用 zskiplistNode 表示,里面包含了 sds 类型的元素值,double 类型的分值,用来排序,一个 backward 后向指针和一个 zskiplistLevel 数组,每个 level 包含了一个前向指针,和一个 span,span 表示的是跳表前向指针的跨度,这里再补充一点,前面说了为了灵活这个跳表的新增修改,redis 使用了随机层高的方式插入新节点,但是如果所有节点都随机到很高的层级或者所有都很低的话,跳表的效率优势就会减小,所以 redis 使用了个小技巧,贴下代码

    -
    #define ZSKIPLIST_P 0.25      /* Skiplist P = 1/4 */
    -int zslRandomLevel(void) {
    -    int level = 1;
    -    while ((random()&0xFFFF) < (ZSKIPLIST_P * 0xFFFF))
    -        level += 1;
    -    return (level<ZSKIPLIST_MAXLEVEL) ? level : ZSKIPLIST_MAXLEVEL;
    -}
    -

    当随机值跟0xFFFF进行与操作小于ZSKIPLIST_P * 0xFFFF时才会增大 level 的值,因此保持了一个相对递减的概率
    可以简单分析下,当 random() 的值小于 0xFFFF 的 1/4,才会 level + 1,就意味着当有 1 - 1/4也就是3/4的概率是直接跳出,所以一层的概率是3/4,也就是 1-P,二层的概率是 P*(1-P),三层的概率是 P² * (1-P) 依次递推。

    -]]>
    - - Redis - 数据结构 - 源码 - C - Redis - - - redis - 数据结构 - 源码 - -
    - - redis数据结构介绍三-第三部分 整数集合 - /2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/ - redis中对于 set 其实有两种处理,对于元素均为整型,并且元素数目较少时,使用 intset 作为底层数据结构,否则使用 dict 作为底层数据结构,先看一下代码先

    -
    typedef struct intset {
    -    // 编码方式
    -    uint32_t encoding;
    -    // 集合包含的元素数量
    -    uint32_t length;
    -    // 保存元素的数组
    -    int8_t contents[];
    -} intset;
    +  protected final Map<String, MappedStatement> mappedStatements = new StrictMap<MappedStatement>("Mapped Statements collection")
    +      .conflictMessageProducer((savedValue, targetValue) ->
    +          ". please check " + savedValue.getResource() + " and " + targetValue.getResource());
    +  protected final Map<String, Cache> caches = new StrictMap<>("Caches collection");
    +  protected final Map<String, ResultMap> resultMaps = new StrictMap<>("Result Maps collection");
    +  protected final Map<String, ParameterMap> parameterMaps = new StrictMap<>("Parameter Maps collection");
    +  protected final Map<String, KeyGenerator> keyGenerators = new StrictMap<>("Key Generators collection");
     
    -/* Note that these encodings are ordered, so:
    - * INTSET_ENC_INT16 < INTSET_ENC_INT32 < INTSET_ENC_INT64. */
    -#define INTSET_ENC_INT16 (sizeof(int16_t))
    -#define INTSET_ENC_INT32 (sizeof(int32_t))
    -#define INTSET_ENC_INT64 (sizeof(int64_t))
    -

    一眼看,为啥整型还需要编码,然后 int8_t 怎么能存下大整形呢,带着这些疑问,我们一步步分析下去,这里的编码其实指的是这个整型集合里存的究竟是多大的整型,16 位,还是 32 位,还是 64 位,结构体下面的宏定义就是表示了 encoding 的可能取值,INTSET_ENC_INT16 表示每个元素用2个字节存储,INTSET_ENC_INT32 表示每个元素用4个字节存储,INTSET_ENC_INT64 表示每个元素用8个字节存储。因此,intset中存储的整数最多只能占用64bit。length 就是正常的表示集合中元素的数量。最奇怪的应该就是这个 contents 了,是个 int8_t 的数组,那放毛线数据啊,最小的都有 16 位,这里我在看代码和《redis 设计与实现》的时候也有点懵逼,后来查了下发现这是个比较取巧的用法,这里我用自己的理解表述一下,先看看 8,16,32,64 的关系,一眼看就知道都是 2 的 N 次,并且呈两倍关系,而且 8 位刚好一个字节,所以呢其实这里的contents 不是个常规意义上的 int8_t 类型的数组,而是个柔性数组。看下 wiki 的定义

    -
    -

    Flexible array members1 were introduced in the C99 standard of the C programming language (in particular, in section §6.7.2.1, item 16, page 103).2 It is a member of a struct, which is an array without a given dimension. It must be the last member of such a struct and it must be accompanied by at least one other member, as in the following example:

    -
    -
    struct vectord {
    -    size_t len;
    -    double arr[]; // the flexible array member must be last
    -};
    -

    在初始化这个 intset 的时候,这个contents数组是不占用空间的,后面的反正用到了申请,那么这里就有一个问题,给出了三种可能的 encoding 值,他们能随便换吗,显然不行,首先在 intset 中数据的存放是有序的,这个有部分原因是方便二分查找,然后存放数据其实随着数据的大小不同会有一个升级的过程,看下图

    新创建的intset只有一个header,总共8个字节。其中encoding = 2, length = 0, 类型都是uint32_t,各占 4 字节,添加15, 5两个元素之后,因为它们是比较小的整数,都能使用2个字节表示,所以encoding不变,值还是2,也就是默认的 INTSET_ENC_INT16,当添加32768的时候,它不再能用2个字节来表示了(2个字节能表达的数据范围是-215~215-1,而32768等于215,超出范围了),因此encoding必须升级到INTSET_ENC_INT32(值为4),即用4个字节表示一个元素。在添加每个元素的过程中,intset始终保持从小到大有序。与ziplist类似,intset也是按小端(little endian)模式存储的(参见维基百科词条Endianness)。比如,在上图中intset添加完所有数据之后,表示encoding字段的4个字节应该解释成0x00000004,而第4个数据应该解释成0x00008000 = 32768

    -]]>
    - - Redis - 数据结构 - 源码 - C - Redis - - - redis - 数据结构 - 源码 - -
    - - redis数据结构介绍五-第五部分 对象 - /2020/01/20/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%94/ - 前面说了这么些数据结构,其实大家对于 redis 最初的印象应该就是个 key-value 的缓存,类似于 memcache,redis 其实也是个 key-value,key 还是一样的字符串,或者说就是用 redis 自己的动态字符串实现,但是 value 其实就是前面说的那些数据结构,差不多快说完了,还有个 quicklist 后面还有一篇,这里先介绍下 redis 对于这些不同类型的 value 是怎么实现的,首先看下 redisObject 的源码头文件

    -
    /* The actual Redis Object */
    -#define OBJ_STRING 0    /* String object. */
    -#define OBJ_LIST 1      /* List object. */
    -#define OBJ_SET 2       /* Set object. */
    -#define OBJ_ZSET 3      /* Sorted set object. */
    -#define OBJ_HASH 4      /* Hash object. */
    -/*
    - * Objects encoding. Some kind of objects like Strings and Hashes can be
    - * internally represented in multiple ways. The 'encoding' field of the object
    - * is set to one of this fields for this object. */
    -#define OBJ_ENCODING_RAW 0     /* Raw representation */
    -#define OBJ_ENCODING_INT 1     /* Encoded as integer */
    -#define OBJ_ENCODING_HT 2      /* Encoded as hash table */
    -#define OBJ_ENCODING_ZIPMAP 3  /* Encoded as zipmap */
    -#define OBJ_ENCODING_LINKEDLIST 4 /* No longer used: old list encoding. */
    -#define OBJ_ENCODING_ZIPLIST 5 /* Encoded as ziplist */
    -#define OBJ_ENCODING_INTSET 6  /* Encoded as intset */
    -#define OBJ_ENCODING_SKIPLIST 7  /* Encoded as skiplist */
    -#define OBJ_ENCODING_EMBSTR 8  /* Embedded sds string encoding */
    -#define OBJ_ENCODING_QUICKLIST 9 /* Encoded as linked list of ziplists */
    -#define OBJ_ENCODING_STREAM 10 /* Encoded as a radix tree of listpacks */
    +  protected final Set<String> loadedResources = new HashSet<>();
    +  protected final Map<String, XNode> sqlFragments = new StrictMap<>("XML fragments parsed from previous mappers");
     
    -#define LRU_BITS 24
    -#define LRU_CLOCK_MAX ((1<<LRU_BITS)-1) /* Max value of obj->lru */
    -#define LRU_CLOCK_RESOLUTION 1000 /* LRU clock resolution in ms */
    +  protected final Collection<XMLStatementBuilder> incompleteStatements = new LinkedList<>();
    +  protected final Collection<CacheRefResolver> incompleteCacheRefs = new LinkedList<>();
    +  protected final Collection<ResultMapResolver> incompleteResultMaps = new LinkedList<>();
    +  protected final Collection<MethodResolver> incompleteMethods = new LinkedList<>();
    -#define OBJ_SHARED_REFCOUNT INT_MAX -typedef struct redisObject { - unsigned type:4; - unsigned encoding:4; - unsigned lru:LRU_BITS; /* LRU time (relative to global lru_clock) or - * LFU data (least significant 8 bits frequency - * and most significant 16 bits access time). */ - int refcount; - void *ptr; -} robj;
    -

    主体结构就是这个 redisObject,

    -
      -
    • type: 字段表示对象的类型,它对应的就是 redis 的对外暴露的,或者说用户可以使用的五种类型,OBJ_STRING, OBJ_LIST, OBJ_SET, OBJ_ZSET, OBJ_HASH
    • -
    • encoding: 字段表示这个对象在 redis 内部的编码方式,由OBJ_ENCODING_开头的 11 种
    • -
    • lru: 做LRU替换算法用,占24个bit
    • -
    • refcount: 引用计数。它允许robj对象在某些情况下被共享。
    • -
    • ptr: 指向底层实现数据结构的指针
      当 type 是 OBJ_STRING 时,表示类型是个 string,它的编码方式 encoding 可能有 OBJ_ENCODING_RAW,OBJ_ENCODING_INT,OBJ_ENCODING_EMBSTR 三种
      当 type 是 OBJ_LIST 时,表示类型是 list,它的编码方式 encoding 是 OBJ_ENCODING_QUICKLIST,对于早一些的版本,2.2这种可能还会使用 OBJ_ENCODING_ZIPLIST,OBJ_ENCODING_LINKEDLIST
      当 type 是 OBJ_SET 时,是个集合,但是得看具体元素的类型,有可能使用整数集合,OBJ_ENCODING_INTSET, 如果元素不全是整型或者数量超过一定限制,那么编码就是 OBJ_ENCODING_HT hash table 了
      当 type 是 OBJ_ZSET 时,是个有序集合,它底层有可能使用的是 OBJ_ENCODING_ZIPLIST 或者 OBJ_ENCODING_SKIPLIST
      当 type 是 OBJ_HASH 时,一开始也是 OBJ_ENCODING_ZIPLIST,然后当数据量大于 hash_max_ziplist_entries 时会转成 OBJ_ENCODING_HT
    • -
    -]]>
    - - Redis - 数据结构 - 源码 - C - Redis - - - redis - 数据结构 - 源码 - -
    - - redis数据结构介绍六 快表 - /2020/01/22/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E5%85%AD/ - 这应该是 redis 系列的最后一篇了,讲下快表,其实最前面讲的链表在早先的 redis 版本中也作为 list 的数据结构使用过,但是单纯的链表的缺陷之前也说了,插入便利,但是空间利用率低,并且不能进行二分查找等,检索效率低,ziplist 压缩表的产生也是同理,希望获得更好的性能,包括存储空间和访问性能等,原来我也不懂这个快表要怎么快,然后明白了一个道理,其实并没有什么银弹,只是大牛们会在适合的时候使用最适合的数据结构来实现性能的最大化,这里面有一招就是不同数据结构的组合调整,比如 Java 中的 HashMap,在链表节点数大于 8 时会转变成红黑树,以此提高访问效率,不费话了,回到快表,quicklist,这个数据结构主要使用在 list 类型中,如果我说其实这个 quicklist 就是个链表,可能大家不太会相信,但是事实上的确可以认为 quicklist 是个双向链表,看下代码

    -
    /* quicklistNode is a 32 byte struct describing a ziplist for a quicklist.
    - * We use bit fields keep the quicklistNode at 32 bytes.
    - * count: 16 bits, max 65536 (max zl bytes is 65k, so max count actually < 32k).
    - * encoding: 2 bits, RAW=1, LZF=2.
    - * container: 2 bits, NONE=1, ZIPLIST=2.
    - * recompress: 1 bit, bool, true if node is temporarry decompressed for usage.
    - * attempted_compress: 1 bit, boolean, used for verifying during testing.
    - * extra: 10 bits, free for future use; pads out the remainder of 32 bits */
    -typedef struct quicklistNode {
    -    struct quicklistNode *prev;
    -    struct quicklistNode *next;
    -    unsigned char *zl;
    -    unsigned int sz;             /* ziplist size in bytes */
    -    unsigned int count : 16;     /* count of items in ziplist */
    -    unsigned int encoding : 2;   /* RAW==1 or LZF==2 */
    -    unsigned int container : 2;  /* NONE==1 or ZIPLIST==2 */
    -    unsigned int recompress : 1; /* was this node previous compressed? */
    -    unsigned int attempted_compress : 1; /* node can't compress; too small */
    -    unsigned int extra : 10; /* more bits to steal for future usage */
    -} quicklistNode;
    +

    这么多成员变量,先不一一解释作用,但是其中的几个参数我们应该是已经知道了的,第一个就是 mappedStatements ,上一篇我们知道被解析的mapper就是放在这里,后面的 resultMapsparameterMaps 也比较常用的就是我们参数和结果的映射map,这里跟我之前有一篇解释为啥我们一些变量的使用会比较特殊,比如list,可以参考这篇keyGenerators是在我们需要定义主键生成器的时候使用。
    然后第二点是我们创建的 org.apache.ibatis.session.SqlSessionFactory 是哪个,

    +
    public SqlSessionFactory build(Configuration config) {
    +  return new DefaultSqlSessionFactory(config);
    +}
    -/* quicklistLZF is a 4+N byte struct holding 'sz' followed by 'compressed'. - * 'sz' is byte length of 'compressed' field. - * 'compressed' is LZF data with total (compressed) length 'sz' - * NOTE: uncompressed length is stored in quicklistNode->sz. - * When quicklistNode->zl is compressed, node->zl points to a quicklistLZF */ -typedef struct quicklistLZF { - unsigned int sz; /* LZF size in bytes*/ - char compressed[]; -} quicklistLZF; +

    是这个 DefaultSqlSessionFactory ,这是其中一个 SqlSessionFactory 的实现
    接下来我们看看 openSession 里干了啥

    +
    public SqlSession openSession() {
    +  return openSessionFromDataSource(configuration.getDefaultExecutorType(), null, false);
    +}
    -/* quicklist is a 40 byte struct (on 64-bit systems) describing a quicklist. - * 'count' is the number of total entries. - * 'len' is the number of quicklist nodes. - * 'compress' is: -1 if compression disabled, otherwise it's the number - * of quicklistNodes to leave uncompressed at ends of quicklist. - * 'fill' is the user-requested (or default) fill factor. */ -typedef struct quicklist { - quicklistNode *head; - quicklistNode *tail; - unsigned long count; /* total count of all entries in all ziplists */ - unsigned long len; /* number of quicklistNodes */ - int fill : 16; /* fill factor for individual nodes */ - unsigned int compress : 16; /* depth of end nodes not to compress;0=off */ -} quicklist;
    -

    粗略看下,quicklist 里有 head,tail, quicklistNode里有 prev,next 指针,是不是有链表的基本轮廓了,那么为啥这玩意要称为快表呢,快在哪,关键就在这个unsigned char *zl;zl 是不是前面又看到过,就是 ziplist ,这是什么鬼,链表里用压缩表,这不套娃么,先别急,回顾下前面说的 ziplist,ziplist 有哪些特点,内存利用率高,可以从表头快速定位到尾节点,节点可以从后往前找,但是有个缺点,就是从中间插入的效率比较低,需要整体往后移,这个其实是普通数组的优化版,但还是有数组的一些劣势,所以要真的快,是不是可以将链表跟数组真的结合起来。

    -

    ziplist

    这里有两个 redis 的配置参数,list-max-ziplist-sizelist-compress-depth,先来说第一个,既然快表是将链表跟压缩表数组结合起来使用,那么具体怎么用呢,比如我有一个 10 个元素的 list,那具体怎么放,每个 quicklistNode 里放多大的 ziplist,假如每个快表节点的 ziplist 只放一个元素,那么其实这就退化成了一个链表,如果 10 个元素放在一个 quicklistNode 的 ziplist 里,那就退化成了一个 ziplist,所以有了这个 list-max-ziplist-size,而且它还比较牛,能取正负值,当是正值时,对应的就是每个 quicklistNode 的 ziplist 中的元素个数,比如配置了 list-max-ziplist-size = 5,那么我刚才的 10 个元素的 list 就是一个两个 quicklistNode 组成的快表,每个 quicklistNode 中的 ziplist 包含了五个元素,当 list-max-ziplist-size取负值的时候,它限制了 ziplist 的字节数

    -
    size_t offset = (-fill) - 1;
    -if (offset < (sizeof(optimization_level) / sizeof(*optimization_level))) {
    -    if (sz <= optimization_level[offset]) {
    -        return 1;
    -    } else {
    -        return 0;
    -    }
    -} else {
    -    return 0;
    -}
    +

    这边有几个参数,第一个是默认的执行器类型,往上找找上面贴着的 Configuration 的成员变量里可以看到默认是
    protected ExecutorType defaultExecutorType = ExecutorType.SIMPLE;

    +

    因为没有指明特殊的执行逻辑,所以默认我们也就用简单类型的,第二个参数是是事务级别,第三个是是否自动提交

    +
    private SqlSession openSessionFromDataSource(ExecutorType execType, TransactionIsolationLevel level, boolean autoCommit) {
    +  Transaction tx = null;
    +  try {
    +    final Environment environment = configuration.getEnvironment();
    +    final TransactionFactory transactionFactory = getTransactionFactoryFromEnvironment(environment);
    +    tx = transactionFactory.newTransaction(environment.getDataSource(), level, autoCommit);
    +    // --------> 先关注这里
    +    final Executor executor = configuration.newExecutor(tx, execType);
    +    return new DefaultSqlSession(configuration, executor, autoCommit);
    +  } catch (Exception e) {
    +    closeTransaction(tx); // may have fetched a connection so lets call close()
    +    throw ExceptionFactory.wrapException("Error opening session.  Cause: " + e, e);
    +  } finally {
    +    ErrorContext.instance().reset();
    +  }
    +}
    -/* Optimization levels for size-based filling */ -static const size_t optimization_level[] = {4096, 8192, 16384, 32768, 65536}; +

    具体是调用了 Configuration 的这个方法

    +
    public Executor newExecutor(Transaction transaction, ExecutorType executorType) {
    +  executorType = executorType == null ? defaultExecutorType : executorType;
    +  Executor executor;
    +  if (ExecutorType.BATCH == executorType) {
    +    executor = new BatchExecutor(this, transaction);
    +  } else if (ExecutorType.REUSE == executorType) {
    +    executor = new ReuseExecutor(this, transaction);
    +  } else {
    +    // ---------> 会走到这个分支
    +    executor = new SimpleExecutor(this, transaction);
    +  }
    +  if (cacheEnabled) {
    +    executor = new CachingExecutor(executor);
    +  }
    +  executor = (Executor) interceptorChain.pluginAll(executor);
    +  return executor;
    +}
    -/* Create a new quicklist. - * Free with quicklistRelease(). */ -quicklist *quicklistCreate(void) { - struct quicklist *quicklist; +

    上面传入的 executorTypeConfiguration 的默认类型,也就是 simple 类型,并且 cacheEnabledConfiguration 默认为 true,所以会包装成CachingExecutor ,然后后面就是插件了,这块我们先不展开
    然后我们的openSession返回的就是创建了DefaultSqlSession

    +
    public DefaultSqlSession(Configuration configuration, Executor executor, boolean autoCommit) {
    +    this.configuration = configuration;
    +    this.executor = executor;
    +    this.dirty = false;
    +    this.autoCommit = autoCommit;
    +  }
    - quicklist = zmalloc(sizeof(*quicklist)); - quicklist->head = quicklist->tail = NULL; - quicklist->len = 0; - quicklist->count = 0; - quicklist->compress = 0; - quicklist->fill = -2; - return quicklist; -}
    -

    这个 fill 就是传进来的 list-max-ziplist-size, 具体对应的就是

    -
      -
    • -5: 每个quicklist节点上的ziplist大小不能超过64 Kb。(注:1kb => 1024 bytes)
    • -
    • -4: 每个quicklist节点上的ziplist大小不能超过32 Kb。
    • -
    • -3: 每个quicklist节点上的ziplist大小不能超过16 Kb。
    • -
    • -2: 每个quicklist节点上的ziplist大小不能超过8 Kb。(-2是Redis给出的默认值)也就是上面的 quicklist->fill = -2;
    • -
    • -1: 每个quicklist节点上的ziplist大小不能超过4 Kb。
    • -
    -

    压缩

    list-compress-depth这个参数呢是用来配置压缩的,等等压缩是为啥,不是里面已经是压缩表了么,大牛们就是为了性能殚精竭虑,这里考虑到的是一个场景,一般状况下,list 都是两端的访问频率比较高,那么是不是可以对中间的数据进行压缩,那么这个参数就是用来表示

    -
    /* depth of end nodes not to compress;0=off */
    -
      -
    • 0,代表不压缩,默认值
    • -
    • 1,两端各一个节点不压缩
    • -
    • 2,两端各两个节点不压缩
    • -
    • … 依次类推
      压缩后的 ziplist 就会变成 quicklistLZF,然后替换 zl 指针,这里使用的是 LZF 压缩算法,压缩后的 quicklistLZF 中的 compressed 也是个柔性数组,压缩后的 ziplist 整个就放进这个柔性数组
    • -
    -

    插入过程

    简单说下插入元素的过程

    -
    /* Wrapper to allow argument-based switching between HEAD/TAIL pop */
    -void quicklistPush(quicklist *quicklist, void *value, const size_t sz,
    -                   int where) {
    -    if (where == QUICKLIST_HEAD) {
    -        quicklistPushHead(quicklist, value, sz);
    -    } else if (where == QUICKLIST_TAIL) {
    -        quicklistPushTail(quicklist, value, sz);
    -    }
    -}
    +

    然后就是调用 selectOne, 因为前面已经把这部分代码说过了,就直接跳转过来
    org.apache.ibatis.session.defaults.DefaultSqlSession#selectList(java.lang.String, java.lang.Object, org.apache.ibatis.session.RowBounds, org.apache.ibatis.session.ResultHandler)

    +
    private <E> List<E> selectList(String statement, Object parameter, RowBounds rowBounds, ResultHandler handler) {
    +  try {
    +    MappedStatement ms = configuration.getMappedStatement(statement);
    +    return executor.query(ms, wrapCollection(parameter), rowBounds, handler);
    +  } catch (Exception e) {
    +    throw ExceptionFactory.wrapException("Error querying database.  Cause: " + e, e);
    +  } finally {
    +    ErrorContext.instance().reset();
    +  }
    +}
    -/* Add new entry to head node of quicklist. - * - * Returns 0 if used existing head. - * Returns 1 if new head created. */ -int quicklistPushHead(quicklist *quicklist, void *value, size_t sz) { - quicklistNode *orig_head = quicklist->head; - if (likely( - _quicklistNodeAllowInsert(quicklist->head, quicklist->fill, sz))) { - quicklist->head->zl = - ziplistPush(quicklist->head->zl, value, sz, ZIPLIST_HEAD); - quicklistNodeUpdateSz(quicklist->head); - } else { - quicklistNode *node = quicklistCreateNode(); - node->zl = ziplistPush(ziplistNew(), value, sz, ZIPLIST_HEAD); +

    因为前面说了 executor 包装了 CachingExecutor ,所以会先调用

    +
    @Override
    +public <E> List<E> query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler) throws SQLException {
    +  BoundSql boundSql = ms.getBoundSql(parameterObject);
    +  CacheKey key = createCacheKey(ms, parameterObject, rowBounds, boundSql);
    +  return query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    +}
    - quicklistNodeUpdateSz(node); - _quicklistInsertNodeBefore(quicklist, quicklist->head, node); - } - quicklist->count++; - quicklist->head->count++; - return (orig_head != quicklist->head); -} +

    然后是调用的真实的query方法

    +
    @Override
    +public <E> List<E> query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql)
    +    throws SQLException {
    +  Cache cache = ms.getCache();
    +  if (cache != null) {
    +    flushCacheIfRequired(ms);
    +    if (ms.isUseCache() && resultHandler == null) {
    +      ensureNoOutParams(ms, boundSql);
    +      @SuppressWarnings("unchecked")
    +      List<E> list = (List<E>) tcm.getObject(cache, key);
    +      if (list == null) {
    +        list = delegate.query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    +        tcm.putObject(cache, key, list); // issue #578 and #116
    +      }
    +      return list;
    +    }
    +  }
    +  return delegate.query(ms, parameterObject, rowBounds, resultHandler, key, boundSql);
    +}
    -/* Add new entry to tail node of quicklist. - * - * Returns 0 if used existing tail. - * Returns 1 if new tail created. */ -int quicklistPushTail(quicklist *quicklist, void *value, size_t sz) { - quicklistNode *orig_tail = quicklist->tail; - if (likely( - _quicklistNodeAllowInsert(quicklist->tail, quicklist->fill, sz))) { - quicklist->tail->zl = - ziplistPush(quicklist->tail->zl, value, sz, ZIPLIST_TAIL); - quicklistNodeUpdateSz(quicklist->tail); - } else { - quicklistNode *node = quicklistCreateNode(); - node->zl = ziplistPush(ziplistNew(), value, sz, ZIPLIST_TAIL); +

    这里是第一次查询,没有缓存就先到最后一行,继续是调用到 org.apache.ibatis.executor.BaseExecutor#queryFromDatabase

    +
    @Override
    +  public <E> List<E> query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql) throws SQLException {
    +    ErrorContext.instance().resource(ms.getResource()).activity("executing a query").object(ms.getId());
    +    if (closed) {
    +      throw new ExecutorException("Executor was closed.");
    +    }
    +    if (queryStack == 0 && ms.isFlushCacheRequired()) {
    +      clearLocalCache();
    +    }
    +    List<E> list;
    +    try {
    +      queryStack++;
    +      list = resultHandler == null ? (List<E>) localCache.getObject(key) : null;
    +      if (list != null) {
    +        handleLocallyCachedOutputParameters(ms, key, parameter, boundSql);
    +      } else {
    +        // ----------->会走到这里
    +        list = queryFromDatabase(ms, parameter, rowBounds, resultHandler, key, boundSql);
    +      }
    +    } finally {
    +      queryStack--;
    +    }
    +    if (queryStack == 0) {
    +      for (DeferredLoad deferredLoad : deferredLoads) {
    +        deferredLoad.load();
    +      }
    +      // issue #601
    +      deferredLoads.clear();
    +      if (configuration.getLocalCacheScope() == LocalCacheScope.STATEMENT) {
    +        // issue #482
    +        clearLocalCache();
    +      }
    +    }
    +    return list;
    +  }
    - quicklistNodeUpdateSz(node); - _quicklistInsertNodeAfter(quicklist, quicklist->tail, node); - } - quicklist->count++; - quicklist->tail->count++; - return (orig_tail != quicklist->tail); -} +

    然后是

    +
    private <E> List<E> queryFromDatabase(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql) throws SQLException {
    +  List<E> list;
    +  localCache.putObject(key, EXECUTION_PLACEHOLDER);
    +  try {
    +    list = doQuery(ms, parameter, rowBounds, resultHandler, boundSql);
    +  } finally {
    +    localCache.removeObject(key);
    +  }
    +  localCache.putObject(key, list);
    +  if (ms.getStatementType() == StatementType.CALLABLE) {
    +    localOutputParameterCache.putObject(key, parameter);
    +  }
    +  return list;
    +}
    -/* Wrappers for node inserting around existing node. */ -REDIS_STATIC void _quicklistInsertNodeBefore(quicklist *quicklist, - quicklistNode *old_node, - quicklistNode *new_node) { - __quicklistInsertNode(quicklist, old_node, new_node, 0); -} +

    然后就是 simpleExecutor 的执行过程

    +
    @Override
    +public <E> List<E> doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) throws SQLException {
    +  Statement stmt = null;
    +  try {
    +    Configuration configuration = ms.getConfiguration();
    +    StatementHandler handler = configuration.newStatementHandler(wrapper, ms, parameter, rowBounds, resultHandler, boundSql);
    +    stmt = prepareStatement(handler, ms.getStatementLog());
    +    return handler.query(stmt, resultHandler);
    +  } finally {
    +    closeStatement(stmt);
    +  }
    +}
    -REDIS_STATIC void _quicklistInsertNodeAfter(quicklist *quicklist, - quicklistNode *old_node, - quicklistNode *new_node) { - __quicklistInsertNode(quicklist, old_node, new_node, 1); -} +

    接下去其实就是跟jdbc交互了

    +
    @Override
    +public <E> List<E> query(Statement statement, ResultHandler resultHandler) throws SQLException {
    +  PreparedStatement ps = (PreparedStatement) statement;
    +  ps.execute();
    +  return resultSetHandler.handleResultSets(ps);
    +}
    -/* Insert 'new_node' after 'old_node' if 'after' is 1. - * Insert 'new_node' before 'old_node' if 'after' is 0. - * Note: 'new_node' is *always* uncompressed, so if we assign it to - * head or tail, we do not need to uncompress it. */ -REDIS_STATIC void __quicklistInsertNode(quicklist *quicklist, - quicklistNode *old_node, - quicklistNode *new_node, int after) { - if (after) { - new_node->prev = old_node; - if (old_node) { - new_node->next = old_node->next; - if (old_node->next) - old_node->next->prev = new_node; - old_node->next = new_node; - } - if (quicklist->tail == old_node) - quicklist->tail = new_node; - } else { - new_node->next = old_node; - if (old_node) { - new_node->prev = old_node->prev; - if (old_node->prev) - old_node->prev->next = new_node; - old_node->prev = new_node; - } - if (quicklist->head == old_node) - quicklist->head = new_node; - } - /* If this insert creates the only element so far, initialize head/tail. */ - if (quicklist->len == 0) { - quicklist->head = quicklist->tail = new_node; - } +

    com.mysql.cj.jdbc.ClientPreparedStatement#execute

    +
    public boolean execute() throws SQLException {
    +        try {
    +            synchronized(this.checkClosed().getConnectionMutex()) {
    +                JdbcConnection locallyScopedConn = this.connection;
    +                if (!this.doPingInstead && !this.checkReadOnlySafeStatement()) {
    +                    throw SQLError.createSQLException(Messages.getString("PreparedStatement.20") + Messages.getString("PreparedStatement.21"), "S1009", this.exceptionInterceptor);
    +                } else {
    +                    ResultSetInternalMethods rs = null;
    +                    this.lastQueryIsOnDupKeyUpdate = false;
    +                    if (this.retrieveGeneratedKeys) {
    +                        this.lastQueryIsOnDupKeyUpdate = this.containsOnDuplicateKeyUpdate();
    +                    }
     
    -    if (old_node)
    -        quicklistCompress(quicklist, old_node);
    +                    this.batchedGeneratedKeys = null;
    +                    this.resetCancelledState();
    +                    this.implicitlyCloseAllOpenResults();
    +                    this.clearWarnings();
    +                    if (this.doPingInstead) {
    +                        this.doPingInstead();
    +                        return true;
    +                    } else {
    +                        this.setupStreamingTimeout(locallyScopedConn);
    +                        Message sendPacket = ((PreparedQuery)this.query).fillSendPacket(((PreparedQuery)this.query).getQueryBindings());
    +                        String oldDb = null;
    +                        if (!locallyScopedConn.getDatabase().equals(this.getCurrentDatabase())) {
    +                            oldDb = locallyScopedConn.getDatabase();
    +                            locallyScopedConn.setDatabase(this.getCurrentDatabase());
    +                        }
    +
    +                        CachedResultSetMetaData cachedMetadata = null;
    +                        boolean cacheResultSetMetadata = (Boolean)locallyScopedConn.getPropertySet().getBooleanProperty(PropertyKey.cacheResultSetMetadata).getValue();
    +                        if (cacheResultSetMetadata) {
    +                            cachedMetadata = locallyScopedConn.getCachedMetaData(((PreparedQuery)this.query).getOriginalSql());
    +                        }
    +
    +                        locallyScopedConn.setSessionMaxRows(this.getQueryInfo().getFirstStmtChar() == 'S' ? this.maxRows : -1);
    +                        rs = this.executeInternal(this.maxRows, sendPacket, this.createStreamingResultSet(), this.getQueryInfo().getFirstStmtChar() == 'S', cachedMetadata, false);
    +                        if (cachedMetadata != null) {
    +                            locallyScopedConn.initializeResultsMetadataFromCache(((PreparedQuery)this.query).getOriginalSql(), cachedMetadata, rs);
    +                        } else if (rs.hasRows() && cacheResultSetMetadata) {
    +                            locallyScopedConn.initializeResultsMetadataFromCache(((PreparedQuery)this.query).getOriginalSql(), (CachedResultSetMetaData)null, rs);
    +                        }
    +
    +                        if (this.retrieveGeneratedKeys) {
    +                            rs.setFirstCharOfQuery(this.getQueryInfo().getFirstStmtChar());
    +                        }
    +
    +                        if (oldDb != null) {
    +                            locallyScopedConn.setDatabase(oldDb);
    +                        }
    +
    +                        if (rs != null) {
    +                            this.lastInsertId = rs.getUpdateID();
    +                            this.results = rs;
    +                        }
    +
    +                        return rs != null && rs.hasRows();
    +                    }
    +                }
    +            }
    +        } catch (CJException var11) {
    +            throw SQLExceptionsMapping.translateException(var11, this.getExceptionInterceptor());
    +        }
    +    }
    - quicklist->len++; -}
    -

    前面第一步先根据插入的是头还是尾选择不同的 push 函数,quicklistPushHead 或者 quicklistPushTail,举例分析下从头插入的 quicklistPushHead,先判断当前的 quicklistNode 节点还能不能允许再往 ziplist 里添加元素,如果可以就添加,如果不允许就新建一个 quicklistNode,然后调用 _quicklistInsertNodeBefore 将节点插进去,具体插入quicklist节点的操作类似链表的插入。

    ]]>
    - Redis - 数据结构 - 源码 - C - Redis + Java + Mybatis - redis - 数据结构 - 源码 + Java + Mysql + Mybatis
    - redis数据结构介绍四-第四部分 压缩表 - /2020/01/19/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E5%9B%9B/ - 在 redis 中还有一类表型数据结构叫压缩表,ziplist,它的目的是替代链表,链表是个很容易理解的数据结构,双向链表有前后指针,有带头结点的有的不带,但是链表有个比较大的问题是相对于普通的数组,它的内存不连续,碎片化的存储,内存利用效率不高,而且指针寻址相对于直接使用偏移量的话,也有一定的效率劣势,当然这不是主要的原因,ziplist 设计的主要目的是让链表的内存使用更高效

    -
    -

    The ziplist is a specially encoded dually linked list that is designed to be very memory efficient.
    这是摘自 redis 源码中ziplist.c 文件的注释,也说明了原因,它的大概结构是这样子

    -
    -
    <zlbytes> <zltail> <zllen> <entry> <entry> ... <entry> <zlend>
    -

    其中
    <zlbytes>表示 ziplist 占用的字节总数,类型是uint32_t,32 位的无符号整型,当然表示的字节数也包含自己本身占用的 4 个
    <zltail> 类型也是是uint32_t,表示ziplist表中最后一项(entry)在ziplist中的偏移字节数。<zltail>的存在,使得我们可以很方便地找到最后一项(不用遍历整个ziplist),从而可以在ziplist尾端快速地执行push或pop操作。
    <uint16_t zllen> 表示ziplist 中的数据项个数,因为是 16 位,所以当数量超过所能表示的最大的数量,它的 16 位全会置为 1,但是真实的数量需要遍历整个 ziplist 才能知道
    <entry>是具体的数据项,后面解释
    <zlend> ziplist 的最后一个字节,固定是255。
    再看一下<entry>中的具体结构,

    -
    <prevlen> <encoding> <entry-data>
    -

    首先这个<prevlen>有两种情况,一种是前面的元素的长度,如果是小于等于 253的时候就用一个uint8_t 来表示前一元素的长度,如果大于的话他将占用五个字节,第一个字节是 254,即表示这个字节已经表示不下了,需要后面的四个字节帮忙表示
    <encoding>这个就比较复杂,把源码的注释放下面先看下

    -
    * |00pppppp| - 1 byte
    -*      String value with length less than or equal to 63 bytes (6 bits).
    -*      "pppppp" represents the unsigned 6 bit length.
    -* |01pppppp|qqqqqqqq| - 2 bytes
    -*      String value with length less than or equal to 16383 bytes (14 bits).
    -*      IMPORTANT: The 14 bit number is stored in big endian.
    -* |10000000|qqqqqqqq|rrrrrrrr|ssssssss|tttttttt| - 5 bytes
    -*      String value with length greater than or equal to 16384 bytes.
    -*      Only the 4 bytes following the first byte represents the length
    -*      up to 32^2-1. The 6 lower bits of the first byte are not used and
    -*      are set to zero.
    -*      IMPORTANT: The 32 bit number is stored in big endian.
    -* |11000000| - 3 bytes
    -*      Integer encoded as int16_t (2 bytes).
    -* |11010000| - 5 bytes
    -*      Integer encoded as int32_t (4 bytes).
    -* |11100000| - 9 bytes
    -*      Integer encoded as int64_t (8 bytes).
    -* |11110000| - 4 bytes
    -*      Integer encoded as 24 bit signed (3 bytes).
    -* |11111110| - 2 bytes
    -*      Integer encoded as 8 bit signed (1 byte).
    -* |1111xxxx| - (with xxxx between 0000 and 1101) immediate 4 bit integer.
    -*      Unsigned integer from 0 to 12. The encoded value is actually from
    -*      1 to 13 because 0000 and 1111 can not be used, so 1 should be
    -*      subtracted from the encoded 4 bit value to obtain the right value.
    -* |11111111| - End of ziplist special entry.
    -

    首先如果 encoding 的前两位是 00 的话代表这个元素是个 6 位的字符串,即直接将数据保存在 encoding 中,不消耗额外的<entry-data>,如果前两位是 01 的话表示是个 14 位的字符串,如果是 10 的话表示encoding 块之后的四个字节是存放字符串类型的数据,encoding 的剩余 6 位置 0。
    如果 encoding 的前两位是 11 的话表示这是个整型,具体的如果后两位是00的话,表示后面是个2字节的 int16_t 类型,如果是01的话,后面是个4字节的int32_t,如果是10的话后面是8字节的int64_t,如果是 11 的话后面是 3 字节的有符号整型,这些都要最后 4 位都是 0 的情况噢
    剩下当是11111110时,则表示是一个1 字节的有符号数,如果是 1111xxxx,其中xxxx在0000 到 1101 表示实际的 1 到 13,为啥呢,因为 0000 前面已经用过了,而 1110 跟 1111 也都有用了。
    看个具体的例子(上下有点对不齐,将就看)

    -
    [0f 00 00 00] [0c 00 00 00] [02 00] [00 f3] [02 f6] [ff]
    -|**zlbytes***|  |***zltail***|  |*zllen*|  |entry1 entry2|  |zlend|
    -

    第一部分代表整个 ziplist 有 15 个字节,zlbytes 自己占了 4 个 zltail 表示最后一个元素的偏移量,第 13 个字节起,zllen 表示有 2 个元素,第一个元素是00f3,00表示前一个元素长度是 0,本来前面就没元素(不过不知道这个能不能优化这一字节),然后是 f3,换成二进制就是11110011,对照上面的注释,是落在|1111xxxx|这个类型里,注意这个其实是用 0001 到 1101 也就是 1到 13 来表示 0到 12,所以 f3 应该就是 2,第一个元素是 2,第二个元素呢,02 代表前一个元素也就是刚才说的这个,占用 2 字节,f6 展开也是刚才的类型,实际是 5,ff 表示 ziplist 的结尾,所以这个 ziplist 里面是两个元素,2 跟 5

    + nginx 日志小记 + /2022/04/17/nginx-%E6%97%A5%E5%BF%97%E5%B0%8F%E8%AE%B0/ + nginx 默认的日志有特定的格式,我们也可以自定义,

    +

    默认的格式是预定义的 combined

    +
    log_format combined '$remote_addr - $remote_user [$time_local] '
    +                    '"$request" $status $body_bytes_sent '
    +                    '"$http_referer" "$http_user_agent"';
    + +

    配置的日志可以使用这个默认的,如果满足需求的话

    +
    Syntax:	access_log path [format [buffer=size] [gzip[=level]] [flush=time] [if=condition]];
    +        access_log off;
    +Default: access_log logs/access.log combined;
    +Context: http, server, location, if in location, limit_except
    + +

    而如果需要额外的一些配置的话可以自己定义 log_format ,比如我想要给日志里加上请求时间,那就可以自己定义一个 log_format 比如添加下

    +
    $request_time
    +request processing time in seconds with a milliseconds resolution;   
    +time elapsed between the first bytes were read from the client and the log write after the last bytes were sent to the client
    + +
    log_format combined_extend '$remote_addr - $remote_user [$time_local] '
    +                    '"$request" $status $body_bytes_sent '
    +                    '"$http_referer" "$http_user_agent" "$request_time"';
    + +

    然后其他的比如还有 gzip 压缩,可以设置压缩级别,flush 刷盘时间还有根据条件控制

    +

    这里的条件控制简单看了下还比较厉害

    +

    比如我想对2xx 跟 3xx 的访问不记录日志

    +
    map $status $loggable {
    +    ~^[23]  0;
    +    default 1;
    +}
    +
    +access_log /path/to/access.log combined if=$loggable;
    + +

    $loggable 是 0 或者空时表示 if 条件为否,上面的默认就是 1,只有当请求状态 status 是 2xx 或 3xx 时才是 0,代表不用记录,有了这个特性就可以更灵活地配置日志

    +

    文章主要参考了 nginx 的 log 模块的文档

    ]]>
    - Redis - 数据结构 - 源码 - C - Redis + nginx - redis - 数据结构 - 源码 + nginx + 日志
    - redis淘汰策略复习 - /2021/08/01/redis%E6%B7%98%E6%B1%B0%E7%AD%96%E7%95%A5%E5%A4%8D%E4%B9%A0/ - 前面复习了 redis 的过期策略,这里再复习下淘汰策略,淘汰跟过期的区别有时候会被混淆了,过期主要针对那些设置了过期时间的 key,应该说是一种逻辑策略,是主动的还是被动的加定时的,两种有各自的取舍,而淘汰也可以看成是一种保持系统稳定的策略,因为如果内存满了,不采取任何策略处理,那大概率会导致系统故障,之前其实主要从源码角度分析过redis 的 LRU 和 LFU,但这个是偏底层的实现,抠得比较细,那么具体的系统层面的配置是有哪些策略,来看下 redis labs 的介绍

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    PolicyDescription
    noeviction 不逐出Returns an error if the memory limit has been reached when trying to insert more data,插入更多数据时,如果内存达到上限了,返回错误
    allkeys-lru 所有的 key 使用 lru 逐出Evicts the least recently used keys out of all keys 在所有 key 中逐出最近最少使用的
    allkeys-lfu 所有的 key 使用 lfu 逐出Evicts the least frequently used keys out of all keys 在所有 key 中逐出最近最不频繁使用的
    allkeys-random 所有的 key 中随机逐出Randomly evicts keys out of all keys 在所有 key 中随机逐出
    volatile-lruEvicts the least recently used keys out of all keys with an “expire” field set 在设置了过期时间的 key 空间 expire 中使用 lru 策略逐出
    volatile-lfuEvicts the least frequently used keys out of all keys with an “expire” field set 在设置了过期时间的 key 空间 expire 中使用 lfu 策略逐出
    volatile-randomRandomly evicts keys with an “expire” field set 在设置了过期时间的 key 空间 expire 中随机逐出
    volatile-ttlEvicts the shortest time-to-live keys out of all keys with an “expire” field set.在设置了过期时间的 key 空间 expire 中逐出更早过期的
    -

    而在这其中默认使用的策略是 volatile-lru,对 lru 跟 lfu 想有更多的了解可以看下我之前的文章redis系列介绍八-淘汰策略

    -]]>
    + openresty + /2019/06/18/openresty/ + 目前公司要对一些新的产品功能做灰度测试,因为在后端业务代码层面添加判断比较麻烦,所以想在nginx上做点手脚,就想到了openresty
    前后也踩了不少坑,这边先写一点

    +

    首先是日志
    error_log logs/error.log debug;
    需要nginx开启日志的debug才能看到日志

    +

    使用 lua_code_cache off即可, 另外注意只有使用 content_by_lua_file 才会生效

    +
    http {
    +  lua_code_cache off;
    +}
    +
    +location ~* /(\d+-.*)/api/orgunits/load_all(.*) {
    +   default_type 'application/json;charset=utf-8';
    +   content_by_lua_file /data/projects/xxx/current/lua/controller/load_data.lua;
    +}
    + +

    使用lua给nginx请求response头添加内容可以用这个

    +
    ngx.header['response'] = 'header'
    + + +

    使用总结

    +

    后续:

    +
      +
    1. 一开始在本地环境的时候使用content_by_lua_file只关注了头,后来发到测试环境发现请求内容都没代理转发到后端服务上
      网上查了下发现content_by_lua_file是将请求的所有内容包括response都用这里面的lua脚本生成了,content这个词就表示是请求内容
      后来改成了access_by_lua_file就正常了,只是要去获取请求内容和修改响应头,并不是要完整的接管请求

      +
    2. +
    3. 后来又碰到了一个坑是nginx有个client_body_buffer_size的配置参数,nginx在32位和64位系统里有8K和16K两个默认值,当请求内容大于这两个值的时候,会把请求内容放到临时文件里,这个时候openresty里的ngx.req.get_post_args()就会报“failed to get post args: requesty body in temp file not supported”这个错误,将client_body_buffer_size这个参数配置调大一点就好了

      +
    4. +
    5. 还有就是lua的异常捕获,网上看一般是用pcall和xpcall来进行保护调用,因为问题主要出在cjson的decode,这里有两个解决方案,一个就是将cjson.decode使用pcall封装,

      +
      local decode = require("cjson").decode
      +
      +function json_decode( str )
      +    local ok, t = pcall(decode, str)
      +    if not ok then
      +      return nil
      +    end
      +
      +    return t
      +end
      +

      这个是使用了pcall,称为保护调用,会在内部错误后返回两个参数,第一个是false,第二个是错误信息
      还有一种是使用cjson.safe包

      +
      local json = require("cjson.safe")
      +local str = [[ {"key:"value"} ]]
      +
      +local t = json.decode(str)
      +if t then
      +    ngx.say(" --> ", type(t))
      +end
      +

      cjson.safe包会在解析失败的时候返回nil

      +
    6. +
    7. 还有一个是redis链接时如果host使用的是域名的话会提示“failed to connect: no resolver defined to resolve “redis.xxxxxx.com””,这里需要使用nginx的resolver指令,
      resolver 8.8.8.8 valid=3600s;

      +
    8. +
    9. 还有一点补充下
      就是业务在使用redis的时候使用了db的特性,所以在lua访问redis的时候也需要执行db,这里lua的redis库也支持了这个特性,可以使用instance:select(config:get(‘db’))来切换db

      +
    10. +
    11. 性能优化tips
      建议是尽量少使用阶段钩子,例如content_by_lua_file,*_by_lua

      +
    12. +
    13. 发现一个不错的openresty站点
      地址

      +
    14. +
    +]]>
    - redis + nginx - redis - 淘汰策略 - 应用 - Evict + nginx + openresty
    - redis系列介绍七-过期策略 - /2020/04/12/redis%E7%B3%BB%E5%88%97%E4%BB%8B%E7%BB%8D%E4%B8%83/ - 这一篇不再是数据结构介绍了,大致的数据结构基本都介绍了,这一篇主要是查漏补缺,或者说讲一些重要且基本的概念,也可能是经常被忽略的,很多讲 redis 的系列文章可能都会忽略,学习 redis 的时候也会,因为觉得源码学习就是讲主要的数据结构和“算法”学习了就好了。
    redis 的主要应用就是拿来作为高性能的缓存,那么缓存一般有些啥需要注意的,首先是访问速度,如果取得跟数据库一样快,那就没什么存在的意义,第二个是缓存的字面意思,我只是为了让数据读取快一些,通常大部分的场景这个是需要更新过期的,这里就把我要讲的第一点引出来了(真累,

    -

    redis过期策略

    redis 是如何过期缓存的,可以猜测下,最无脑的就是每个设置了过期时间的 key 都设个定时器,过期了就删除,这种显然消耗太大,清理地最及时,还有的就是 redis 正在采用的懒汉清理策略和定期清理
    懒汉策略就是在使用的时候去检查缓存是否过期,比如 get 操作时,先判断下这个 key 是否已经过期了,如果过期了就删掉,并且返回空,如果没过期则正常返回
    主要代码是

    -
    /* This function is called when we are going to perform some operation
    - * in a given key, but such key may be already logically expired even if
    - * it still exists in the database. The main way this function is called
    - * is via lookupKey*() family of functions.
    - *
    - * The behavior of the function depends on the replication role of the
    - * instance, because slave instances do not expire keys, they wait
    - * for DELs from the master for consistency matters. However even
    - * slaves will try to have a coherent return value for the function,
    - * so that read commands executed in the slave side will be able to
    - * behave like if the key is expired even if still present (because the
    - * master has yet to propagate the DEL).
    - *
    - * In masters as a side effect of finding a key which is expired, such
    - * key will be evicted from the database. Also this may trigger the
    - * propagation of a DEL/UNLINK command in AOF / replication stream.
    - *
    - * The return value of the function is 0 if the key is still valid,
    - * otherwise the function returns 1 if the key is expired. */
    -int expireIfNeeded(redisDb *db, robj *key) {
    -    if (!keyIsExpired(db,key)) return 0;
    -
    -    /* If we are running in the context of a slave, instead of
    -     * evicting the expired key from the database, we return ASAP:
    -     * the slave key expiration is controlled by the master that will
    -     * send us synthesized DEL operations for expired keys.
    -     *
    -     * Still we try to return the right information to the caller,
    -     * that is, 0 if we think the key should be still valid, 1 if
    -     * we think the key is expired at this time. */
    -    if (server.masterhost != NULL) return 1;
    -
    -    /* Delete the key */
    -    server.stat_expiredkeys++;
    -    propagateExpire(db,key,server.lazyfree_lazy_expire);
    -    notifyKeyspaceEvent(NOTIFY_EXPIRED,
    -        "expired",key,db->id);
    -    return server.lazyfree_lazy_expire ? dbAsyncDelete(db,key) :
    -                                         dbSyncDelete(db,key);
    +    php-abstract-class-and-interface
    +    /2016/11/10/php-abstract-class-and-interface/
    +    PHP抽象类和接口
      +
    • 抽象类与接口
    • +
    • 抽象类内可以包含非抽象函数,即可实现函数
    • +
    • 抽象类内必须包含至少一个抽象方法,抽象类和接口均不能实例化
    • +
    • 抽象类可以设置访问级别,接口默认都是public
    • +
    • 类可以实现多个接口但不能继承多个抽象类
    • +
    • 类必须实现抽象类和接口里的抽象方法,不一定要实现抽象类的非抽象方法
    • +
    • 接口内不能定义变量,但是可以定义常量
    • +
    +

    示例代码

    <?php
    +interface int1{
    +    const INTER1 = 111;
    +    function inter1();
     }
    -
    -/* Check if the key is expired. */
    -int keyIsExpired(redisDb *db, robj *key) {
    -    mstime_t when = getExpire(db,key);
    -    mstime_t now;
    -
    -    if (when < 0) return 0; /* No expire for this key */
    -
    -    /* Don't expire anything while loading. It will be done later. */
    -    if (server.loading) return 0;
    -
    -    /* If we are in the context of a Lua script, we pretend that time is
    -     * blocked to when the Lua script started. This way a key can expire
    -     * only the first time it is accessed and not in the middle of the
    -     * script execution, making propagation to slaves / AOF consistent.
    -     * See issue #1525 on Github for more information. */
    -    if (server.lua_caller) {
    -        now = server.lua_time_start;
    +interface int2{
    +    const INTER1 = 222;
    +    function inter2();
    +}
    +abstract class abst1{
    +    public function abstr1(){
    +        echo 1111;
         }
    -    /* If we are in the middle of a command execution, we still want to use
    -     * a reference time that does not change: in that case we just use the
    -     * cached time, that we update before each call in the call() function.
    -     * This way we avoid that commands such as RPOPLPUSH or similar, that
    -     * may re-open the same key multiple times, can invalidate an already
    -     * open object in a next call, if the next call will see the key expired,
    -     * while the first did not. */
    -    else if (server.fixed_time_expire > 0) {
    -        now = server.mstime;
    +    abstract function abstra1(){
    +        echo 'ahahahha';
         }
    -    /* For the other cases, we want to use the most fresh time we have. */
    -    else {
    -        now = mstime();
    +}
    +abstract class abst2{
    +    public function abstr2(){
    +        echo 1111;
         }
    -
    -    /* The key expired if the current (virtual or real) time is greater
    -     * than the expire time of the key. */
    -    return now > when;
    +    abstract function abstra2();
     }
    -/* Return the expire time of the specified key, or -1 if no expire
    - * is associated with this key (i.e. the key is non volatile) */
    -long long getExpire(redisDb *db, robj *key) {
    -    dictEntry *de;
    -
    -    /* No expire? return ASAP */
    -    if (dictSize(db->expires) == 0 ||
    -       (de = dictFind(db->expires,key->ptr)) == NULL) return -1;
    -
    -    /* The entry was found in the expire dict, this means it should also
    -     * be present in the main dict (safety check). */
    -    serverAssertWithInfo(NULL,key,dictFind(db->dict,key->ptr) != NULL);
    -    return dictGetSignedIntegerVal(de);
    -}
    -

    这里有几点要注意的,第一是当惰性删除时会根据lazyfree_lazy_expire这个参数去判断是执行同步删除还是异步删除,另外一点是对于 slave,是不需要执行的,因为会在 master 过期时向 slave 发送 del 指令。
    光采用这个策略会有什么问题呢,假如一些key 一直未被访问,那这些 key 就不会过期了,导致一直被占用着内存,所以 redis 采取了懒汉式过期加定期过期策略,定期策略是怎么执行的呢

    -
    /* This function handles 'background' operations we are required to do
    - * incrementally in Redis databases, such as active key expiring, resizing,
    - * rehashing. */
    -void databasesCron(void) {
    -    /* Expire keys by random sampling. Not required for slaves
    -     * as master will synthesize DELs for us. */
    -    if (server.active_expire_enabled) {
    -        if (server.masterhost == NULL) {
    -            activeExpireCycle(ACTIVE_EXPIRE_CYCLE_SLOW);
    -        } else {
    -            expireSlaveKeys();
    -        }
    +class normal1 extends abst1{
    +    protected function abstr2(){
    +        echo 222;
         }
    +}
    - /* Defrag keys gradually. */ - activeDefragCycle(); - - /* Perform hash tables rehashing if needed, but only if there are no - * other processes saving the DB on disk. Otherwise rehashing is bad - * as will cause a lot of copy-on-write of memory pages. */ - if (!hasActiveChildProcess()) { - /* We use global counters so if we stop the computation at a given - * DB we'll be able to start from the successive in the next - * cron loop iteration. */ - static unsigned int resize_db = 0; - static unsigned int rehash_db = 0; - int dbs_per_call = CRON_DBS_PER_CALL; - int j; - - /* Don't test more DBs than we have. */ - if (dbs_per_call > server.dbnum) dbs_per_call = server.dbnum; +

    result

    PHP Fatal error:  Abstract function abst1::abstra1() cannot contain body in new.php on line 17
     
    -        /* Resize */
    -        for (j = 0; j < dbs_per_call; j++) {
    -            tryResizeHashTables(resize_db % server.dbnum);
    -            resize_db++;
    -        }
    +Fatal error: Abstract function abst1::abstra1() cannot contain body in php on line 17
    +]]>
    + + php + + + php + + + + powershell 初体验 + /2022/11/13/powershell-%E5%88%9D%E4%BD%93%E9%AA%8C/ + powershell变量

    变量命名类似于php

    +
    PS C:\Users\Nicks> $a=1
    +PS C:\Users\Nicks> $b=2
    +PS C:\Users\Nicks> $a*$b
    +2
    +

    有一个比较好用的是变量交换
    一般的语言做两个变量交换一般需要一个临时变量

    +
    $tmp=$a
    +$a=$b
    +$b=$tmp
    +

    而在powershell中可以这样

    +
    $a,$b=$b,$a
    +PS C:\Users\Nicks> $a,$b=$b,$a
    +PS C:\Users\Nicks> $a
    +2
    +PS C:\Users\Nicks> $b
    +1
    +

    还可以通过这个

    +
    PS C:\Users\Nicks> ls variable:
     
    -        /* Rehash */
    -        if (server.activerehashing) {
    -            for (j = 0; j < dbs_per_call; j++) {
    -                int work_done = incrementallyRehash(rehash_db);
    -                if (work_done) {
    -                    /* If the function did some work, stop here, we'll do
    -                     * more at the next cron loop. */
    -                    break;
    -                } else {
    -                    /* If this db didn't need rehash, we'll try the next one. */
    -                    rehash_db++;
    -                    rehash_db %= server.dbnum;
    -                }
    -            }
    -        }
    -    }
    -}
    -/* Try to expire a few timed out keys. The algorithm used is adaptive and
    - * will use few CPU cycles if there are few expiring keys, otherwise
    - * it will get more aggressive to avoid that too much memory is used by
    - * keys that can be removed from the keyspace.
    - *
    - * Every expire cycle tests multiple databases: the next call will start
    - * again from the next db, with the exception of exists for time limit: in that
    - * case we restart again from the last database we were processing. Anyway
    - * no more than CRON_DBS_PER_CALL databases are tested at every iteration.
    - *
    - * The function can perform more or less work, depending on the "type"
    - * argument. It can execute a "fast cycle" or a "slow cycle". The slow
    - * cycle is the main way we collect expired cycles: this happens with
    - * the "server.hz" frequency (usually 10 hertz).
    - *
    - * However the slow cycle can exit for timeout, since it used too much time.
    - * For this reason the function is also invoked to perform a fast cycle
    - * at every event loop cycle, in the beforeSleep() function. The fast cycle
    - * will try to perform less work, but will do it much more often.
    - *
    - * The following are the details of the two expire cycles and their stop
    - * conditions:
    - *
    - * If type is ACTIVE_EXPIRE_CYCLE_FAST the function will try to run a
    - * "fast" expire cycle that takes no longer than EXPIRE_FAST_CYCLE_DURATION
    - * microseconds, and is not repeated again before the same amount of time.
    - * The cycle will also refuse to run at all if the latest slow cycle did not
    - * terminate because of a time limit condition.
    - *
    - * If type is ACTIVE_EXPIRE_CYCLE_SLOW, that normal expire cycle is
    - * executed, where the time limit is a percentage of the REDIS_HZ period
    - * as specified by the ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC define. In the
    - * fast cycle, the check of every database is interrupted once the number
    - * of already expired keys in the database is estimated to be lower than
    - * a given percentage, in order to avoid doing too much work to gain too
    - * little memory.
    - *
    - * The configured expire "effort" will modify the baseline parameters in
    - * order to do more work in both the fast and slow expire cycles.
    - */
    -
    -#define ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP 20 /* Keys for each DB loop. */
    -#define ACTIVE_EXPIRE_CYCLE_FAST_DURATION 1000 /* Microseconds. */
    -#define ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC 25 /* Max % of CPU to use. */
    -#define ACTIVE_EXPIRE_CYCLE_ACCEPTABLE_STALE 10 /* % of stale keys after which
    -                                                   we do extra efforts. */
    -void activeExpireCycle(int type) {
    -    /* Adjust the running parameters according to the configured expire
    -     * effort. The default effort is 1, and the maximum configurable effort
    -     * is 10. */
    -    unsigned long
    -    effort = server.active_expire_effort-1, /* Rescale from 0 to 9. */
    -    config_keys_per_loop = ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP +
    -                           ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP/4*effort,
    -    config_cycle_fast_duration = ACTIVE_EXPIRE_CYCLE_FAST_DURATION +
    -                                 ACTIVE_EXPIRE_CYCLE_FAST_DURATION/4*effort,
    -    config_cycle_slow_time_perc = ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC +
    -                                  2*effort,
    -    config_cycle_acceptable_stale = ACTIVE_EXPIRE_CYCLE_ACCEPTABLE_STALE-
    -                                    effort;
    -
    -    /* This function has some global state in order to continue the work
    -     * incrementally across calls. */
    -    static unsigned int current_db = 0; /* Last DB tested. */
    -    static int timelimit_exit = 0;      /* Time limit hit in previous call? */
    -    static long long last_fast_cycle = 0; /* When last fast cycle ran. */
    -
    -    int j, iteration = 0;
    -    int dbs_per_call = CRON_DBS_PER_CALL;
    -    long long start = ustime(), timelimit, elapsed;
    +Name                           Value
    +----                           -----
    +$                              $b
    +?                              True
    +^                              $b
    +a                              2
    +args                           {}
    +b                              1
    +

    查看现存的变量
    当然一般脚本都是动态类型的,
    可以通过
    gettype方法

    +]]>
    + + 语言 + + + powershell + +
    + + pcre-intro-and-a-simple-package + /2015/01/16/pcre-intro-and-a-simple-package/ + Pcre
    +

    Perl Compatible Regular Expressions (PCRE) is a regular
    expression C library inspired by the regular expression
    capabilities in the Perl programming language, written
    by Philip Hazel, starting in summer 1997.

    +
    +

    因为最近工作内容的一部分需要做字符串的识别处理,所以就顺便用上了之前在PHP中用过的正则,在C/C++中本身不包含正则库,这里使用的pcre,对MFC开发,在这里提供了静态链接库,在引入lib跟.h文件后即可使用。

    + - /* When clients are paused the dataset should be static not just from the - * POV of clients not being able to write, but also from the POV of - * expires and evictions of keys not being performed. */ - if (clientsArePaused()) return; +

    Regular Expression Syntax

    然后是一些正则语法,官方的语法文档比较科学严谨,特别是对类似于贪婪匹配等细节的说明,当然一般的使用可以在网上找到很多匹配语法,例如这个

    +

    PCRE函数介绍

    +

    pcre_compile
    原型:

    +
    +
    #include <pcre.h>
    +pcre *pcre_compile(const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr);
    +

    功能:将一个正则表达式编译成一个内部表示,在匹配多个字符串时,可以加速匹配。其同pcre_compile2功能一样只是缺少一个参数errorcodeptr。
    参数:
    pattern 正则表达式
    options 为0,或者其他参数选项
    errptr 出错消息
    erroffset 出错位置
    tableptr 指向一个字符数组的指针,可以设置为空NULL

    +
    +

    pcre_exec
    原型:

    +
    +
    #include <pcre.h>
    +int pcre_exec(const pcre *code, const pcre_extra *extra, const char *subject, int length, int startoffset, int options, int *ovector, int ovecsize)
    +

    功能:使用编译好的模式进行匹配,采用与Perl相似的算法,返回匹配串的偏移位置。
    参数:
    code 编译好的模式
    extra 指向一个pcre_extra结构体,可以为NULL
    subject 需要匹配的字符串
    length 匹配的字符串长度(Byte)
    startoffset 匹配的开始位置
    options 选项位
    ovector 指向一个结果的整型数组
    ovecsize 数组大小。

    +

    这里是两个最常用的函数的简单说明,pcre的静态库提供了一系列的函数以供使用,可以参考这个博客说明,另外对于以上函数的具体参数详细说明可以参考官网此处

    +

    一个丑陋的封装

    void COcxDemoDlg::pcre_exec_all(const pcre * re, PCRE_SPTR src, vector<pair<int, int>> &vc)
    +{
    +	int rc;
    +	int ovector[30];
    +	int i = 0;
    +	pair<int, int> pr;
    +	rc = pcre_exec(re, NULL, src, strlen(src), i, 0, ovector, 30);
    +	for (; rc > 0;)
    +	{
    +		i = ovector[1];
    +		pr.first = ovector[2];
    +		pr.second = ovector[3];
    +		vc.push_back(pr);
    +		rc = pcre_exec(re, NULL, src, strlen(src), i, 0, ovector, 30);
    +	}
    +}
    +

    vector中是全文匹配后的索引对,只是简单地用下。

    +]]>
    + + C++ + + + c++ + mfc + +
    + + powershell 初体验二 + /2022/11/20/powershell-%E5%88%9D%E4%BD%93%E9%AA%8C%E4%BA%8C/ + powershell创建数组也很方便
    可以这样

    +
    $nums=2,0,1,2
    +

    顺便可以用下我们上次学到的gettype()

    +

    如果是想创建连续数字的数组还可以用这个方便的方法

    +
    $nums=1..5
    +


    而且数组还可以存放各种类型的数据

    +
    $array=1,"哈哈",([System.Guid]::NewGuid()),(get-date)
    +


    还有判断类型可以用-is

    创建一个空数组

    +
    $array=@()
    +


    数组添加元素

    +
    $array+="a"
    +


    数组删除元素

    +
    $a=1..4
    +$a=$a[0..1]+$a[3]
    +

    +]]>
    + + 语言 + + + powershell + +
    + + redis数据结构介绍-第一部分 SDS,链表,字典 + /2019/12/26/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D/ + redis是现在服务端很常用的缓存中间件,其实原来还有memcache之类的竞品,但是现在貌似 redis 快一统江湖,这里当然不是在吹,只是个人角度的一个感觉,不权威只是主观感觉。
    redis 主要有五种数据结构,StringsListsSetsHashesSorted Sets,这五种数据结构先简单介绍下,Strings类型的其实就是我们最常用的 key-value,实际开发中也会用的最多;Lists是列表,这个有些会用来做队列,因为 redis 目前常用的版本支持丰富的列表操作;还有是Sets集合,这个主要的特点就是集合中元素不重复,可以用在有这类需求的场景里;Hashes是叫散列,类似于 Python 中的字典结构;还有就是Sorted Sets这个是个有序集合;一眼看这些其实没啥特别的,除了最后这个有序集合,不过去了解背后的实现方式还是比较有意思的。

    +

    SDS 简单动态字符串

    先从Strings开始说,了解过 C 语言的应该知道,C 语言中的字符串其实是个 char[] 字符数组,redis 也不例外,只是最开始的版本就对这个做了一丢丢的优化,而正是这一丢丢的优化,让这个 redis 的使用效率提升了数倍

    +
    struct sdshdr {
    +    // 字符串长度
    +    int len;
    +    // 字符串空余字符数
    +    int free;
    +    // 字符串内容
    +    char buf[];
    +};
    +

    这里引用了 redis 在 github 上最早的 2.2 版本的代码,代码路径是https://github.com/antirez/redis/blob/2.2/src/sds.h,可以看到这个结构体里只有仨元素,两个 int 型和一个 char 型数组,两个 int 型其实就是我说的优化,因为 C 语言本身的字符串数组,有两个问题,一个是要知道它实际已被占用的长度,需要去遍历这个数组,第二个就是比较容易踩坑的是遍历的时候要注意它有个以\0作为结尾的特点;通过上面的两个 int 型参数,一个是知道字符串目前的长度,一个是知道字符串还剩余多少位空间,这样子坐着两个操作从 O(N)简化到了O(1)了,还有第二个 free 还有个比较重要的作用就是能防止 C 字符串的溢出问题,在存储之前可以先判断 free 长度,如果长度不够就先扩容了,先介绍到这,这个系列可以写蛮多的,慢慢介绍吧

    +

    链表

    链表是比较常见的数据结构了,但是因为 redis 是用 C 写的,所以在不依赖第三方库的情况下只能自己写一个了,redis 的链表是个有头的链表,而且是无环的,具体的结构我也找了 github 上最早版本的代码

    +
    typedef struct listNode {
    +    // 前置节点
    +    struct listNode *prev;
    +    // 后置节点
    +    struct listNode *next;
    +    // 值
    +    void *value;
    +} listNode;
     
    -    if (type == ACTIVE_EXPIRE_CYCLE_FAST) {
    -        /* Don't start a fast cycle if the previous cycle did not exit
    -         * for time limit, unless the percentage of estimated stale keys is
    -         * too high. Also never repeat a fast cycle for the same period
    -         * as the fast cycle total duration itself. */
    -        if (!timelimit_exit &&
    -            server.stat_expired_stale_perc < config_cycle_acceptable_stale)
    -            return;
    +typedef struct list {
    +    // 链表表头
    +    listNode *head;
    +    // 当前节点,也可以说是最后节点
    +    listNode *tail;
    +    // 节点复制函数
    +    void *(*dup)(void *ptr);
    +    // 节点值释放函数
    +    void (*free)(void *ptr);
    +    // 节点值比较函数
    +    int (*match)(void *ptr, void *key);
    +    // 链表包含的节点数量
    +    unsigned int len;
    +} list;
    +

    代码地址是这个https://github.com/antirez/redis/blob/2.2/src/adlist.h
    可以看下节点是由listNode承载的,包括值和一个指向前节点跟一个指向后一节点的两个指针,然后值是 void 指针类型,所以可以承载不同类型的值
    然后是 list结构用来承载一个链表,包含了表头,和表尾,复制函数,释放函数和比较函数,还有链表长度,因为包含了前两个节点,找到表尾节点跟表头都是 O(1)的时间复杂度,还有节点数量,其实这个跟 SDS 是同一个做法,就是空间换时间,这也是写代码里比较常见的做法,以此让一些高频的操作提速。

    +

    字典

    字典也是个常用的数据结构,其实只是叫法不同,数据结构中叫 hash 散列,Java 中叫 Map,PHP 中是数组 array,Python 中也叫字典 dict,因为纯 C 语言本身不带这些数据结构,所以这也是个痛并快乐着的过程,享受 C 语言的高性能的同时也要接受它只提供了语言的基本功能的现实,各种轮子都需要自己造,redis 同样实现了自己的字典
    下面来看看代码

    +
    typedef struct dictEntry {
    +    void *key;
    +    void *val;
    +    struct dictEntry *next;
    +} dictEntry;
     
    -        if (start < last_fast_cycle + (long long)config_cycle_fast_duration*2)
    -            return;
    +typedef struct dictType {
    +    unsigned int (*hashFunction)(const void *key);
    +    void *(*keyDup)(void *privdata, const void *key);
    +    void *(*valDup)(void *privdata, const void *obj);
    +    int (*keyCompare)(void *privdata, const void *key1, const void *key2);
    +    void (*keyDestructor)(void *privdata, void *key);
    +    void (*valDestructor)(void *privdata, void *obj);
    +} dictType;
     
    -        last_fast_cycle = start;
    -    }
    +/* This is our hash table structure. Every dictionary has two of this as we
    + * implement incremental rehashing, for the old to the new table. */
    +typedef struct dictht {
    +    dictEntry **table;
    +    unsigned long size;
    +    unsigned long sizemask;
    +    unsigned long used;
    +} dictht;
     
    -    /* We usually should test CRON_DBS_PER_CALL per iteration, with
    -     * two exceptions:
    -     *
    -     * 1) Don't test more DBs than we have.
    -     * 2) If last time we hit the time limit, we want to scan all DBs
    -     * in this iteration, as there is work to do in some DB and we don't want
    -     * expired keys to use memory for too much time. */
    -    if (dbs_per_call > server.dbnum || timelimit_exit)
    -        dbs_per_call = server.dbnum;
    -
    -    /* We can use at max 'config_cycle_slow_time_perc' percentage of CPU
    -     * time per iteration. Since this function gets called with a frequency of
    -     * server.hz times per second, the following is the max amount of
    -     * microseconds we can spend in this function. */
    -    timelimit = config_cycle_slow_time_perc*1000000/server.hz/100;
    -    timelimit_exit = 0;
    -    if (timelimit <= 0) timelimit = 1;
    -
    -    if (type == ACTIVE_EXPIRE_CYCLE_FAST)
    -        timelimit = config_cycle_fast_duration; /* in microseconds. */
    -
    -    /* Accumulate some global stats as we expire keys, to have some idea
    -     * about the number of keys that are already logically expired, but still
    -     * existing inside the database. */
    -    long total_sampled = 0;
    -    long total_expired = 0;
    -
    -    for (j = 0; j < dbs_per_call && timelimit_exit == 0; j++) {
    -        /* Expired and checked in a single loop. */
    -        unsigned long expired, sampled;
    -
    -        redisDb *db = server.db+(current_db % server.dbnum);
    -
    -        /* Increment the DB now so we are sure if we run out of time
    -         * in the current DB we'll restart from the next. This allows to
    -         * distribute the time evenly across DBs. */
    -        current_db++;
    -
    -        /* Continue to expire if at the end of the cycle more than 25%
    -         * of the keys were expired. */
    -        do {
    -            unsigned long num, slots;
    -            long long now, ttl_sum;
    -            int ttl_samples;
    -            iteration++;
    -
    -            /* If there is nothing to expire try next DB ASAP. */
    -            if ((num = dictSize(db->expires)) == 0) {
    -                db->avg_ttl = 0;
    -                break;
    -            }
    -            slots = dictSlots(db->expires);
    -            now = mstime();
    -
    -            /* When there are less than 1% filled slots, sampling the key
    -             * space is expensive, so stop here waiting for better times...
    -             * The dictionary will be resized asap. */
    -            if (num && slots > DICT_HT_INITIAL_SIZE &&
    -                (num*100/slots < 1)) break;
    -
    -            /* The main collection cycle. Sample random keys among keys
    -             * with an expire set, checking for expired ones. */
    -            expired = 0;
    -            sampled = 0;
    -            ttl_sum = 0;
    -            ttl_samples = 0;
    -
    -            if (num > config_keys_per_loop)
    -                num = config_keys_per_loop;
    -
    -            /* Here we access the low level representation of the hash table
    -             * for speed concerns: this makes this code coupled with dict.c,
    -             * but it hardly changed in ten years.
    -             *
    -             * Note that certain places of the hash table may be empty,
    -             * so we want also a stop condition about the number of
    -             * buckets that we scanned. However scanning for free buckets
    -             * is very fast: we are in the cache line scanning a sequential
    -             * array of NULL pointers, so we can scan a lot more buckets
    -             * than keys in the same time. */
    -            long max_buckets = num*20;
    -            long checked_buckets = 0;
    -
    -            while (sampled < num && checked_buckets < max_buckets) {
    -                for (int table = 0; table < 2; table++) {
    -                    if (table == 1 && !dictIsRehashing(db->expires)) break;
    -
    -                    unsigned long idx = db->expires_cursor;
    -                    idx &= db->expires->ht[table].sizemask;
    -                    dictEntry *de = db->expires->ht[table].table[idx];
    -                    long long ttl;
    -
    -                    /* Scan the current bucket of the current table. */
    -                    checked_buckets++;
    -                    while(de) {
    -                        /* Get the next entry now since this entry may get
    -                         * deleted. */
    -                        dictEntry *e = de;
    -                        de = de->next;
    -
    -                        ttl = dictGetSignedIntegerVal(e)-now;
    -                        if (activeExpireCycleTryExpire(db,e,now)) expired++;
    -                        if (ttl > 0) {
    -                            /* We want the average TTL of keys yet
    -                             * not expired. */
    -                            ttl_sum += ttl;
    -                            ttl_samples++;
    -                        }
    -                        sampled++;
    -                    }
    -                }
    -                db->expires_cursor++;
    -            }
    -            total_expired += expired;
    -            total_sampled += sampled;
    -
    -            /* Update the average TTL stats for this database. */
    -            if (ttl_samples) {
    -                long long avg_ttl = ttl_sum/ttl_samples;
    -
    -                /* Do a simple running average with a few samples.
    -                 * We just use the current estimate with a weight of 2%
    -                 * and the previous estimate with a weight of 98%. */
    -                if (db->avg_ttl == 0) db->avg_ttl = avg_ttl;
    -                db->avg_ttl = (db->avg_ttl/50)*49 + (avg_ttl/50);
    -            }
    -
    -            /* We can't block forever here even if there are many keys to
    -             * expire. So after a given amount of milliseconds return to the
    -             * caller waiting for the other active expire cycle. */
    -            if ((iteration & 0xf) == 0) { /* check once every 16 iterations. */
    -                elapsed = ustime()-start;
    -                if (elapsed > timelimit) {
    -                    timelimit_exit = 1;
    -                    server.stat_expired_time_cap_reached_count++;
    -                    break;
    -                }
    -            }
    -            /* We don't repeat the cycle for the current database if there are
    -             * an acceptable amount of stale keys (logically expired but yet
    -             * not reclained). */
    -        } while ((expired*100/sampled) > config_cycle_acceptable_stale);
    -    }
    -
    -    elapsed = ustime()-start;
    -    server.stat_expire_cycle_time_used += elapsed;
    -    latencyAddSampleIfNeeded("expire-cycle",elapsed/1000);
    -
    -    /* Update our estimate of keys existing but yet to be expired.
    -     * Running average with this sample accounting for 5%. */
    -    double current_perc;
    -    if (total_sampled) {
    -        current_perc = (double)total_expired/total_sampled;
    -    } else
    -        current_perc = 0;
    -    server.stat_expired_stale_perc = (current_perc*0.05)+
    -                                     (server.stat_expired_stale_perc*0.95);
    -}
    -

    执行定期清除分成两种类型,快和慢,分别由beforeSleepdatabasesCron调用,快版有两个限制,一个是执行时长由ACTIVE_EXPIRE_CYCLE_FAST_DURATION限制,另一个是执行间隔是 2 倍的ACTIVE_EXPIRE_CYCLE_FAST_DURATION,另外这还可以由配置的server.active_expire_effort参数来控制,默认是 1,最大是 10

    -
    onfig_cycle_fast_duration = ACTIVE_EXPIRE_CYCLE_FAST_DURATION +
    -                                 ACTIVE_EXPIRE_CYCLE_FAST_DURATION/4*effort
    -

    然后会从一定数量的 db 中找出一定数量的带过期时间的 key(保存在 expires中),这里的数量是由

    -
    config_keys_per_loop = ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP +
    -                           ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP/4*effort
    -```                                 
    -控制,慢速的执行时长是
    -```C
    -config_cycle_slow_time_perc = ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC +
    -                                  2*effort
    -timelimit = config_cycle_slow_time_perc*1000000/server.hz/100;
    -

    这里还有一个额外的退出条件,如果当前数据库的抽样结果已经达到我们所允许的过期 key 百分比,则下次不再处理当前 db,继续处理下个 db

    +typedef struct dict { + dictType *type; + void *privdata; + dictht ht[2]; + int rehashidx; /* rehashing not in progress if rehashidx == -1 */ + int iterators; /* number of iterators currently running */ +} dict;
    +

    看了下这个 2.2 版本的代码跟最新版的其实也差的不是很多,所以还是照旧用老代码,可以看到上面四个结构体中,其实只有三个是存储数据用的,dictType 是用来放操作函数的,那么三个存放数据的结构体分别是干嘛的,这时候感觉需要一个图来说明比较好,稍等,我去画个图~

    这个图看着应该比较清楚这些都是用来干嘛的了,dict 是我们的主体结构,它有一个指向 dictType 的指针,这里面包含了字典的操作函数,然后是一个私有数据指针,接下来是一个 dictht 的数组,包含两个dictht,这个就是用来存数据的了,然后是 rehashidx 表示重哈希的状态,当是-1 的时候表示当前没有重哈希,iterators 表示正在遍历的迭代器的数量。
    首先说说为啥需要有两个 dictht,这是因为字典 dict 这个数据结构随着数据量的增减,会需要在中途做扩容或者缩容操作,如果只有一个的话,对它进行扩容缩容时会影响正常的访问和修改操作,或者说保证正常查询,修改的正确性会比较复杂,并且因为需要高效利用空间,不能一下子申请一个非常大的空间来存很少的数据。当 dict 中 dictht 中的数据量超过 size 的时候负载就超过了 1,就需要进行扩容,这里的其实跟 Java 中的 HashMap 比较类似,超过一定的负载之后进行扩容。这里为啥 size 会超过 1 呢,可能有部分不了解这类结构的同学会比较奇怪,其实就是上图中画的,在数据结构中对于散列的冲突有几类解决方法,比如转换成链表,二次散列,找下个空槽等,这里就使用了链表法,或者说拉链法。当一个新元素通过 hashFunction 得出的 key 跟 sizemask 取模之后的值相同了,那就将其放在原来的节点之前,变成链表挂在数组 dictht.table下面,放在原有节点前是考虑到可能会优先访问。
    忘了说明下 dictht 跟 dictEntry 的关系了,dictht 就是个哈希表,它里面是个dictEntry 的二维数组,而 dictEntry 是个包含了 key-value 结构之外还有一个 next 指针,因此可以将哈希冲突的以链表的形式保存下来。
    在重点说下重哈希,可能同样写 Java 的同学对这个比较有感觉,跟 HashMap 一样,会以 2 的 N 次方进行扩容,那么扩容的方法就会比较简单,每个键重哈希要不就在原来这个槽,要不就在原来的槽加原 dictht.size 的位置;然后是重头戏,具体是怎么做扩容呢,其实这里就把第二个 ht 用上了,其实这两个hashtable 的具体作用有点类似于 jvm 中的两个 survival 区,但是又不全一样,因为 redis 在扩容的时候是采用的渐进式地重哈希,什么叫渐进式的呢,就是它不是像 jvm 那种标记复制的模式直接将一个 eden 区和原来的 survival 区存活的对象复制到另一个 survival 区,而是在每一次添加,删除,查找或者更新操作时,都会额外的帮忙搬运一部分的原 dictht 中的数据,这里会根据 rehashidx 的值来判断,如果是-1 表示并没有在重哈希中,如果是 0 表示开始重哈希了,然后rehashidx 还会随着每次的帮忙搬运往上加,但全部被搬运完成后 rehashidx 又变回了-1,又可以扯到Java 中的 Concurrent HashMap, 他在扩容的时候也使用了类似的操作。

    ]]>
    Redis @@ -9417,558 +8462,405 @@ timelimit = config_cycle_slow_time_perc*1000000/server.hz/100;
    - redis过期策略复习 - /2021/07/25/redis%E8%BF%87%E6%9C%9F%E7%AD%96%E7%95%A5%E5%A4%8D%E4%B9%A0/ - redis过期策略复习

    之前其实写过redis的过期的一些原理,这次主要是记录下,一些使用上的概念,主要是redis使用的过期策略是懒过期和定时清除,懒过期的其实比较简单,即是在key被访问的时候会顺带着判断下这个key是否已过期了,如果已经过期了,就不返回了,但是这种策略有个漏洞是如果有些key之后一直不会被访问了,就等于沉在池底了,所以需要有一个定时的清理机制,去从设置了过期的key池子(expires)里随机地捞key,具体的策略我们看下官网的解释

    -
      -
    1. Test 20 random keys from the set of keys with an associated expire.
    2. -
    3. Delete all the keys found expired.
    4. -
    5. If more than 25% of keys were expired, start again from step 1.
    6. -
    -

    从池子里随机获取20个key,将其中过期的key删掉,如果这其中有超过25%的key已经过期了,那就再来一次,以此保持过期的key不超过25%(左右),并且这个定时策略可以在redis的配置文件

    -
    # Redis calls an internal function to perform many background tasks, like
    -# closing connections of clients in timeout, purging expired keys that are
    -# never requested, and so forth.
    -#
    -# Not all tasks are performed with the same frequency, but Redis checks for
    -# tasks to perform according to the specified "hz" value.
    -#
    -# By default "hz" is set to 10. Raising the value will use more CPU when
    -# Redis is idle, but at the same time will make Redis more responsive when
    -# there are many keys expiring at the same time, and timeouts may be
    -# handled with more precision.
    -#
    -# The range is between 1 and 500, however a value over 100 is usually not
    -# a good idea. Most users should use the default of 10 and raise this up to
    -# 100 only in environments where very low latency is required.
    -hz 10
    - -

    可以配置这个hz的值,代表的含义是每秒的执行次数,默认是10,其实也用了hz的普遍含义。有兴趣可以看看之前写的一篇文章redis系列介绍七-过期策略

    + rabbitmq-tips + /2017/04/25/rabbitmq-tips/ + rabbitmq 介绍

    接触了一下rabbitmq,原来在选型的时候是在rabbitmq跟kafka之间做选择,网上搜了一下之后发现kafka的优势在于吞吐量,而rabbitmq相对注重可靠性,因为应用在im上,需要保证消息不能丢失所以就暂时选定rabbitmq,
    Message Queue的需求由来已久,80年代最早在金融交易中,高盛等公司采用Teknekron公司的产品,当时的Message queuing软件叫做:the information bus(TIB)。 TIB被电信和通讯公司采用,路透社收购了Teknekron公司。之后,IBM开发了MQSeries,微软开发了Microsoft Message Queue(MSMQ)。这些商业MQ供应商的问题是厂商锁定,价格高昂。2001年,Java Message queuing试图解决锁定和交互性的问题,但对应用来说反而更加麻烦了。
    RabbitMQ采用Erlang语言开发。Erlang语言由Ericson设计,专门为开发concurrent和distribution系统的一种语言,在电信领域使用广泛。OTP(Open Telecom Platform)作为Erlang语言的一部分,包含了很多基于Erlang开发的中间件/库/工具,如mnesia/SASL,极大方便了Erlang应用的开发。OTP就类似于Python语言中众多的module,用户借助这些module可以很方便的开发应用。
    于是2004年,摩根大通和iMatrix开始着手Advanced Message Queuing Protocol (AMQP)开放标准的开发。2006年,AMQP规范发布。2007年,Rabbit技术公司基于AMQP标准开发的RabbitMQ 1.0 发布。所有主要的编程语言均有与代理接口通讯的客户端库。

    +

    简单的使用经验

    通俗的理解

    这里介绍下其中的一些概念,connection表示和队列服务器的连接,一般情况下是tcp连接, channel表示通道,可以在一个连接上建立多个通道,这里主要是节省了tcp连接握手的成本,exchange可以理解成一个路由器,将消息推送给对应的队列queue,其实是像一个订阅的模式。

    +

    集群经验

    rabbitmqctl stop这个是关闭rabbitmq,在搭建集群时候先关闭服务,然后使用rabbitmq-server -detached静默启动,这时候使用rabbitmqctl cluster_status查看集群状态,因为还没将节点加入集群,所以只能看到类似

    +
    Cluster status of node rabbit@rabbit1 ...
    +[{nodes,[{disc,[rabbit@rabbit1,rabbit@rabbit2,rabbit@rabbit3]}]},
    + {running_nodes,[rabbit@rabbit2,rabbit@rabbit1]}]
    +...done.
    +

    然后就可以把当前节点加入集群,

    +
    rabbit2$ rabbitmqctl stop_app #这个stop_app与stop的区别是前者停的是rabbitmq应用,保留erlang节点,
    +                              #后者是停止了rabbitmq和erlang节点
    +Stopping node rabbit@rabbit2 ...done.
    +rabbit2$ rabbitmqctl join_cluster rabbit@rabbit1 #这里可以用--ram指定将当前节点作为内存节点加入集群
    +Clustering node rabbit@rabbit2 with [rabbit@rabbit1] ...done.
    +rabbit2$ rabbitmqctl start_app
    +Starting node rabbit@rabbit2 ...done.
    +

    其他可以参考官方文档

    +

    一些坑

    消息丢失

    这里碰到过一个坑,对于使用exchange来做消息路由的,会有一个情况,就是在routing_key没被订阅的时候,会将该条找不到路由对应的queue的消息丢掉What happens if we break our contract and send a message with one or four words, like "orange" or "quick.orange.male.rabbit"? Well, these messages won't match any bindings and will be lost.对应链接,而当使用空的exchange时,会保留消息,当出现消费者的时候就可以将收到之前生产者所推送的消息对应链接,这里就是用了空的exchange。

    +

    集群搭建

    集群搭建的时候有个erlang vm生成的random cookie,这个是用来做集群之间认证的,相同的cookie才能连接,但是如果通过vim打开复制后在其他几点新建文件写入会多一个换行,导致集群建立是报错,所以这里最好使用scp等传输命令直接传输cookie文件,同时要注意下cookie的文件权限。
    另外在集群搭建的时候如果更改过hostname,那么要把rabbitmq的数据库删除,否则启动后会马上挂掉

    +]]>
    + + php + + + php + mq + im + +
    + + redis 的 rdb 和 COW 介绍 + /2021/08/15/redis-%E7%9A%84-rdb-%E5%92%8C-COW-%E4%BB%8B%E7%BB%8D/ + redis 在使用 rdb 策略进行备份时,rdb 的意思是会在开启备份的时候将开启时间点的内存数据进行备份,并且可以设置时间,这样子就是这个策略其实还是不完全可靠的,如果是在这个间隔中宕机了,或者间隔过长,不过这个不在这次的要说的内容中,如果自己去写这个 rdb 的策略可能就有点类似于 mvcc 的 redolog,需要知道这个时间点之前的数据是怎么样的,防止后面更改的干扰,但是这样一方面需要有比较复杂的 mvcc 实现,另一方面是很占用存储空间,所以 redis 在这里面使用了 COW (Copy On Write) 技术,这个技术呢以前听过,也大致了解是怎么个意思,这次稍微具体地来看下,其实 redis 的 copy-on-write 就是来自于 linux 的 cow

    +

    Linux中的CopyOnWrite

    fork()之后,kernel把父进程中所有的内存页的权限都设为read-only,然后子进程的地址空间指向父进程。当父子进程都只读内存时,相安无事。当其中某个进程写内存时,CPU硬件检测到内存页是read-only的,于是触发页异常中断(page-fault),陷入kernel的一个中断例程。中断例程中,kernel就会把触发的异常的页复制一份,于是父子进程各自持有独立的一份。这个操作其实可以类比为写屏障,正常的读取是没问题的,当有写入时就会分裂。

    +

    CopyOnWrite的好处:

    1、减少分配和复制资源时带来的瞬时延迟;
    2、减少不必要的资源分配;
    CopyOnWrite的缺点:
    1、如果父子进程都需要进行大量的写操作,会产生大量的分页错误(页异常中断page-fault);

    +

    Redis中的CopyOnWrite

    Redis在持久化时,如果是采用BGSAVE命令或者BGREWRITEAOF的方式,那Redis会fork出一个子进程来读取数据,从而写到磁盘中。
    总体来看,Redis还是读操作比较多。如果子进程存在期间,发生了大量的写操作,那可能就会出现很多的分页错误(页异常中断page-fault),这样就得耗费不少性能在复制上。
    而在rehash阶段上,写操作是无法避免的。所以Redis在fork出子进程之后,将负载因子阈值提高,尽量减少写操作,避免不必要的内存写入操作,最大限度地节约内存。这里其实更巧妙了,在细节上去优化会产生大量页异常中断的情况。

    ]]>
    redis redis - 应用 - 过期策略
    - redis系列介绍八-淘汰策略 - /2020/04/18/redis%E7%B3%BB%E5%88%97%E4%BB%8B%E7%BB%8D%E5%85%AB/ - LRU

    说完了过期策略再说下淘汰策略,redis 使用的策略是近似的 lru 策略,为什么是近似的呢,先来看下什么是 lru,看下 wiki 的介绍
    ,图中一共有四个槽的存储空间,依次访问顺序是 A B C D E D F,
    当第一次访问 D 时刚好占满了坑,并且值是 4,这个值越小代表越先被淘汰,当 E 进来时,看了下已经存在的四个里 A 是最小的,代表是最早存在并且最早被访问的,那就先淘汰它了,E 占领了 A 的位置,并设置值为 4,然后又访问 D 了,D 已经存在了,不过又被访问到了,得更新值为 5,然后是 F 进来了,这时 B 是最老的且最近未被访问,所以就淘汰它了。以上是一个 lru 的简要说明,但是 redis 没有严格按照这个去执行,理由跟前面过期策略一致,最严格的过期策略应该是每个 key 都有对应的定时器,当超时时马上就能清除,但是问题是这样的cpu 消耗太大,所换来的内存效率不太值得,淘汰策略也是这样,类似于上图,要维护所有 key 的一个有序 lru 值,并且遍历将最小的淘汰,redis 采用的是抽样的形式,最初的实现方式是随机从 dict 抽取 5 个 key,淘汰一个 lru 最小的,这样子勉强能达到淘汰的目的,但是效果不是特别好,后面在 redis 3.0开始,将随机抽取改成了维护一个 pool,pool 的大小默认是 16,每次放入的都是按lru 值有序排列好,每一次放入的必须是 lru小于 pool 中最小的 lru 才允许放入,直到放满,后面再有新的就会将大的踢出。
    redis 针对这个策略的改进做了一个实验,这里借用下图

    首先背景是这图中的所有点都对应一个 redis 的 key,灰色部分加入后被顺序访问过一遍,然后又加入了绿色部分,那么按照理论的 lru 算法,应该是图左上中,浅灰色部分全都被淘汰,那么对比来看看图右上,左下和右下,左下表示 2.8 版本就是随机抽样 5 个 key,淘汰其中 lru 最小的一个,发现是灰色和浅灰色的都有被淘汰的,右下的 3.0 版本抽样数量不变的情况下,稍好一些,当 3.0 版本的抽样数量调整成 10 后,已经较为接近理论上的 lru 策略了,通过代码来简要分析下

    -
    typedef struct redisObject {
    -    unsigned type:4;
    -    unsigned encoding:4;
    -    unsigned lru:LRU_BITS; /* LRU time (relative to global lru_clock) or
    -                            * LFU data (least significant 8 bits frequency
    -                            * and most significant 16 bits access time). */
    -    int refcount;
    -    void *ptr;
    -} robj;
    -

    对于 lru 策略来说,lru 字段记录的就是redisObj 的LRU time,
    redis 在访问数据时,都会调用lookupKey方法

    -
    /* Low level key lookup API, not actually called directly from commands
    - * implementations that should instead rely on lookupKeyRead(),
    - * lookupKeyWrite() and lookupKeyReadWithFlags(). */
    -robj *lookupKey(redisDb *db, robj *key, int flags) {
    -    dictEntry *de = dictFind(db->dict,key->ptr);
    -    if (de) {
    -        robj *val = dictGetVal(de);
    -
    -        /* Update the access time for the ageing algorithm.
    -         * Don't do it if we have a saving child, as this will trigger
    -         * a copy on write madness. */
    -        if (!hasActiveChildProcess() && !(flags & LOOKUP_NOTOUCH)){
    -            if (server.maxmemory_policy & MAXMEMORY_FLAG_LFU) {
    -                // 这个是后面一节的内容
    -                updateLFU(val);
    -            } else {
    -                //  对于这个分支,访问时就会去更新 lru 值
    -                val->lru = LRU_CLOCK();
    -            }
    -        }
    -        return val;
    -    } else {
    -        return NULL;
    -    }
    -}
    -/* This function is used to obtain the current LRU clock.
    - * If the current resolution is lower than the frequency we refresh the
    - * LRU clock (as it should be in production servers) we return the
    - * precomputed value, otherwise we need to resort to a system call. */
    -unsigned int LRU_CLOCK(void) {
    -    unsigned int lruclock;
    -    if (1000/server.hz <= LRU_CLOCK_RESOLUTION) {
    -        // 如果服务器的频率server.hz大于 1 时就是用系统预设的 lruclock
    -        lruclock = server.lruclock;
    -    } else {
    -        lruclock = getLRUClock();
    -    }
    -    return lruclock;
    -}
    -/* Return the LRU clock, based on the clock resolution. This is a time
    - * in a reduced-bits format that can be used to set and check the
    - * object->lru field of redisObject structures. */
    -unsigned int getLRUClock(void) {
    -    return (mstime()/LRU_CLOCK_RESOLUTION) & LRU_CLOCK_MAX;
    -}
    -

    redis 处理命令是在这里processCommand

    -
    /* If this function gets called we already read a whole
    - * command, arguments are in the client argv/argc fields.
    - * processCommand() execute the command or prepare the
    - * server for a bulk read from the client.
    - *
    - * If C_OK is returned the client is still alive and valid and
    - * other operations can be performed by the caller. Otherwise
    - * if C_ERR is returned the client was destroyed (i.e. after QUIT). */
    -int processCommand(client *c) {
    -    moduleCallCommandFilters(c);
    -
    -    
    -
    -    /* Handle the maxmemory directive.
    -     *
    -     * Note that we do not want to reclaim memory if we are here re-entering
    -     * the event loop since there is a busy Lua script running in timeout
    -     * condition, to avoid mixing the propagation of scripts with the
    -     * propagation of DELs due to eviction. */
    -    if (server.maxmemory && !server.lua_timedout) {
    -        int out_of_memory = freeMemoryIfNeededAndSafe() == C_ERR;
    -        /* freeMemoryIfNeeded may flush slave output buffers. This may result
    -         * into a slave, that may be the active client, to be freed. */
    -        if (server.current_client == NULL) return C_ERR;
    -
    -        /* It was impossible to free enough memory, and the command the client
    -         * is trying to execute is denied during OOM conditions or the client
    -         * is in MULTI/EXEC context? Error. */
    -        if (out_of_memory &&
    -            (c->cmd->flags & CMD_DENYOOM ||
    -             (c->flags & CLIENT_MULTI &&
    -              c->cmd->proc != execCommand &&
    -              c->cmd->proc != discardCommand)))
    -        {
    -            flagTransaction(c);
    -            addReply(c, shared.oomerr);
    -            return C_OK;
    -        }
    -    }
    -}
    -

    这里只摘了部分,当需要清理内存时就会调用, 然后调用了freeMemoryIfNeededAndSafe

    -
    /* This is a wrapper for freeMemoryIfNeeded() that only really calls the
    - * function if right now there are the conditions to do so safely:
    - *
    - * - There must be no script in timeout condition.
    - * - Nor we are loading data right now.
    - *
    - */
    -int freeMemoryIfNeededAndSafe(void) {
    -    if (server.lua_timedout || server.loading) return C_OK;
    -    return freeMemoryIfNeeded();
    -}
    -/* This function is periodically called to see if there is memory to free
    - * according to the current "maxmemory" settings. In case we are over the
    - * memory limit, the function will try to free some memory to return back
    - * under the limit.
    - *
    - * The function returns C_OK if we are under the memory limit or if we
    - * were over the limit, but the attempt to free memory was successful.
    - * Otehrwise if we are over the memory limit, but not enough memory
    - * was freed to return back under the limit, the function returns C_ERR. */
    -int freeMemoryIfNeeded(void) {
    -    int keys_freed = 0;
    -    /* By default replicas should ignore maxmemory
    -     * and just be masters exact copies. */
    -    if (server.masterhost && server.repl_slave_ignore_maxmemory) return C_OK;
    -
    -    size_t mem_reported, mem_tofree, mem_freed;
    -    mstime_t latency, eviction_latency;
    -    long long delta;
    -    int slaves = listLength(server.slaves);
    -
    -    /* When clients are paused the dataset should be static not just from the
    -     * POV of clients not being able to write, but also from the POV of
    -     * expires and evictions of keys not being performed. */
    -    if (clientsArePaused()) return C_OK;
    -    if (getMaxmemoryState(&mem_reported,NULL,&mem_tofree,NULL) == C_OK)
    -        return C_OK;
    -
    -    mem_freed = 0;
    +    redis数据结构介绍三-第三部分 整数集合
    +    /2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/
    +    redis中对于 set 其实有两种处理,对于元素均为整型,并且元素数目较少时,使用 intset 作为底层数据结构,否则使用 dict 作为底层数据结构,先看一下代码先

    +
    typedef struct intset {
    +    // 编码方式
    +    uint32_t encoding;
    +    // 集合包含的元素数量
    +    uint32_t length;
    +    // 保存元素的数组
    +    int8_t contents[];
    +} intset;
     
    -    if (server.maxmemory_policy == MAXMEMORY_NO_EVICTION)
    -        goto cant_free; /* We need to free memory, but policy forbids. */
    +/* Note that these encodings are ordered, so:
    + * INTSET_ENC_INT16 < INTSET_ENC_INT32 < INTSET_ENC_INT64. */
    +#define INTSET_ENC_INT16 (sizeof(int16_t))
    +#define INTSET_ENC_INT32 (sizeof(int32_t))
    +#define INTSET_ENC_INT64 (sizeof(int64_t))
    +

    一眼看,为啥整型还需要编码,然后 int8_t 怎么能存下大整形呢,带着这些疑问,我们一步步分析下去,这里的编码其实指的是这个整型集合里存的究竟是多大的整型,16 位,还是 32 位,还是 64 位,结构体下面的宏定义就是表示了 encoding 的可能取值,INTSET_ENC_INT16 表示每个元素用2个字节存储,INTSET_ENC_INT32 表示每个元素用4个字节存储,INTSET_ENC_INT64 表示每个元素用8个字节存储。因此,intset中存储的整数最多只能占用64bit。length 就是正常的表示集合中元素的数量。最奇怪的应该就是这个 contents 了,是个 int8_t 的数组,那放毛线数据啊,最小的都有 16 位,这里我在看代码和《redis 设计与实现》的时候也有点懵逼,后来查了下发现这是个比较取巧的用法,这里我用自己的理解表述一下,先看看 8,16,32,64 的关系,一眼看就知道都是 2 的 N 次,并且呈两倍关系,而且 8 位刚好一个字节,所以呢其实这里的contents 不是个常规意义上的 int8_t 类型的数组,而是个柔性数组。看下 wiki 的定义

    +
    +

    Flexible array members1 were introduced in the C99 standard of the C programming language (in particular, in section §6.7.2.1, item 16, page 103).2 It is a member of a struct, which is an array without a given dimension. It must be the last member of such a struct and it must be accompanied by at least one other member, as in the following example:

    +
    +
    struct vectord {
    +    size_t len;
    +    double arr[]; // the flexible array member must be last
    +};
    +

    在初始化这个 intset 的时候,这个contents数组是不占用空间的,后面的反正用到了申请,那么这里就有一个问题,给出了三种可能的 encoding 值,他们能随便换吗,显然不行,首先在 intset 中数据的存放是有序的,这个有部分原因是方便二分查找,然后存放数据其实随着数据的大小不同会有一个升级的过程,看下图

    新创建的intset只有一个header,总共8个字节。其中encoding = 2, length = 0, 类型都是uint32_t,各占 4 字节,添加15, 5两个元素之后,因为它们是比较小的整数,都能使用2个字节表示,所以encoding不变,值还是2,也就是默认的 INTSET_ENC_INT16,当添加32768的时候,它不再能用2个字节来表示了(2个字节能表达的数据范围是-215~215-1,而32768等于215,超出范围了),因此encoding必须升级到INTSET_ENC_INT32(值为4),即用4个字节表示一个元素。在添加每个元素的过程中,intset始终保持从小到大有序。与ziplist类似,intset也是按小端(little endian)模式存储的(参见维基百科词条Endianness)。比如,在上图中intset添加完所有数据之后,表示encoding字段的4个字节应该解释成0x00000004,而第4个数据应该解释成0x00008000 = 32768

    +]]>
    + + Redis + 数据结构 + 源码 + C + Redis + + + redis + 数据结构 + 源码 + + + + redis数据结构介绍二-第二部分 跳表 + /2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ + 跳表 skiplist

    跳表是个在我们日常的代码中不太常用到的数据结构,相对来讲就没有像数组,链表,字典,散列,树等结构那么熟悉,所以就从头开始分析下,首先是链表,跳表跟链表都有个表字(太硬扯了我🤦‍♀️),注意这是个有序链表

    如上图,在这个链表里如果我要找到 23,是不是我需要从3,5,9开始一直往后找直到找到 23,也就是说时间复杂度是 O(N),N 的一次幂复杂度,那么我们来看看第二个

    这个结构跟原先有点不一样,它给链表中偶数位的节点又加了一个指针把它们链接起来,这样子当我们要寻找 23 的时候就可以从原来的一个个往下找变成跳着找,先找到 5,然后是 10,接着是 19,然后是 28,这时候发现 28 比 23 大了,那我在退回到 19,然后从下一层原来的链表往前找,

    这里毛估估是不是前面的节点我就少找了一半,有那么点二分法的意思。
    前面的其实是跳表的引子,真正的跳表其实不是这样,因为上面的其实有个比较大的问题,就是插入一个元素后需要调整每个元素的指针,在 redis 中的跳表其实是做了个随机层数的优化,因为沿着前面的例子,其实当数据量很大的时候,是不是层数越多,其查询效率越高,但是随着层数变多,要保持这种严格的层数规则其实也会增大处理复杂度,所以 redis 插入每个元素的时候都是使用随机的方式,看一眼代码

    +
    /* ZSETs use a specialized version of Skiplists */
    +typedef struct zskiplistNode {
    +    sds ele;
    +    double score;
    +    struct zskiplistNode *backward;
    +    struct zskiplistLevel {
    +        struct zskiplistNode *forward;
    +        unsigned long span;
    +    } level[];
    +} zskiplistNode;
     
    -    latencyStartMonitor(latency);
    -    while (mem_freed < mem_tofree) {
    -        int j, k, i;
    -        static unsigned int next_db = 0;
    -        sds bestkey = NULL;
    -        int bestdbid;
    -        redisDb *db;
    -        dict *dict;
    -        dictEntry *de;
    +typedef struct zskiplist {
    +    struct zskiplistNode *header, *tail;
    +    unsigned long length;
    +    int level;
    +} zskiplist;
     
    -        if (server.maxmemory_policy & (MAXMEMORY_FLAG_LRU|MAXMEMORY_FLAG_LFU) ||
    -            server.maxmemory_policy == MAXMEMORY_VOLATILE_TTL)
    -        {
    -            struct evictionPoolEntry *pool = EvictionPoolLRU;
    +typedef struct zset {
    +    dict *dict;
    +    zskiplist *zsl;
    +} zset;
    +

    忘了说了,redis 是把 skiplist 跳表用在 zset 里,zset 是个有序的集合,可以看到 zskiplist 就是个跳表的结构,里面用 header 保存跳表的表头,tail 保存表尾,还有长度和最大层级,具体的跳表节点元素使用 zskiplistNode 表示,里面包含了 sds 类型的元素值,double 类型的分值,用来排序,一个 backward 后向指针和一个 zskiplistLevel 数组,每个 level 包含了一个前向指针,和一个 span,span 表示的是跳表前向指针的跨度,这里再补充一点,前面说了为了灵活这个跳表的新增修改,redis 使用了随机层高的方式插入新节点,但是如果所有节点都随机到很高的层级或者所有都很低的话,跳表的效率优势就会减小,所以 redis 使用了个小技巧,贴下代码

    +
    #define ZSKIPLIST_P 0.25      /* Skiplist P = 1/4 */
    +int zslRandomLevel(void) {
    +    int level = 1;
    +    while ((random()&0xFFFF) < (ZSKIPLIST_P * 0xFFFF))
    +        level += 1;
    +    return (level<ZSKIPLIST_MAXLEVEL) ? level : ZSKIPLIST_MAXLEVEL;
    +}
    +

    当随机值跟0xFFFF进行与操作小于ZSKIPLIST_P * 0xFFFF时才会增大 level 的值,因此保持了一个相对递减的概率
    可以简单分析下,当 random() 的值小于 0xFFFF 的 1/4,才会 level + 1,就意味着当有 1 - 1/4也就是3/4的概率是直接跳出,所以一层的概率是3/4,也就是 1-P,二层的概率是 P*(1-P),三层的概率是 P² * (1-P) 依次递推。

    +]]>
    + + Redis + 数据结构 + 源码 + C + Redis + + + redis + 数据结构 + 源码 + +
    + + redis数据结构介绍五-第五部分 对象 + /2020/01/20/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%94/ + 前面说了这么些数据结构,其实大家对于 redis 最初的印象应该就是个 key-value 的缓存,类似于 memcache,redis 其实也是个 key-value,key 还是一样的字符串,或者说就是用 redis 自己的动态字符串实现,但是 value 其实就是前面说的那些数据结构,差不多快说完了,还有个 quicklist 后面还有一篇,这里先介绍下 redis 对于这些不同类型的 value 是怎么实现的,首先看下 redisObject 的源码头文件

    +
    /* The actual Redis Object */
    +#define OBJ_STRING 0    /* String object. */
    +#define OBJ_LIST 1      /* List object. */
    +#define OBJ_SET 2       /* Set object. */
    +#define OBJ_ZSET 3      /* Sorted set object. */
    +#define OBJ_HASH 4      /* Hash object. */
    +/*
    + * Objects encoding. Some kind of objects like Strings and Hashes can be
    + * internally represented in multiple ways. The 'encoding' field of the object
    + * is set to one of this fields for this object. */
    +#define OBJ_ENCODING_RAW 0     /* Raw representation */
    +#define OBJ_ENCODING_INT 1     /* Encoded as integer */
    +#define OBJ_ENCODING_HT 2      /* Encoded as hash table */
    +#define OBJ_ENCODING_ZIPMAP 3  /* Encoded as zipmap */
    +#define OBJ_ENCODING_LINKEDLIST 4 /* No longer used: old list encoding. */
    +#define OBJ_ENCODING_ZIPLIST 5 /* Encoded as ziplist */
    +#define OBJ_ENCODING_INTSET 6  /* Encoded as intset */
    +#define OBJ_ENCODING_SKIPLIST 7  /* Encoded as skiplist */
    +#define OBJ_ENCODING_EMBSTR 8  /* Embedded sds string encoding */
    +#define OBJ_ENCODING_QUICKLIST 9 /* Encoded as linked list of ziplists */
    +#define OBJ_ENCODING_STREAM 10 /* Encoded as a radix tree of listpacks */
     
    -            while(bestkey == NULL) {
    -                unsigned long total_keys = 0, keys;
    +#define LRU_BITS 24
    +#define LRU_CLOCK_MAX ((1<<LRU_BITS)-1) /* Max value of obj->lru */
    +#define LRU_CLOCK_RESOLUTION 1000 /* LRU clock resolution in ms */
     
    -                /* We don't want to make local-db choices when expiring keys,
    -                 * so to start populate the eviction pool sampling keys from
    -                 * every DB. */
    -                for (i = 0; i < server.dbnum; i++) {
    -                    db = server.db+i;
    -                    dict = (server.maxmemory_policy & MAXMEMORY_FLAG_ALLKEYS) ?
    -                            db->dict : db->expires;
    -                    if ((keys = dictSize(dict)) != 0) {
    -                        evictionPoolPopulate(i, dict, db->dict, pool);
    -                        total_keys += keys;
    -                    }
    -                }
    -                if (!total_keys) break; /* No keys to evict. */
    +#define OBJ_SHARED_REFCOUNT INT_MAX
    +typedef struct redisObject {
    +    unsigned type:4;
    +    unsigned encoding:4;
    +    unsigned lru:LRU_BITS; /* LRU time (relative to global lru_clock) or
    +                            * LFU data (least significant 8 bits frequency
    +                            * and most significant 16 bits access time). */
    +    int refcount;
    +    void *ptr;
    +} robj;
    +

    主体结构就是这个 redisObject,

    +
      +
    • type: 字段表示对象的类型,它对应的就是 redis 的对外暴露的,或者说用户可以使用的五种类型,OBJ_STRING, OBJ_LIST, OBJ_SET, OBJ_ZSET, OBJ_HASH
    • +
    • encoding: 字段表示这个对象在 redis 内部的编码方式,由OBJ_ENCODING_开头的 11 种
    • +
    • lru: 做LRU替换算法用,占24个bit
    • +
    • refcount: 引用计数。它允许robj对象在某些情况下被共享。
    • +
    • ptr: 指向底层实现数据结构的指针
      当 type 是 OBJ_STRING 时,表示类型是个 string,它的编码方式 encoding 可能有 OBJ_ENCODING_RAW,OBJ_ENCODING_INT,OBJ_ENCODING_EMBSTR 三种
      当 type 是 OBJ_LIST 时,表示类型是 list,它的编码方式 encoding 是 OBJ_ENCODING_QUICKLIST,对于早一些的版本,2.2这种可能还会使用 OBJ_ENCODING_ZIPLIST,OBJ_ENCODING_LINKEDLIST
      当 type 是 OBJ_SET 时,是个集合,但是得看具体元素的类型,有可能使用整数集合,OBJ_ENCODING_INTSET, 如果元素不全是整型或者数量超过一定限制,那么编码就是 OBJ_ENCODING_HT hash table 了
      当 type 是 OBJ_ZSET 时,是个有序集合,它底层有可能使用的是 OBJ_ENCODING_ZIPLIST 或者 OBJ_ENCODING_SKIPLIST
      当 type 是 OBJ_HASH 时,一开始也是 OBJ_ENCODING_ZIPLIST,然后当数据量大于 hash_max_ziplist_entries 时会转成 OBJ_ENCODING_HT
    • +
    +]]>
    + + Redis + 数据结构 + 源码 + C + Redis + + + redis + 数据结构 + 源码 + +
    + + redis数据结构介绍六 快表 + /2020/01/22/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E5%85%AD/ + 这应该是 redis 系列的最后一篇了,讲下快表,其实最前面讲的链表在早先的 redis 版本中也作为 list 的数据结构使用过,但是单纯的链表的缺陷之前也说了,插入便利,但是空间利用率低,并且不能进行二分查找等,检索效率低,ziplist 压缩表的产生也是同理,希望获得更好的性能,包括存储空间和访问性能等,原来我也不懂这个快表要怎么快,然后明白了一个道理,其实并没有什么银弹,只是大牛们会在适合的时候使用最适合的数据结构来实现性能的最大化,这里面有一招就是不同数据结构的组合调整,比如 Java 中的 HashMap,在链表节点数大于 8 时会转变成红黑树,以此提高访问效率,不费话了,回到快表,quicklist,这个数据结构主要使用在 list 类型中,如果我说其实这个 quicklist 就是个链表,可能大家不太会相信,但是事实上的确可以认为 quicklist 是个双向链表,看下代码

    +
    /* quicklistNode is a 32 byte struct describing a ziplist for a quicklist.
    + * We use bit fields keep the quicklistNode at 32 bytes.
    + * count: 16 bits, max 65536 (max zl bytes is 65k, so max count actually < 32k).
    + * encoding: 2 bits, RAW=1, LZF=2.
    + * container: 2 bits, NONE=1, ZIPLIST=2.
    + * recompress: 1 bit, bool, true if node is temporarry decompressed for usage.
    + * attempted_compress: 1 bit, boolean, used for verifying during testing.
    + * extra: 10 bits, free for future use; pads out the remainder of 32 bits */
    +typedef struct quicklistNode {
    +    struct quicklistNode *prev;
    +    struct quicklistNode *next;
    +    unsigned char *zl;
    +    unsigned int sz;             /* ziplist size in bytes */
    +    unsigned int count : 16;     /* count of items in ziplist */
    +    unsigned int encoding : 2;   /* RAW==1 or LZF==2 */
    +    unsigned int container : 2;  /* NONE==1 or ZIPLIST==2 */
    +    unsigned int recompress : 1; /* was this node previous compressed? */
    +    unsigned int attempted_compress : 1; /* node can't compress; too small */
    +    unsigned int extra : 10; /* more bits to steal for future usage */
    +} quicklistNode;
     
    -                /* Go backward from best to worst element to evict. */
    -                for (k = EVPOOL_SIZE-1; k >= 0; k--) {
    -                    if (pool[k].key == NULL) continue;
    -                    bestdbid = pool[k].dbid;
    +/* quicklistLZF is a 4+N byte struct holding 'sz' followed by 'compressed'.
    + * 'sz' is byte length of 'compressed' field.
    + * 'compressed' is LZF data with total (compressed) length 'sz'
    + * NOTE: uncompressed length is stored in quicklistNode->sz.
    + * When quicklistNode->zl is compressed, node->zl points to a quicklistLZF */
    +typedef struct quicklistLZF {
    +    unsigned int sz; /* LZF size in bytes*/
    +    char compressed[];
    +} quicklistLZF;
     
    -                    if (server.maxmemory_policy & MAXMEMORY_FLAG_ALLKEYS) {
    -                        de = dictFind(server.db[pool[k].dbid].dict,
    -                            pool[k].key);
    -                    } else {
    -                        de = dictFind(server.db[pool[k].dbid].expires,
    -                            pool[k].key);
    -                    }
    +/* quicklist is a 40 byte struct (on 64-bit systems) describing a quicklist.
    + * 'count' is the number of total entries.
    + * 'len' is the number of quicklist nodes.
    + * 'compress' is: -1 if compression disabled, otherwise it's the number
    + *                of quicklistNodes to leave uncompressed at ends of quicklist.
    + * 'fill' is the user-requested (or default) fill factor. */
    +typedef struct quicklist {
    +    quicklistNode *head;
    +    quicklistNode *tail;
    +    unsigned long count;        /* total count of all entries in all ziplists */
    +    unsigned long len;          /* number of quicklistNodes */
    +    int fill : 16;              /* fill factor for individual nodes */
    +    unsigned int compress : 16; /* depth of end nodes not to compress;0=off */
    +} quicklist;
    +

    粗略看下,quicklist 里有 head,tail, quicklistNode里有 prev,next 指针,是不是有链表的基本轮廓了,那么为啥这玩意要称为快表呢,快在哪,关键就在这个unsigned char *zl;zl 是不是前面又看到过,就是 ziplist ,这是什么鬼,链表里用压缩表,这不套娃么,先别急,回顾下前面说的 ziplist,ziplist 有哪些特点,内存利用率高,可以从表头快速定位到尾节点,节点可以从后往前找,但是有个缺点,就是从中间插入的效率比较低,需要整体往后移,这个其实是普通数组的优化版,但还是有数组的一些劣势,所以要真的快,是不是可以将链表跟数组真的结合起来。

    +

    ziplist

    这里有两个 redis 的配置参数,list-max-ziplist-sizelist-compress-depth,先来说第一个,既然快表是将链表跟压缩表数组结合起来使用,那么具体怎么用呢,比如我有一个 10 个元素的 list,那具体怎么放,每个 quicklistNode 里放多大的 ziplist,假如每个快表节点的 ziplist 只放一个元素,那么其实这就退化成了一个链表,如果 10 个元素放在一个 quicklistNode 的 ziplist 里,那就退化成了一个 ziplist,所以有了这个 list-max-ziplist-size,而且它还比较牛,能取正负值,当是正值时,对应的就是每个 quicklistNode 的 ziplist 中的元素个数,比如配置了 list-max-ziplist-size = 5,那么我刚才的 10 个元素的 list 就是一个两个 quicklistNode 组成的快表,每个 quicklistNode 中的 ziplist 包含了五个元素,当 list-max-ziplist-size取负值的时候,它限制了 ziplist 的字节数

    +
    size_t offset = (-fill) - 1;
    +if (offset < (sizeof(optimization_level) / sizeof(*optimization_level))) {
    +    if (sz <= optimization_level[offset]) {
    +        return 1;
    +    } else {
    +        return 0;
    +    }
    +} else {
    +    return 0;
    +}
     
    -                    /* Remove the entry from the pool. */
    -                    if (pool[k].key != pool[k].cached)
    -                        sdsfree(pool[k].key);
    -                    pool[k].key = NULL;
    -                    pool[k].idle = 0;
    +/* Optimization levels for size-based filling */
    +static const size_t optimization_level[] = {4096, 8192, 16384, 32768, 65536};
     
    -                    /* If the key exists, is our pick. Otherwise it is
    -                     * a ghost and we need to try the next element. */
    -                    if (de) {
    -                        bestkey = dictGetKey(de);
    -                        break;
    -                    } else {
    -                        /* Ghost... Iterate again. */
    -                    }
    -                }
    -            }
    -        }
    +/* Create a new quicklist.
    + * Free with quicklistRelease(). */
    +quicklist *quicklistCreate(void) {
    +    struct quicklist *quicklist;
     
    -        /* volatile-random and allkeys-random policy */
    -        else if (server.maxmemory_policy == MAXMEMORY_ALLKEYS_RANDOM ||
    -                 server.maxmemory_policy == MAXMEMORY_VOLATILE_RANDOM)
    -        {
    -            /* When evicting a random key, we try to evict a key for
    -             * each DB, so we use the static 'next_db' variable to
    -             * incrementally visit all DBs. */
    -            for (i = 0; i < server.dbnum; i++) {
    -                j = (++next_db) % server.dbnum;
    -                db = server.db+j;
    -                dict = (server.maxmemory_policy == MAXMEMORY_ALLKEYS_RANDOM) ?
    -                        db->dict : db->expires;
    -                if (dictSize(dict) != 0) {
    -                    de = dictGetRandomKey(dict);
    -                    bestkey = dictGetKey(de);
    -                    bestdbid = j;
    -                    break;
    -                }
    -            }
    -        }
    +    quicklist = zmalloc(sizeof(*quicklist));
    +    quicklist->head = quicklist->tail = NULL;
    +    quicklist->len = 0;
    +    quicklist->count = 0;
    +    quicklist->compress = 0;
    +    quicklist->fill = -2;
    +    return quicklist;
    +}
    +

    这个 fill 就是传进来的 list-max-ziplist-size, 具体对应的就是

    +
      +
    • -5: 每个quicklist节点上的ziplist大小不能超过64 Kb。(注:1kb => 1024 bytes)
    • +
    • -4: 每个quicklist节点上的ziplist大小不能超过32 Kb。
    • +
    • -3: 每个quicklist节点上的ziplist大小不能超过16 Kb。
    • +
    • -2: 每个quicklist节点上的ziplist大小不能超过8 Kb。(-2是Redis给出的默认值)也就是上面的 quicklist->fill = -2;
    • +
    • -1: 每个quicklist节点上的ziplist大小不能超过4 Kb。
    • +
    +

    压缩

    list-compress-depth这个参数呢是用来配置压缩的,等等压缩是为啥,不是里面已经是压缩表了么,大牛们就是为了性能殚精竭虑,这里考虑到的是一个场景,一般状况下,list 都是两端的访问频率比较高,那么是不是可以对中间的数据进行压缩,那么这个参数就是用来表示

    +
    /* depth of end nodes not to compress;0=off */
    +
      +
    • 0,代表不压缩,默认值
    • +
    • 1,两端各一个节点不压缩
    • +
    • 2,两端各两个节点不压缩
    • +
    • … 依次类推
      压缩后的 ziplist 就会变成 quicklistLZF,然后替换 zl 指针,这里使用的是 LZF 压缩算法,压缩后的 quicklistLZF 中的 compressed 也是个柔性数组,压缩后的 ziplist 整个就放进这个柔性数组
    • +
    +

    插入过程

    简单说下插入元素的过程

    +
    /* Wrapper to allow argument-based switching between HEAD/TAIL pop */
    +void quicklistPush(quicklist *quicklist, void *value, const size_t sz,
    +                   int where) {
    +    if (where == QUICKLIST_HEAD) {
    +        quicklistPushHead(quicklist, value, sz);
    +    } else if (where == QUICKLIST_TAIL) {
    +        quicklistPushTail(quicklist, value, sz);
    +    }
    +}
     
    -        /* Finally remove the selected key. */
    -        if (bestkey) {
    -            db = server.db+bestdbid;
    -            robj *keyobj = createStringObject(bestkey,sdslen(bestkey));
    -            propagateExpire(db,keyobj,server.lazyfree_lazy_eviction);
    -            /* We compute the amount of memory freed by db*Delete() alone.
    -             * It is possible that actually the memory needed to propagate
    -             * the DEL in AOF and replication link is greater than the one
    -             * we are freeing removing the key, but we can't account for
    -             * that otherwise we would never exit the loop.
    -             *
    -             * AOF and Output buffer memory will be freed eventually so
    -             * we only care about memory used by the key space. */
    -            delta = (long long) zmalloc_used_memory();
    -            latencyStartMonitor(eviction_latency);
    -            if (server.lazyfree_lazy_eviction)
    -                dbAsyncDelete(db,keyobj);
    -            else
    -                dbSyncDelete(db,keyobj);
    -            latencyEndMonitor(eviction_latency);
    -            latencyAddSampleIfNeeded("eviction-del",eviction_latency);
    -            latencyRemoveNestedEvent(latency,eviction_latency);
    -            delta -= (long long) zmalloc_used_memory();
    -            mem_freed += delta;
    -            server.stat_evictedkeys++;
    -            notifyKeyspaceEvent(NOTIFY_EVICTED, "evicted",
    -                keyobj, db->id);
    -            decrRefCount(keyobj);
    -            keys_freed++;
    +/* Add new entry to head node of quicklist.
    + *
    + * Returns 0 if used existing head.
    + * Returns 1 if new head created. */
    +int quicklistPushHead(quicklist *quicklist, void *value, size_t sz) {
    +    quicklistNode *orig_head = quicklist->head;
    +    if (likely(
    +            _quicklistNodeAllowInsert(quicklist->head, quicklist->fill, sz))) {
    +        quicklist->head->zl =
    +            ziplistPush(quicklist->head->zl, value, sz, ZIPLIST_HEAD);
    +        quicklistNodeUpdateSz(quicklist->head);
    +    } else {
    +        quicklistNode *node = quicklistCreateNode();
    +        node->zl = ziplistPush(ziplistNew(), value, sz, ZIPLIST_HEAD);
     
    -            /* When the memory to free starts to be big enough, we may
    -             * start spending so much time here that is impossible to
    -             * deliver data to the slaves fast enough, so we force the
    -             * transmission here inside the loop. */
    -            if (slaves) flushSlavesOutputBuffers();
    +        quicklistNodeUpdateSz(node);
    +        _quicklistInsertNodeBefore(quicklist, quicklist->head, node);
    +    }
    +    quicklist->count++;
    +    quicklist->head->count++;
    +    return (orig_head != quicklist->head);
    +}
     
    -            /* Normally our stop condition is the ability to release
    -             * a fixed, pre-computed amount of memory. However when we
    -             * are deleting objects in another thread, it's better to
    -             * check, from time to time, if we already reached our target
    -             * memory, since the "mem_freed" amount is computed only
    -             * across the dbAsyncDelete() call, while the thread can
    -             * release the memory all the time. */
    -            if (server.lazyfree_lazy_eviction && !(keys_freed % 16)) {
    -                if (getMaxmemoryState(NULL,NULL,NULL,NULL) == C_OK) {
    -                    /* Let's satisfy our stop condition. */
    -                    mem_freed = mem_tofree;
    -                }
    -            }
    -        } else {
    -            latencyEndMonitor(latency);
    -            latencyAddSampleIfNeeded("eviction-cycle",latency);
    -            goto cant_free; /* nothing to free... */
    -        }
    -    }
    -    latencyEndMonitor(latency);
    -    latencyAddSampleIfNeeded("eviction-cycle",latency);
    -    return C_OK;
    +/* Add new entry to tail node of quicklist.
    + *
    + * Returns 0 if used existing tail.
    + * Returns 1 if new tail created. */
    +int quicklistPushTail(quicklist *quicklist, void *value, size_t sz) {
    +    quicklistNode *orig_tail = quicklist->tail;
    +    if (likely(
    +            _quicklistNodeAllowInsert(quicklist->tail, quicklist->fill, sz))) {
    +        quicklist->tail->zl =
    +            ziplistPush(quicklist->tail->zl, value, sz, ZIPLIST_TAIL);
    +        quicklistNodeUpdateSz(quicklist->tail);
    +    } else {
    +        quicklistNode *node = quicklistCreateNode();
    +        node->zl = ziplistPush(ziplistNew(), value, sz, ZIPLIST_TAIL);
     
    -cant_free:
    -    /* We are here if we are not able to reclaim memory. There is only one
    -     * last thing we can try: check if the lazyfree thread has jobs in queue
    -     * and wait... */
    -    while(bioPendingJobsOfType(BIO_LAZY_FREE)) {
    -        if (((mem_reported - zmalloc_used_memory()) + mem_freed) >= mem_tofree)
    -            break;
    -        usleep(1000);
    +        quicklistNodeUpdateSz(node);
    +        _quicklistInsertNodeAfter(quicklist, quicklist->tail, node);
         }
    -    return C_ERR;
    -}
    -

    这里就是根据具体策略去淘汰 key,首先是要往 pool 更新 key,更新key 的方法是evictionPoolPopulate

    -
    void evictionPoolPopulate(int dbid, dict *sampledict, dict *keydict, struct evictionPoolEntry *pool) {
    -    int j, k, count;
    -    dictEntry *samples[server.maxmemory_samples];
    -
    -    count = dictGetSomeKeys(sampledict,samples,server.maxmemory_samples);
    -    for (j = 0; j < count; j++) {
    -        unsigned long long idle;
    -        sds key;
    -        robj *o;
    -        dictEntry *de;
    -
    -        de = samples[j];
    -        key = dictGetKey(de);
    -
    -        /* If the dictionary we are sampling from is not the main
    -         * dictionary (but the expires one) we need to lookup the key
    -         * again in the key dictionary to obtain the value object. */
    -        if (server.maxmemory_policy != MAXMEMORY_VOLATILE_TTL) {
    -            if (sampledict != keydict) de = dictFind(keydict, key);
    -            o = dictGetVal(de);
    -        }
    +    quicklist->count++;
    +    quicklist->tail->count++;
    +    return (orig_tail != quicklist->tail);
    +}
     
    -        /* Calculate the idle time according to the policy. This is called
    -         * idle just because the code initially handled LRU, but is in fact
    -         * just a score where an higher score means better candidate. */
    -        if (server.maxmemory_policy & MAXMEMORY_FLAG_LRU) {
    -            idle = estimateObjectIdleTime(o);
    -        } else if (server.maxmemory_policy & MAXMEMORY_FLAG_LFU) {
    -            /* When we use an LRU policy, we sort the keys by idle time
    -             * so that we expire keys starting from greater idle time.
    -             * However when the policy is an LFU one, we have a frequency
    -             * estimation, and we want to evict keys with lower frequency
    -             * first. So inside the pool we put objects using the inverted
    -             * frequency subtracting the actual frequency to the maximum
    -             * frequency of 255. */
    -            idle = 255-LFUDecrAndReturn(o);
    -        } else if (server.maxmemory_policy == MAXMEMORY_VOLATILE_TTL) {
    -            /* In this case the sooner the expire the better. */
    -            idle = ULLONG_MAX - (long)dictGetVal(de);
    -        } else {
    -            serverPanic("Unknown eviction policy in evictionPoolPopulate()");
    -        }
    +/* Wrappers for node inserting around existing node. */
    +REDIS_STATIC void _quicklistInsertNodeBefore(quicklist *quicklist,
    +                                             quicklistNode *old_node,
    +                                             quicklistNode *new_node) {
    +    __quicklistInsertNode(quicklist, old_node, new_node, 0);
    +}
     
    -        /* Insert the element inside the pool.
    -         * First, find the first empty bucket or the first populated
    -         * bucket that has an idle time smaller than our idle time. */
    -        k = 0;
    -        while (k < EVPOOL_SIZE &&
    -               pool[k].key &&
    -               pool[k].idle < idle) k++;
    -        if (k == 0 && pool[EVPOOL_SIZE-1].key != NULL) {
    -            /* Can't insert if the element is < the worst element we have
    -             * and there are no empty buckets. */
    -            continue;
    -        } else if (k < EVPOOL_SIZE && pool[k].key == NULL) {
    -            /* Inserting into empty position. No setup needed before insert. */
    -        } else {
    -            /* Inserting in the middle. Now k points to the first element
    -             * greater than the element to insert.  */
    -            if (pool[EVPOOL_SIZE-1].key == NULL) {
    -                /* Free space on the right? Insert at k shifting
    -                 * all the elements from k to end to the right. */
    +REDIS_STATIC void _quicklistInsertNodeAfter(quicklist *quicklist,
    +                                            quicklistNode *old_node,
    +                                            quicklistNode *new_node) {
    +    __quicklistInsertNode(quicklist, old_node, new_node, 1);
    +}
     
    -                /* Save SDS before overwriting. */
    -                sds cached = pool[EVPOOL_SIZE-1].cached;
    -                memmove(pool+k+1,pool+k,
    -                    sizeof(pool[0])*(EVPOOL_SIZE-k-1));
    -                pool[k].cached = cached;
    -            } else {
    -                /* No free space on right? Insert at k-1 */
    -                k--;
    -                /* Shift all elements on the left of k (included) to the
    -                 * left, so we discard the element with smaller idle time. */
    -                sds cached = pool[0].cached; /* Save SDS before overwriting. */
    -                if (pool[0].key != pool[0].cached) sdsfree(pool[0].key);
    -                memmove(pool,pool+1,sizeof(pool[0])*k);
    -                pool[k].cached = cached;
    -            }
    +/* Insert 'new_node' after 'old_node' if 'after' is 1.
    + * Insert 'new_node' before 'old_node' if 'after' is 0.
    + * Note: 'new_node' is *always* uncompressed, so if we assign it to
    + *       head or tail, we do not need to uncompress it. */
    +REDIS_STATIC void __quicklistInsertNode(quicklist *quicklist,
    +                                        quicklistNode *old_node,
    +                                        quicklistNode *new_node, int after) {
    +    if (after) {
    +        new_node->prev = old_node;
    +        if (old_node) {
    +            new_node->next = old_node->next;
    +            if (old_node->next)
    +                old_node->next->prev = new_node;
    +            old_node->next = new_node;
             }
    -
    -        /* Try to reuse the cached SDS string allocated in the pool entry,
    -         * because allocating and deallocating this object is costly
    -         * (according to the profiler, not my fantasy. Remember:
    -         * premature optimizbla bla bla bla. */
    -        int klen = sdslen(key);
    -        if (klen > EVPOOL_CACHED_SDS_SIZE) {
    -            pool[k].key = sdsdup(key);
    -        } else {
    -            memcpy(pool[k].cached,key,klen+1);
    -            sdssetlen(pool[k].cached,klen);
    -            pool[k].key = pool[k].cached;
    +        if (quicklist->tail == old_node)
    +            quicklist->tail = new_node;
    +    } else {
    +        new_node->next = old_node;
    +        if (old_node) {
    +            new_node->prev = old_node->prev;
    +            if (old_node->prev)
    +                old_node->prev->next = new_node;
    +            old_node->prev = new_node;
             }
    -        pool[k].idle = idle;
    -        pool[k].dbid = dbid;
    +        if (quicklist->head == old_node)
    +            quicklist->head = new_node;
         }
    -}
    -

    Redis随机选择maxmemory_samples数量的key,然后计算这些key的空闲时间idle time,当满足条件时(比pool中的某些键的空闲时间还大)就可以进poolpool更新之后,就淘汰pool中空闲时间最大的键。

    -

    estimateObjectIdleTime用来计算Redis对象的空闲时间:

    -
    /* Given an object returns the min number of milliseconds the object was never
    - * requested, using an approximated LRU algorithm. */
    -unsigned long long estimateObjectIdleTime(robj *o) {
    -    unsigned long long lruclock = LRU_CLOCK();
    -    if (lruclock >= o->lru) {
    -        return (lruclock - o->lru) * LRU_CLOCK_RESOLUTION;
    -    } else {
    -        return (lruclock + (LRU_CLOCK_MAX - o->lru)) *
    -                    LRU_CLOCK_RESOLUTION;
    +    /* If this insert creates the only element so far, initialize head/tail. */
    +    if (quicklist->len == 0) {
    +        quicklist->head = quicklist->tail = new_node;
         }
    -}
    -

    空闲时间第一种是 lurclock 大于对象的 lru,那么就是减一下乘以精度,因为 lruclock 有可能是已经预生成的,所以会可能走下面这个

    -

    LFU

    上面介绍了LRU 的算法,但是考虑一种场景

    -
    ~~~~~A~~~~~A~~~~~A~~~~A~~~~~A~~~~~A~~|
    -~~B~~B~~B~~B~~B~~B~~B~~B~~B~~B~~B~~B~|
    -~~~~~~~~~~C~~~~~~~~~C~~~~~~~~~C~~~~~~|
    -~~~~~D~~~~~~~~~~D~~~~~~~~~D~~~~~~~~~D|
    -

    可以发现,当采用 lru 的淘汰策略的时候,D 是最新的,会被认为是最值得保留的,但是事实上还不如 A 跟 B,然后 antirez 大神就想到了LFU (Least Frequently Used) 这个算法, 显然对于上面的四个 key 的访问频率,保留优先级应该是 B > A > C = D
    那要怎么来实现这个 LFU 算法呢,其实像LRU,理想的情况就是维护个链表,把最新访问的放到头上去,但是这个会影响访问速度,注意到前面代码的应该可以看到,redisObject 的 lru 字段其实是两用的,当策略是 LFU 时,这个字段就另作他用了,它的 24 位长度被分成两部分

    -
          16 bits      8 bits
    -+----------------+--------+
    -+ Last decr time | LOG_C  |
    -+----------------+--------+
    -

    前16位字段是最后一次递减时间,因此Redis知道 上一次计数器递减,后8位是 计数器 counter。
    LFU 的主体策略就是当这个 key 被访问的次数越多频率越高他就越容易被保留下来,并且是最近被访问的频率越高。这其实有两个事情要做,一个是在访问的时候增加计数值,在一定长时间不访问时进行衰减,所以这里用了两个值,前 16 位记录上一次衰减的时间,后 8 位记录具体的计数值。
    Redis4.0之后为maxmemory_policy淘汰策略添加了两个LFU模式:

    -

    volatile-lfu:对有过期时间的key采用LFU淘汰策略
    allkeys-lfu:对全部key采用LFU淘汰策略
    还有2个配置可以调整LFU算法:

    -
    lfu-log-factor 10
    -lfu-decay-time 1
    -```  
    -`lfu-log-factor` 可以调整计数器counter的增长速度,lfu-log-factor越大,counter增长的越慢。
     
    -`lfu-decay-time`是一个以分钟为单位的数值,可以调整counter的减少速度
    -这里有个问题是 8 位大小够计么,访问一次加 1 的话的确不够,不过大神就是大神,才不会这么简单的加一。往下看代码
    -```C
    -/* Low level key lookup API, not actually called directly from commands
    - * implementations that should instead rely on lookupKeyRead(),
    - * lookupKeyWrite() and lookupKeyReadWithFlags(). */
    -robj *lookupKey(redisDb *db, robj *key, int flags) {
    -    dictEntry *de = dictFind(db->dict,key->ptr);
    -    if (de) {
    -        robj *val = dictGetVal(de);
    +    if (old_node)
    +        quicklistCompress(quicklist, old_node);
     
    -        /* Update the access time for the ageing algorithm.
    -         * Don't do it if we have a saving child, as this will trigger
    -         * a copy on write madness. */
    -        if (!hasActiveChildProcess() && !(flags & LOOKUP_NOTOUCH)){
    -            if (server.maxmemory_policy & MAXMEMORY_FLAG_LFU) {
    -                // 当淘汰策略是 LFU 时,就会调用这个updateLFU
    -                updateLFU(val);
    -            } else {
    -                val->lru = LRU_CLOCK();
    -            }
    -        }
    -        return val;
    -    } else {
    -        return NULL;
    -    }
    -}
    -

    updateLFU 这个其实个入口,调用了两个重要的方法

    -
    /* Update LFU when an object is accessed.
    - * Firstly, decrement the counter if the decrement time is reached.
    - * Then logarithmically increment the counter, and update the access time. */
    -void updateLFU(robj *val) {
    -    unsigned long counter = LFUDecrAndReturn(val);
    -    counter = LFULogIncr(counter);
    -    val->lru = (LFUGetTimeInMinutes()<<8) | counter;
    -}
    -

    首先来看看LFUDecrAndReturn,这个方法的作用是根据上一次衰减时间和系统配置的 lfu-decay-time 参数来确定需要将 counter 减去多少

    -
    /* If the object decrement time is reached decrement the LFU counter but
    - * do not update LFU fields of the object, we update the access time
    - * and counter in an explicit way when the object is really accessed.
    - * And we will times halve the counter according to the times of
    - * elapsed time than server.lfu_decay_time.
    - * Return the object frequency counter.
    - *
    - * This function is used in order to scan the dataset for the best object
    - * to fit: as we check for the candidate, we incrementally decrement the
    - * counter of the scanned objects if needed. */
    -unsigned long LFUDecrAndReturn(robj *o) {
    -    // 右移 8 位,拿到上次衰减时间
    -    unsigned long ldt = o->lru >> 8;
    -    // 对 255 做与操作,拿到 counter 值
    -    unsigned long counter = o->lru & 255;
    -    // 根据lfu_decay_time来算出过了多少个衰减周期
    -    unsigned long num_periods = server.lfu_decay_time ? LFUTimeElapsed(ldt) / server.lfu_decay_time : 0;
    -    if (num_periods)
    -        counter = (num_periods > counter) ? 0 : counter - num_periods;
    -    return counter;
    -}
    -

    然后是加,调用了LFULogIncr

    -
    /* Logarithmically increment a counter. The greater is the current counter value
    - * the less likely is that it gets really implemented. Saturate it at 255. */
    -uint8_t LFULogIncr(uint8_t counter) {
    -    // 最大值就是 255,到顶了就不加了
    -    if (counter == 255) return 255;
    -    // 生成个随机小数
    -    double r = (double)rand()/RAND_MAX;
    -    // 减去个基础值,LFU_INIT_VAL = 5,防止刚进来就被逐出
    -    double baseval = counter - LFU_INIT_VAL;
    -    // 如果是小于 0,
    -    if (baseval < 0) baseval = 0;
    -    // 如果 baseval 是 0,那么 p 就是 1了,后面 counter 直接加一,如果不是的话,得看系统参数lfu_log_factor,这个越大,除出来的 p 越小,那么 counter++的可能性也越小,这样子就把前面的疑问给解决了,不是直接+1 的
    -    double p = 1.0/(baseval*server.lfu_log_factor+1);
    -    if (r < p) counter++;
    -    return counter;
    -}
    -

    大概的变化速度可以参考

    -
    +--------+------------+------------+------------+------------+------------+
    -| factor | 100 hits   | 1000 hits  | 100K hits  | 1M hits    | 10M hits   |
    -+--------+------------+------------+------------+------------+------------+
    -| 0      | 104        | 255        | 255        | 255        | 255        |
    -+--------+------------+------------+------------+------------+------------+
    -| 1      | 18         | 49         | 255        | 255        | 255        |
    -+--------+------------+------------+------------+------------+------------+
    -| 10     | 10         | 18         | 142        | 255        | 255        |
    -+--------+------------+------------+------------+------------+------------+
    -| 100    | 8          | 11         | 49         | 143        | 255        |
    -+--------+------------+------------+------------+------------+------------+
    -

    简而言之就是 lfu_log_factor 越大变化的越慢

    -

    总结

    总结一下,redis 实现了近似的 lru 淘汰策略,通过增加了淘汰 key 的池子(pool),并且增大每次抽样的 key 的数量来将淘汰效果更进一步地接近于 lru,这是 lru 策略,但是对于前面举的一个例子,其实 lru 并不能保证 key 的淘汰就如我们预期,所以在后期又引入了 lfu 的策略,lfu的策略比较巧妙,复用了 redis 对象的 lru 字段,并且使用了factor 参数来控制计数器递增的速度,防止 8 位的计数器太早溢出。

    + quicklist->len++; +}
    +

    前面第一步先根据插入的是头还是尾选择不同的 push 函数,quicklistPushHead 或者 quicklistPushTail,举例分析下从头插入的 quicklistPushHead,先判断当前的 quicklistNode 节点还能不能允许再往 ziplist 里添加元素,如果可以就添加,如果不允许就新建一个 quicklistNode,然后调用 _quicklistInsertNodeBefore 将节点插进去,具体插入quicklist节点的操作类似链表的插入。

    ]]>
    Redis @@ -9984,4323 +8876,4569 @@ uint8_t LFULogIncr(uint8_t counter) {
    - rust学习笔记-所有权三之切片 - /2021/05/16/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%B8%89%E4%B9%8B%E5%88%87%E7%89%87/ - 除了引用,Rust 还有另外一种不持有所有权的数据类型:切片(slice)。切片允许我们引用集合中某一段连续的元素序列,而不是整个集合。
    例如代码

    -
    fn main() {
    -    let mut s = String::from("hello world");
    -
    -    let word = first_word(&s);
    -
    -    s.clear();
    -
    -    // 这时候虽然 word 还是 5,但是 s 已经被清除了,所以就没存在的意义
    -}
    -

    这里其实我们就需要关注 s 的存在性,代码的逻辑合理性就需要额外去维护,此时我们就可以用切片

    -
    let s = String::from("hello world")
    -
    -let hello = &s[0..5];
    -let world = &s[6..11];
    -

    其实跟 Python 的list 之类的语法有点类似,当然里面还有些语法糖,比如可以直接用省略后面的数字表示直接引用到结尾

    -
    let hello = &s[0..];
    -

    甚至再进一步

    -
    let hello = &s[..];
    -

    使用了切片之后

    -
    fn first_word(s: &String) -> &str {
    -    let bytes = s.as_bytes();
    -
    -    for (i, &item) in bytes.iter().enumerate() {
    -        if item == b' ' {
    -            return &s[0..i];
    -        }
    -    }
    -
    -    &s[..]
    -}
    -fn main() {
    -    let mut s = String::from("hello world");
    -
    -    let word = first_word(&s);
    -
    -    s.clear(); // error!
    -
    -    println!("the first word is: {}", word);
    -}
    -

    那再执行 main 函数的时候就会抛错,因为 word 还是个切片,需要保证 s 的有效性,并且其实我们可以将函数申明成

    -
    fn first_word(s: &str) -> &str {
    -

    这样就既能处理&String 的情况,就是当成完整字符串的切片,也能处理普通的切片。
    其他类型的切片

    -
    let a = [1, 2, 3, 4, 5];
    -let slice = &a[1..3];
    -

    简单记录下,具体可以去看看这本书

    + redis数据结构介绍四-第四部分 压缩表 + /2020/01/19/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E5%9B%9B/ + 在 redis 中还有一类表型数据结构叫压缩表,ziplist,它的目的是替代链表,链表是个很容易理解的数据结构,双向链表有前后指针,有带头结点的有的不带,但是链表有个比较大的问题是相对于普通的数组,它的内存不连续,碎片化的存储,内存利用效率不高,而且指针寻址相对于直接使用偏移量的话,也有一定的效率劣势,当然这不是主要的原因,ziplist 设计的主要目的是让链表的内存使用更高效

    +
    +

    The ziplist is a specially encoded dually linked list that is designed to be very memory efficient.
    这是摘自 redis 源码中ziplist.c 文件的注释,也说明了原因,它的大概结构是这样子

    +
    +
    <zlbytes> <zltail> <zllen> <entry> <entry> ... <entry> <zlend>
    +

    其中
    <zlbytes>表示 ziplist 占用的字节总数,类型是uint32_t,32 位的无符号整型,当然表示的字节数也包含自己本身占用的 4 个
    <zltail> 类型也是是uint32_t,表示ziplist表中最后一项(entry)在ziplist中的偏移字节数。<zltail>的存在,使得我们可以很方便地找到最后一项(不用遍历整个ziplist),从而可以在ziplist尾端快速地执行push或pop操作。
    <uint16_t zllen> 表示ziplist 中的数据项个数,因为是 16 位,所以当数量超过所能表示的最大的数量,它的 16 位全会置为 1,但是真实的数量需要遍历整个 ziplist 才能知道
    <entry>是具体的数据项,后面解释
    <zlend> ziplist 的最后一个字节,固定是255。
    再看一下<entry>中的具体结构,

    +
    <prevlen> <encoding> <entry-data>
    +

    首先这个<prevlen>有两种情况,一种是前面的元素的长度,如果是小于等于 253的时候就用一个uint8_t 来表示前一元素的长度,如果大于的话他将占用五个字节,第一个字节是 254,即表示这个字节已经表示不下了,需要后面的四个字节帮忙表示
    <encoding>这个就比较复杂,把源码的注释放下面先看下

    +
    * |00pppppp| - 1 byte
    +*      String value with length less than or equal to 63 bytes (6 bits).
    +*      "pppppp" represents the unsigned 6 bit length.
    +* |01pppppp|qqqqqqqq| - 2 bytes
    +*      String value with length less than or equal to 16383 bytes (14 bits).
    +*      IMPORTANT: The 14 bit number is stored in big endian.
    +* |10000000|qqqqqqqq|rrrrrrrr|ssssssss|tttttttt| - 5 bytes
    +*      String value with length greater than or equal to 16384 bytes.
    +*      Only the 4 bytes following the first byte represents the length
    +*      up to 32^2-1. The 6 lower bits of the first byte are not used and
    +*      are set to zero.
    +*      IMPORTANT: The 32 bit number is stored in big endian.
    +* |11000000| - 3 bytes
    +*      Integer encoded as int16_t (2 bytes).
    +* |11010000| - 5 bytes
    +*      Integer encoded as int32_t (4 bytes).
    +* |11100000| - 9 bytes
    +*      Integer encoded as int64_t (8 bytes).
    +* |11110000| - 4 bytes
    +*      Integer encoded as 24 bit signed (3 bytes).
    +* |11111110| - 2 bytes
    +*      Integer encoded as 8 bit signed (1 byte).
    +* |1111xxxx| - (with xxxx between 0000 and 1101) immediate 4 bit integer.
    +*      Unsigned integer from 0 to 12. The encoded value is actually from
    +*      1 to 13 because 0000 and 1111 can not be used, so 1 should be
    +*      subtracted from the encoded 4 bit value to obtain the right value.
    +* |11111111| - End of ziplist special entry.
    +

    首先如果 encoding 的前两位是 00 的话代表这个元素是个 6 位的字符串,即直接将数据保存在 encoding 中,不消耗额外的<entry-data>,如果前两位是 01 的话表示是个 14 位的字符串,如果是 10 的话表示encoding 块之后的四个字节是存放字符串类型的数据,encoding 的剩余 6 位置 0。
    如果 encoding 的前两位是 11 的话表示这是个整型,具体的如果后两位是00的话,表示后面是个2字节的 int16_t 类型,如果是01的话,后面是个4字节的int32_t,如果是10的话后面是8字节的int64_t,如果是 11 的话后面是 3 字节的有符号整型,这些都要最后 4 位都是 0 的情况噢
    剩下当是11111110时,则表示是一个1 字节的有符号数,如果是 1111xxxx,其中xxxx在0000 到 1101 表示实际的 1 到 13,为啥呢,因为 0000 前面已经用过了,而 1110 跟 1111 也都有用了。
    看个具体的例子(上下有点对不齐,将就看)

    +
    [0f 00 00 00] [0c 00 00 00] [02 00] [00 f3] [02 f6] [ff]
    +|**zlbytes***|  |***zltail***|  |*zllen*|  |entry1 entry2|  |zlend|
    +

    第一部分代表整个 ziplist 有 15 个字节,zlbytes 自己占了 4 个 zltail 表示最后一个元素的偏移量,第 13 个字节起,zllen 表示有 2 个元素,第一个元素是00f3,00表示前一个元素长度是 0,本来前面就没元素(不过不知道这个能不能优化这一字节),然后是 f3,换成二进制就是11110011,对照上面的注释,是落在|1111xxxx|这个类型里,注意这个其实是用 0001 到 1101 也就是 1到 13 来表示 0到 12,所以 f3 应该就是 2,第一个元素是 2,第二个元素呢,02 代表前一个元素也就是刚才说的这个,占用 2 字节,f6 展开也是刚才的类型,实际是 5,ff 表示 ziplist 的结尾,所以这个 ziplist 里面是两个元素,2 跟 5

    ]]>
    - 语言 - Rust + Redis + 数据结构 + 源码 + C + Redis - Rust - 所有权 - 内存分布 - 新语言 - 可变引用 - 不可变引用 - 切片 + redis + 数据结构 + 源码
    - rust学习笔记-所有权一 - /2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ - 最近在看 《rust 权威指南》,还是难度比较大的,它里面的一些概念跟之前的用过的都有比较大的差别
    比起有 gc 的虚拟机语言,跟像 C 和 C++这种主动释放内存的,rust 有他的独特点,主要是有三条

    -
      -
    • Rust中的每一个值都有一个对应的变量作为它的所有者。
    • -
    • 在同一时间内,值有且只有一个所有者。
    • -
    • 当所有者离开自己的作用域时,它持有的值就会被释放掉。

      这里有两个重点:
    • -
    • s 在进入作用域后才变得有效
    • -
    • 它会保持自己的有效性直到自己离开作用域为止
    • -
    -

    然后看个案例

    -
    let x = 5;
    -let y = x;
    -

    这个其实有两种,一般可以认为比较多实现的会使用 copy on write 之类的,先让两个都指向同一个快 5 的存储,在发生变更后开始正式拷贝,但是涉及到内存处理的便利性,对于这类简单类型,可以直接拷贝
    但是对于非基础类型

    -
    let s1 = String::from("hello");
    -let s2 = s1;
    -
    -println!("{}, world!", s1);
    -

    有可能认为有两种内存分布可能
    先看下 string 的内存结构

    第一种可能是

    第二种是

    我们来尝试编译下

    发现有这个错误,其实在 rust 中let y = x这个行为的实质是移动,在赋值给 y 之后 x 就无效了

    这样子就不会造成脱离作用域时,对同一块内存区域的二次释放,如果需要复制,可以使用 clone 方法

    -
    let s1 = String::from("hello");
    -let s2 = s1.clone();
    -
    -println!("s1 = {}, s2 = {}", s1, s2);
    -

    这里其实会有点疑惑,为什么前面的x, y 的行为跟 s1, s2 的不一样,其实主要是基本类型和 string 这类的不定大小的类型的内存分配方式不同,x, y这类整型可以直接确定大小,可以直接在栈上分配,而像 string 和其他的变体结构体,其大小都是不能在编译时确定,所以需要在堆上进行分配

    + redis淘汰策略复习 + /2021/08/01/redis%E6%B7%98%E6%B1%B0%E7%AD%96%E7%95%A5%E5%A4%8D%E4%B9%A0/ + 前面复习了 redis 的过期策略,这里再复习下淘汰策略,淘汰跟过期的区别有时候会被混淆了,过期主要针对那些设置了过期时间的 key,应该说是一种逻辑策略,是主动的还是被动的加定时的,两种有各自的取舍,而淘汰也可以看成是一种保持系统稳定的策略,因为如果内存满了,不采取任何策略处理,那大概率会导致系统故障,之前其实主要从源码角度分析过redis 的 LRU 和 LFU,但这个是偏底层的实现,抠得比较细,那么具体的系统层面的配置是有哪些策略,来看下 redis labs 的介绍

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    PolicyDescription
    noeviction 不逐出Returns an error if the memory limit has been reached when trying to insert more data,插入更多数据时,如果内存达到上限了,返回错误
    allkeys-lru 所有的 key 使用 lru 逐出Evicts the least recently used keys out of all keys 在所有 key 中逐出最近最少使用的
    allkeys-lfu 所有的 key 使用 lfu 逐出Evicts the least frequently used keys out of all keys 在所有 key 中逐出最近最不频繁使用的
    allkeys-random 所有的 key 中随机逐出Randomly evicts keys out of all keys 在所有 key 中随机逐出
    volatile-lruEvicts the least recently used keys out of all keys with an “expire” field set 在设置了过期时间的 key 空间 expire 中使用 lru 策略逐出
    volatile-lfuEvicts the least frequently used keys out of all keys with an “expire” field set 在设置了过期时间的 key 空间 expire 中使用 lfu 策略逐出
    volatile-randomRandomly evicts keys with an “expire” field set 在设置了过期时间的 key 空间 expire 中随机逐出
    volatile-ttlEvicts the shortest time-to-live keys out of all keys with an “expire” field set.在设置了过期时间的 key 空间 expire 中逐出更早过期的
    +

    而在这其中默认使用的策略是 volatile-lru,对 lru 跟 lfu 想有更多的了解可以看下我之前的文章redis系列介绍八-淘汰策略

    ]]>
    - 语言 - Rust + redis - Rust - 所有权 - 内存分布 - 新语言 + redis + 淘汰策略 + 应用 + Evict
    - spark-little-tips - /2017/03/28/spark-little-tips/ - spark 的一些粗浅使用经验

    工作中学习使用了一下Spark做数据分析,主要是用spark的python接口,首先是pyspark.SparkContext(appName=xxx),这是初始化一个Spark应用实例或者说会话,不能重复,
    返回的实例句柄就可以调用textFile(path)读取文本文件,这里的文本文件可以是HDFS上的文本文件,也可以普通文本文件,但是需要在Spark的所有集群上都存在,否则会
    读取失败,parallelize则可以将python生成的集合数据读取后转换成rdd(A Resilient Distributed Dataset (RDD),一种spark下的基本抽象数据集),基于这个RDD就可以做
    数据的流式计算,例如map reduce,在Spark中可以非常方便地实现

    -

    简单的mapreduce word count示例

    textFile = sc.parallelize([(1,1), (2,1), (3,1), (4,1), (5,1),(1,1), (2,1), (3,1), (4,1), (5,1)])
    -data = textFile.reduceByKey(lambda x, y: x + y).collect()
    -for _ in data:
    -    print(_)
    - + redis系列介绍七-过期策略 + /2020/04/12/redis%E7%B3%BB%E5%88%97%E4%BB%8B%E7%BB%8D%E4%B8%83/ + 这一篇不再是数据结构介绍了,大致的数据结构基本都介绍了,这一篇主要是查漏补缺,或者说讲一些重要且基本的概念,也可能是经常被忽略的,很多讲 redis 的系列文章可能都会忽略,学习 redis 的时候也会,因为觉得源码学习就是讲主要的数据结构和“算法”学习了就好了。
    redis 的主要应用就是拿来作为高性能的缓存,那么缓存一般有些啥需要注意的,首先是访问速度,如果取得跟数据库一样快,那就没什么存在的意义,第二个是缓存的字面意思,我只是为了让数据读取快一些,通常大部分的场景这个是需要更新过期的,这里就把我要讲的第一点引出来了(真累,

    +

    redis过期策略

    redis 是如何过期缓存的,可以猜测下,最无脑的就是每个设置了过期时间的 key 都设个定时器,过期了就删除,这种显然消耗太大,清理地最及时,还有的就是 redis 正在采用的懒汉清理策略和定期清理
    懒汉策略就是在使用的时候去检查缓存是否过期,比如 get 操作时,先判断下这个 key 是否已经过期了,如果过期了就删掉,并且返回空,如果没过期则正常返回
    主要代码是

    +
    /* This function is called when we are going to perform some operation
    + * in a given key, but such key may be already logically expired even if
    + * it still exists in the database. The main way this function is called
    + * is via lookupKey*() family of functions.
    + *
    + * The behavior of the function depends on the replication role of the
    + * instance, because slave instances do not expire keys, they wait
    + * for DELs from the master for consistency matters. However even
    + * slaves will try to have a coherent return value for the function,
    + * so that read commands executed in the slave side will be able to
    + * behave like if the key is expired even if still present (because the
    + * master has yet to propagate the DEL).
    + *
    + * In masters as a side effect of finding a key which is expired, such
    + * key will be evicted from the database. Also this may trigger the
    + * propagation of a DEL/UNLINK command in AOF / replication stream.
    + *
    + * The return value of the function is 0 if the key is still valid,
    + * otherwise the function returns 1 if the key is expired. */
    +int expireIfNeeded(redisDb *db, robj *key) {
    +    if (!keyIsExpired(db,key)) return 0;
     
    -

    结果

    (3, 2)
    -(1, 2)
    -(4, 2)
    -(2, 2)
    -(5, 2)
    -]]> - - data analysis - - - spark - python - - - - spring event 介绍 - /2022/01/30/spring-event-%E4%BB%8B%E7%BB%8D/ - spring框架中如果想使用一些一部操作,除了依赖第三方中间件的消息队列,还可以用spring自己的event,简单介绍下使用方法
    首先我们可以建一个event,继承ApplicationEvent

    -
    
    -public class CustomSpringEvent extends ApplicationEvent {
    +    /* If we are running in the context of a slave, instead of
    +     * evicting the expired key from the database, we return ASAP:
    +     * the slave key expiration is controlled by the master that will
    +     * send us synthesized DEL operations for expired keys.
    +     *
    +     * Still we try to return the right information to the caller,
    +     * that is, 0 if we think the key should be still valid, 1 if
    +     * we think the key is expired at this time. */
    +    if (server.masterhost != NULL) return 1;
     
    -    private String message;
    +    /* Delete the key */
    +    server.stat_expiredkeys++;
    +    propagateExpire(db,key,server.lazyfree_lazy_expire);
    +    notifyKeyspaceEvent(NOTIFY_EXPIRED,
    +        "expired",key,db->id);
    +    return server.lazyfree_lazy_expire ? dbAsyncDelete(db,key) :
    +                                         dbSyncDelete(db,key);
    +}
     
    -    public CustomSpringEvent(Object source, String message) {
    -        super(source);
    -        this.message = message;
    -    }
    -    public String getMessage() {
    -        return message;
    -    }
    -}
    -

    这个 ApplicationEvent 其实也比较简单,内部就一个 Object 类型的 source,可以自行扩展,我们在自定义的这个 Event 里加了个 Message ,只是简单介绍下使用

    -
    public abstract class ApplicationEvent extends EventObject {
    -    private static final long serialVersionUID = 7099057708183571937L;
    -    private final long timestamp;
    +/* Check if the key is expired. */
    +int keyIsExpired(redisDb *db, robj *key) {
    +    mstime_t when = getExpire(db,key);
    +    mstime_t now;
     
    -    public ApplicationEvent(Object source) {
    -        super(source);
    -        this.timestamp = System.currentTimeMillis();
    -    }
    +    if (when < 0) return 0; /* No expire for this key */
     
    -    public ApplicationEvent(Object source, Clock clock) {
    -        super(source);
    -        this.timestamp = clock.millis();
    -    }
    +    /* Don't expire anything while loading. It will be done later. */
    +    if (server.loading) return 0;
     
    -    public final long getTimestamp() {
    -        return this.timestamp;
    -    }
    -}
    + /* If we are in the context of a Lua script, we pretend that time is + * blocked to when the Lua script started. This way a key can expire + * only the first time it is accessed and not in the middle of the + * script execution, making propagation to slaves / AOF consistent. + * See issue #1525 on Github for more information. */ + if (server.lua_caller) { + now = server.lua_time_start; + } + /* If we are in the middle of a command execution, we still want to use + * a reference time that does not change: in that case we just use the + * cached time, that we update before each call in the call() function. + * This way we avoid that commands such as RPOPLPUSH or similar, that + * may re-open the same key multiple times, can invalidate an already + * open object in a next call, if the next call will see the key expired, + * while the first did not. */ + else if (server.fixed_time_expire > 0) { + now = server.mstime; + } + /* For the other cases, we want to use the most fresh time we have. */ + else { + now = mstime(); + } -

    然后就是事件生产者和监听消费者

    -
    @Component
    -public class CustomSpringEventPublisher {
    +    /* The key expired if the current (virtual or real) time is greater
    +     * than the expire time of the key. */
    +    return now > when;
    +}
    +/* Return the expire time of the specified key, or -1 if no expire
    + * is associated with this key (i.e. the key is non volatile) */
    +long long getExpire(redisDb *db, robj *key) {
    +    dictEntry *de;
     
    -    @Resource
    -    private ApplicationEventPublisher applicationEventPublisher;
    +    /* No expire? return ASAP */
    +    if (dictSize(db->expires) == 0 ||
    +       (de = dictFind(db->expires,key->ptr)) == NULL) return -1;
     
    -    public void publishCustomEvent(final String message) {
    -        System.out.println("Publishing custom event. ");
    -        CustomSpringEvent customSpringEvent = new CustomSpringEvent(this, message);
    -        applicationEventPublisher.publishEvent(customSpringEvent);
    -    }
    -}
    -

    这里的 ApplicationEventPublisher 是 Spring 的方法接口

    -
    @FunctionalInterface
    -public interface ApplicationEventPublisher {
    -    default void publishEvent(ApplicationEvent event) {
    -        this.publishEvent((Object)event);
    -    }
    +    /* The entry was found in the expire dict, this means it should also
    +     * be present in the main dict (safety check). */
    +    serverAssertWithInfo(NULL,key,dictFind(db->dict,key->ptr) != NULL);
    +    return dictGetSignedIntegerVal(de);
    +}
    +

    这里有几点要注意的,第一是当惰性删除时会根据lazyfree_lazy_expire这个参数去判断是执行同步删除还是异步删除,另外一点是对于 slave,是不需要执行的,因为会在 master 过期时向 slave 发送 del 指令。
    光采用这个策略会有什么问题呢,假如一些key 一直未被访问,那这些 key 就不会过期了,导致一直被占用着内存,所以 redis 采取了懒汉式过期加定期过期策略,定期策略是怎么执行的呢

    +
    /* This function handles 'background' operations we are required to do
    + * incrementally in Redis databases, such as active key expiring, resizing,
    + * rehashing. */
    +void databasesCron(void) {
    +    /* Expire keys by random sampling. Not required for slaves
    +     * as master will synthesize DELs for us. */
    +    if (server.active_expire_enabled) {
    +        if (server.masterhost == NULL) {
    +            activeExpireCycle(ACTIVE_EXPIRE_CYCLE_SLOW);
    +        } else {
    +            expireSlaveKeys();
    +        }
    +    }
     
    -    void publishEvent(Object var1);
    -}
    -

    具体的是例如 org.springframework.context.support.AbstractApplicationContext#publishEvent(java.lang.Object, org.springframework.core.ResolvableType) 中的实现,后面可以展开讲讲

    -

    事件监听者:

    -
    @Component
    -public class CustomSpringEventListener implements ApplicationListener<CustomSpringEvent> {
    -    @Override
    -    public void onApplicationEvent(CustomSpringEvent event) {
    -        System.out.println("Received spring custom event - " + event.getMessage());
    -    }
    -}
    -

    这里的也是 spring 的一个方法接口

    -
    @FunctionalInterface
    -public interface ApplicationListener<E extends ApplicationEvent> extends EventListener {
    -    void onApplicationEvent(E var1);
    +    /* Defrag keys gradually. */
    +    activeDefragCycle();
     
    -    static <T> ApplicationListener<PayloadApplicationEvent<T>> forPayload(Consumer<T> consumer) {
    -        return (event) -> {
    -            consumer.accept(event.getPayload());
    -        };
    -    }
    -}
    + /* Perform hash tables rehashing if needed, but only if there are no + * other processes saving the DB on disk. Otherwise rehashing is bad + * as will cause a lot of copy-on-write of memory pages. */ + if (!hasActiveChildProcess()) { + /* We use global counters so if we stop the computation at a given + * DB we'll be able to start from the successive in the next + * cron loop iteration. */ + static unsigned int resize_db = 0; + static unsigned int rehash_db = 0; + int dbs_per_call = CRON_DBS_PER_CALL; + int j; -

    然后简单包个请求

    -
    
    -@RequestMapping(value = "/event", method = RequestMethod.GET)
    -@ResponseBody
    -public void event() {
    -    customSpringEventPublisher.publishCustomEvent("hello sprint event");
    -}
    + /* Don't test more DBs than we have. */ + if (dbs_per_call > server.dbnum) dbs_per_call = server.dbnum; -


    就能看到接收到消息了。

    -]]>
    - - Java - Spring - - - Java - Spring - Spring Event - -
    - - summary-ranges-228 - /2016/10/12/summary-ranges-228/ - problem

    Given a sorted integer array without duplicates, return the summary of its ranges.

    -

    For example, given [0,1,2,4,5,7], return ["0->2","4->5","7"].

    -

    题解

    每一个区间的起点nums[i]加上j是否等于nums[i+j]
    参考

    -

    Code

    class Solution {
    -public:
    -    vector<string> summaryRanges(vector<int>& nums) {
    -        int i = 0, j = 1, n;
    -        vector<string> res;
    -        n = nums.size();
    -        while(i < n){
    -            j = 1;
    -            while(j < n && nums[i+j] - nums[i] == j) j++;
    -            res.push_back(j <= 1 ? to_string(nums[i]) : to_string(nums[i]) + "->" + to_string(nums[i + j - 1]));
    -            i += j;
    +        /* Resize */
    +        for (j = 0; j < dbs_per_call; j++) {
    +            tryResizeHashTables(resize_db % server.dbnum);
    +            resize_db++;
             }
    -        return res;
    -    }
    -};
    ]]>
    - - leetcode - - - leetcode - c++ - -
    - - rust学习笔记-所有权二 - /2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%BA%8C/ - 这里需要说道函数和返回值了
    可以看书上的这个例子

    对于这种情况,当进入函数内部时,会把传入的变量的所有权转移进函数内部,如果最后还是要返回该变量,但是如果此时还要返回别的计算结果,就可能需要笨拙地使用元组

    -

    引用

    此时我们就可以用引用来解决这个问题

    -
    fn main() {
    -    let s1 = String::from("hello");
    -    let len = calculate_length(&s1);
    -
    -    println!("The length of '{}' is {}", s1, len);
    -}
    -fn calculate_length(s: &String) -> usize {
    -    s.len()
    -}
    -

    这里的&符号就是引用的语义,它们允许你在不获得所有权的前提下使用值

    由于引用不持有值的所有权,所以当引用离开当前作用域时,它指向的值也不会被丢弃

    -

    可变引用

    而当我们尝试对引用的字符串进行修改时

    -
    fn main() {
    -    let s1 = String::from("hello");
    -    change(&s1);
    -}
    -fn change(s: &String) {
    -    s.push_str(", world");
    -}
    -

    就会有以下报错,

    其实也很容易发现,毕竟没有 mut 指出这是可变引用,同时需要将 s1 改成 mut 可变的

    -
    fn main() {
    -    let mut s1 = String::from("hello");
    -    change(&mut s1);
    -}
    -
     
    -fn change(s: &mut String) {
    -    s.push_str(", world");
    -}
    -

    再看一个例子

    -
    fn main() {
    -    let mut s1 = String::from("hello");
    -    let r1 = &mut s1;
    -    let r2 = &mut s1;
    -}
    -

    这个例子在书里是会报错的,因为同时存在一个以上的可变引用,但是在我运行的版本里前面这段没有报错,只有当我真的要去更改的时候

    -
    fn main() {
    -    let mut s1 = String::from("hello");
    -    let mut r1 = &mut s1;
    -    let mut r2 = &mut s1;
    -    change(&mut r1);
    -    change(&mut r2);
    -}
    +        /* Rehash */
    +        if (server.activerehashing) {
    +            for (j = 0; j < dbs_per_call; j++) {
    +                int work_done = incrementallyRehash(rehash_db);
    +                if (work_done) {
    +                    /* If the function did some work, stop here, we'll do
    +                     * more at the next cron loop. */
    +                    break;
    +                } else {
    +                    /* If this db didn't need rehash, we'll try the next one. */
    +                    rehash_db++;
    +                    rehash_db %= server.dbnum;
    +                }
    +            }
    +        }
    +    }
    +}
    +/* Try to expire a few timed out keys. The algorithm used is adaptive and
    + * will use few CPU cycles if there are few expiring keys, otherwise
    + * it will get more aggressive to avoid that too much memory is used by
    + * keys that can be removed from the keyspace.
    + *
    + * Every expire cycle tests multiple databases: the next call will start
    + * again from the next db, with the exception of exists for time limit: in that
    + * case we restart again from the last database we were processing. Anyway
    + * no more than CRON_DBS_PER_CALL databases are tested at every iteration.
    + *
    + * The function can perform more or less work, depending on the "type"
    + * argument. It can execute a "fast cycle" or a "slow cycle". The slow
    + * cycle is the main way we collect expired cycles: this happens with
    + * the "server.hz" frequency (usually 10 hertz).
    + *
    + * However the slow cycle can exit for timeout, since it used too much time.
    + * For this reason the function is also invoked to perform a fast cycle
    + * at every event loop cycle, in the beforeSleep() function. The fast cycle
    + * will try to perform less work, but will do it much more often.
    + *
    + * The following are the details of the two expire cycles and their stop
    + * conditions:
    + *
    + * If type is ACTIVE_EXPIRE_CYCLE_FAST the function will try to run a
    + * "fast" expire cycle that takes no longer than EXPIRE_FAST_CYCLE_DURATION
    + * microseconds, and is not repeated again before the same amount of time.
    + * The cycle will also refuse to run at all if the latest slow cycle did not
    + * terminate because of a time limit condition.
    + *
    + * If type is ACTIVE_EXPIRE_CYCLE_SLOW, that normal expire cycle is
    + * executed, where the time limit is a percentage of the REDIS_HZ period
    + * as specified by the ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC define. In the
    + * fast cycle, the check of every database is interrupted once the number
    + * of already expired keys in the database is estimated to be lower than
    + * a given percentage, in order to avoid doing too much work to gain too
    + * little memory.
    + *
    + * The configured expire "effort" will modify the baseline parameters in
    + * order to do more work in both the fast and slow expire cycles.
    + */
     
    +#define ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP 20 /* Keys for each DB loop. */
    +#define ACTIVE_EXPIRE_CYCLE_FAST_DURATION 1000 /* Microseconds. */
    +#define ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC 25 /* Max % of CPU to use. */
    +#define ACTIVE_EXPIRE_CYCLE_ACCEPTABLE_STALE 10 /* % of stale keys after which
    +                                                   we do extra efforts. */
    +void activeExpireCycle(int type) {
    +    /* Adjust the running parameters according to the configured expire
    +     * effort. The default effort is 1, and the maximum configurable effort
    +     * is 10. */
    +    unsigned long
    +    effort = server.active_expire_effort-1, /* Rescale from 0 to 9. */
    +    config_keys_per_loop = ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP +
    +                           ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP/4*effort,
    +    config_cycle_fast_duration = ACTIVE_EXPIRE_CYCLE_FAST_DURATION +
    +                                 ACTIVE_EXPIRE_CYCLE_FAST_DURATION/4*effort,
    +    config_cycle_slow_time_perc = ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC +
    +                                  2*effort,
    +    config_cycle_acceptable_stale = ACTIVE_EXPIRE_CYCLE_ACCEPTABLE_STALE-
    +                                    effort;
     
    -fn change(s: &mut String) {
    -    s.push_str(", world");
    -}
    -


    这里可能就是具体版本在实现上的一个差异,我用的 rustc 是 1.44.0 版本
    其实上面的主要是由 rust 想要避免这类多重可变更导致的异常问题,总结下就是三个点

    -
      -
    • 两个或两个以上的指针同时同时访问同一空间
    • -
    • 其中至少有一个指针会想空间中写入数据
    • -
    • 没有同步数据访问的机制
      并且我们不能在拥有不可变引用的情况下创建可变引用
    • -
    -

    悬垂引用

    还有一点需要注意的就是悬垂引用

    -
    fn main() {
    -    let reference_to_nothing = dangle();
    -}
    +    /* This function has some global state in order to continue the work
    +     * incrementally across calls. */
    +    static unsigned int current_db = 0; /* Last DB tested. */
    +    static int timelimit_exit = 0;      /* Time limit hit in previous call? */
    +    static long long last_fast_cycle = 0; /* When last fast cycle ran. */
     
    -fn dangle() -> &String {
    -    let s = String::from("hello");
    -    &s
    -}
    -

    这里可以看到其实在 dangle函数返回后,这里的 s 理论上就离开了作用域,但是由于返回了 s 的引用,在 main 函数中就会拿着这个引用,就会出现如下错误

    -

    总结

    最后总结下

    -
      -
    • 在任何一个段给定的时间里,你要么只能拥有一个可变引用,要么只能拥有任意数量的不可变引用。
    • -
    • 引用总是有效的。
    • -
    -]]>
    - - 语言 - Rust - - - Rust - 所有权 - 内存分布 - 新语言 - 可变引用 - 不可变引用 - -
    - - swoole-websocket-test - /2016/07/13/swoole-websocket-test/ - 玩一下swoole的websocket

    WebSocket是HTML5开始提供的一种在单个TCP连接上进行全双工通讯的协议。WebSocket通信协议于2011年被IETF定为标准RFC 6455,WebSocketAPI被W3C定为标准。
    ,在web私信,im等应用较多。背景和优缺点可以参看wiki

    -

    环境准备

    因为swoole官方还不支持windows,所以需要装下linux,之前都是用ubuntu,
    这次就试一下centos7,还是满好看的,虽然虚拟机会默认最小安装,需要在安装
    时自己选择带gnome的,当然最小安装也是可以的,只是最后需要改下防火墙。
    然后是装下PHP,Nginx什么的,我是用Oneinstack,可以按需安装
    给做这个的大大点个赞。

    - + int j, iteration = 0; + int dbs_per_call = CRON_DBS_PER_CALL; + long long start = ustime(), timelimit, elapsed; -

    swoole

    1.install via pecl

    -
    pecl install swoole
    + /* When clients are paused the dataset should be static not just from the + * POV of clients not being able to write, but also from the POV of + * expires and evictions of keys not being performed. */ + if (clientsArePaused()) return; -

    2.install from source

    -
    sudo apt-get install php5-dev
    -git clone https://github.com/swoole/swoole-src.git
    -cd swoole-src
    -phpize
    -./configure
    -make && make install
    -

    3.add extension

    -
    extension = swoole.so
    + if (type == ACTIVE_EXPIRE_CYCLE_FAST) { + /* Don't start a fast cycle if the previous cycle did not exit + * for time limit, unless the percentage of estimated stale keys is + * too high. Also never repeat a fast cycle for the same period + * as the fast cycle total duration itself. */ + if (!timelimit_exit && + server.stat_expired_stale_perc < config_cycle_acceptable_stale) + return; -

    4.test extension

    -
    php -m | grep swoole
    -

    如果存在就代表安装成功啦

    -

    Exec

    实现代码看了这位仁兄的代码

    -

    还是贴一下代码
    服务端:

    -
    //创建websocket服务器对象,监听0.0.0.0:9502端口
    -$ws = new swoole_websocket_server("0.0.0.0", 9502);
    +        if (start < last_fast_cycle + (long long)config_cycle_fast_duration*2)
    +            return;
     
    -//监听WebSocket连接打开事件
    -$ws->on('open', function ($ws, $request) {
    -    $fd[] = $request->fd;
    -    $GLOBALS['fd'][] = $fd;
    -    //区别下当前用户
    -    $ws->push($request->fd, "hello user{$request->fd}, welcome\n"); 
    -});
    +        last_fast_cycle = start;
    +    }
     
    -//监听WebSocket消息事件
    -$ws->on('message', function ($ws, $frame) {
    -    $msg =  'from'.$frame->fd.":{$frame->data}\n";
    +    /* We usually should test CRON_DBS_PER_CALL per iteration, with
    +     * two exceptions:
    +     *
    +     * 1) Don't test more DBs than we have.
    +     * 2) If last time we hit the time limit, we want to scan all DBs
    +     * in this iteration, as there is work to do in some DB and we don't want
    +     * expired keys to use memory for too much time. */
    +    if (dbs_per_call > server.dbnum || timelimit_exit)
    +        dbs_per_call = server.dbnum;
     
    -    foreach($GLOBALS['fd'] as $aa){
    -        foreach($aa as $i){
    -            if($i != $frame->fd) {
    -                # code...
    -                $ws->push($i,$msg);
    -            }
    -        }
    -    }
    -});
    +    /* We can use at max 'config_cycle_slow_time_perc' percentage of CPU
    +     * time per iteration. Since this function gets called with a frequency of
    +     * server.hz times per second, the following is the max amount of
    +     * microseconds we can spend in this function. */
    +    timelimit = config_cycle_slow_time_perc*1000000/server.hz/100;
    +    timelimit_exit = 0;
    +    if (timelimit <= 0) timelimit = 1;
     
    -//监听WebSocket连接关闭事件
    -$ws->on('close', function ($ws, $fd) {
    -    echo "client-{$fd} is closed\n";
    -});
    +    if (type == ACTIVE_EXPIRE_CYCLE_FAST)
    +        timelimit = config_cycle_fast_duration; /* in microseconds. */
     
    -$ws->start();
    + /* Accumulate some global stats as we expire keys, to have some idea + * about the number of keys that are already logically expired, but still + * existing inside the database. */ + long total_sampled = 0; + long total_expired = 0; -

    客户端:

    -
    <!DOCTYPE html>
    -<html lang="en">
    -<head>
    -    <meta charset="UTF-8">
    -    <title>Title</title>
    -</head>
    -<body>
    -<div id="msg"></div>
    -<input type="text" id="text">
    -<input type="submit" value="发送数据" onclick="song()">
    -</body>
    -<script>
    -    var msg = document.getElementById("msg");
    -    var wsServer = 'ws://0.0.0.0:9502';
    -    //调用websocket对象建立连接:
    -    //参数:ws/wss(加密)://ip:port (字符串)
    -    var websocket = new WebSocket(wsServer);
    -    //onopen监听连接打开
    -    websocket.onopen = function (evt) {
    -        //websocket.readyState 属性:
    -        /*
    -        CONNECTING    0    The connection is not yet open.
    -        OPEN    1    The connection is open and ready to communicate.
    -        CLOSING    2    The connection is in the process of closing.
    -        CLOSED    3    The connection is closed or couldn't be opened.
    -        */
    -        msg.innerHTML = websocket.readyState;
    -    };
    +    for (j = 0; j < dbs_per_call && timelimit_exit == 0; j++) {
    +        /* Expired and checked in a single loop. */
    +        unsigned long expired, sampled;
     
    -    function song(){
    -        var text = document.getElementById('text').value;
    -        document.getElementById('text').value = '';
    -        //向服务器发送数据
    -        websocket.send(text);
    -    }
    -      //监听连接关闭
    -//    websocket.onclose = function (evt) {
    -//        console.log("Disconnected");
    -//    };
    +        redisDb *db = server.db+(current_db % server.dbnum);
     
    -    //onmessage 监听服务器数据推送
    -    websocket.onmessage = function (evt) {
    -        msg.innerHTML += evt.data +'<br>';
    -//        console.log('Retrieved data from server: ' + evt.data);
    -    };
    -//监听连接错误信息
    -//    websocket.onerror = function (evt, e) {
    -//        console.log('Error occured: ' + evt.data);
    -//    };
    +        /* Increment the DB now so we are sure if we run out of time
    +         * in the current DB we'll restart from the next. This allows to
    +         * distribute the time evenly across DBs. */
    +        current_db++;
     
    -</script>
    -</html>
    + /* Continue to expire if at the end of the cycle more than 25% + * of the keys were expired. */ + do { + unsigned long num, slots; + long long now, ttl_sum; + int ttl_samples; + iteration++; -

    做了个循环,将当前用户的消息发送给同时在线的其他用户,比较简陋,如下图
    user1:
    NH}()5}1DTLTKZ%HUQ`4L(V.png](https://ooo.0o0.ooo/2016/07/13/578665c07d94c.png)
-user2:
-![QA_$_$MEL6ALWF48UZFRY1L.png](https://ooo.0o0.ooo/2016/07/13/578665c08a2d1.png)
-user3:
-![QK8EU5`9TQNYIG_4YFU@DJN.png

    -]]>
    - - php - - - websocket - swoole - -
    - - wordpress 忘记密码的一种解决方法 - /2021/12/05/wordpress-%E5%BF%98%E8%AE%B0%E5%AF%86%E7%A0%81%E7%9A%84%E4%B8%80%E7%A7%8D%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95/ - 前阵子搭了个 WordPress,但是没怎么用,前两天发现忘了登录密码了,最近不知道是什么情况,chrome 的记住密码跟历史记录感觉有点问题,历史记录丢了不少东西,可能是时间太久了,但是理论上应该有 LRU 这种策略的,有些还比较常用,还有记住密码,因为个人域名都是用子域名分配给各个服务,有些记住了,有些又没记住密码,略蛋疼,所以就找了下这个方案。
    当然这个方案不是最优的,有很多限制,首先就是要能够登陆 WordPress 的数据库,不然这个方法是没用的。
    首先不管用什么方式(别违法)先登陆数据库,选择 WordPress 的数据库,可以看到里面有几个表,我们的目标就是 wp_users 表,用 select 查询看下可以看到有用户的数据,如果是像我这样搭着玩的没有创建其他用户的话应该就只有一个用户,那我们的表里的用户数据就只会有一条,当然多条的话可以通过用户名来找

    然后可能我这个版本是这样,没有装额外的插件,密码只是经过了 MD5 的单向哈希,所以我们可以设定一个新密码,然后用 MD5 编码后直接更新进去

    -
    UPDATE wp_users SET user_pass = MD5('123456') WHERE ID = 1;
    + /* If there is nothing to expire try next DB ASAP. */ + if ((num = dictSize(db->expires)) == 0) { + db->avg_ttl = 0; + break; + } + slots = dictSlots(db->expires); + now = mstime(); -

    然后就能用自己的账户跟刚才更新的密码登录了。

    -]]>
    - - 小技巧 - - - WordPress - 小技巧 - -
    - - 《垃圾回收算法手册读书》笔记之整理算法 - /2021/03/07/%E3%80%8A%E5%9E%83%E5%9C%BE%E5%9B%9E%E6%94%B6%E7%AE%97%E6%B3%95%E6%89%8B%E5%86%8C%E8%AF%BB%E4%B9%A6%E3%80%8B%E7%AC%94%E8%AE%B0%E4%B9%8B%E6%95%B4%E7%90%86%E7%AE%97%E6%B3%95/ - 最近看了下这本垃圾回收算法手册,看到了第三章的标记-整理回收算法,做个简单的读书笔记

    -

    双指针整理算法

    对于一块待整理区域,通过两个指针,free 在区域的起始端,scan 指针在区域的末端,free 指针从前往后知道找到空闲区域,scan 从后往前一直找到存活对象,当 free 指针未与 scan 指针交叉时,会给 scan 位置的对象特定位置标记上 free 的地址,即将要转移的地址,不过这里有个限制,这种整理算法一般会用于对象大小统一的情况,否则 free 指针扫描时还需要匹配scan 指针扫描到的存活对象的大小。

    -

    Lisp 2 整理算法

    需要三次完整遍历堆区域
    第一遍是遍历后将计算出所有对象的最终地址(转发地址)
    第二遍是使用转发地址更新赋值器线程根以及被标记对象中的引用,该操作将确保它们指向对象的新位置
    第三次遍历是relocate最终将存活对象移动到其新的目标位置

    -

    引线整理算法

    这个真的长见识了,

    可以看到,原来是 A,B,C 对象引用了 N,这里会在第一次遍历的时候把这种引用反过来,让 N 的对象头部保存下 A 的地址,表示这类引用,然后在遍历到 B 的时候在链起来,到最后就会把所有引用了 N 对象的所有对象通过引线链起来,在第二次遍历的时候就把更新A,B,C 对象引用的 N 地址,并且移动 N 对象

    -

    单次遍历算法

    这个一直提到过位图的实现方式,

    可以看到在第一步会先通过位图标记,标记的方式是位图的每一位对应的堆内存的一个字(这里可能指的是 byte 吧),然后将一个存活对象的内存区域的第一个字跟最后一个字标记,这里如果在通过普通的方式就还需要一个地方在存转发地址,但是因为具体的位置可以通过位图算出来,也就不需要额外记录了

    + /* When there are less than 1% filled slots, sampling the key + * space is expensive, so stop here waiting for better times... + * The dictionary will be resized asap. */ + if (num && slots > DICT_HT_INITIAL_SIZE && + (num*100/slots < 1)) break; + + /* The main collection cycle. Sample random keys among keys + * with an expire set, checking for expired ones. */ + expired = 0; + sampled = 0; + ttl_sum = 0; + ttl_samples = 0; + + if (num > config_keys_per_loop) + num = config_keys_per_loop; + + /* Here we access the low level representation of the hash table + * for speed concerns: this makes this code coupled with dict.c, + * but it hardly changed in ten years. + * + * Note that certain places of the hash table may be empty, + * so we want also a stop condition about the number of + * buckets that we scanned. However scanning for free buckets + * is very fast: we are in the cache line scanning a sequential + * array of NULL pointers, so we can scan a lot more buckets + * than keys in the same time. */ + long max_buckets = num*20; + long checked_buckets = 0; + + while (sampled < num && checked_buckets < max_buckets) { + for (int table = 0; table < 2; table++) { + if (table == 1 && !dictIsRehashing(db->expires)) break; + + unsigned long idx = db->expires_cursor; + idx &= db->expires->ht[table].sizemask; + dictEntry *de = db->expires->ht[table].table[idx]; + long long ttl; + + /* Scan the current bucket of the current table. */ + checked_buckets++; + while(de) { + /* Get the next entry now since this entry may get + * deleted. */ + dictEntry *e = de; + de = de->next; + + ttl = dictGetSignedIntegerVal(e)-now; + if (activeExpireCycleTryExpire(db,e,now)) expired++; + if (ttl > 0) { + /* We want the average TTL of keys yet + * not expired. */ + ttl_sum += ttl; + ttl_samples++; + } + sampled++; + } + } + db->expires_cursor++; + } + total_expired += expired; + total_sampled += sampled; + + /* Update the average TTL stats for this database. */ + if (ttl_samples) { + long long avg_ttl = ttl_sum/ttl_samples; + + /* Do a simple running average with a few samples. + * We just use the current estimate with a weight of 2% + * and the previous estimate with a weight of 98%. */ + if (db->avg_ttl == 0) db->avg_ttl = avg_ttl; + db->avg_ttl = (db->avg_ttl/50)*49 + (avg_ttl/50); + } + + /* We can't block forever here even if there are many keys to + * expire. So after a given amount of milliseconds return to the + * caller waiting for the other active expire cycle. */ + if ((iteration & 0xf) == 0) { /* check once every 16 iterations. */ + elapsed = ustime()-start; + if (elapsed > timelimit) { + timelimit_exit = 1; + server.stat_expired_time_cap_reached_count++; + break; + } + } + /* We don't repeat the cycle for the current database if there are + * an acceptable amount of stale keys (logically expired but yet + * not reclained). */ + } while ((expired*100/sampled) > config_cycle_acceptable_stale); + } + + elapsed = ustime()-start; + server.stat_expire_cycle_time_used += elapsed; + latencyAddSampleIfNeeded("expire-cycle",elapsed/1000); + + /* Update our estimate of keys existing but yet to be expired. + * Running average with this sample accounting for 5%. */ + double current_perc; + if (total_sampled) { + current_perc = (double)total_expired/total_sampled; + } else + current_perc = 0; + server.stat_expired_stale_perc = (current_perc*0.05)+ + (server.stat_expired_stale_perc*0.95); +}
    +

    执行定期清除分成两种类型,快和慢,分别由beforeSleepdatabasesCron调用,快版有两个限制,一个是执行时长由ACTIVE_EXPIRE_CYCLE_FAST_DURATION限制,另一个是执行间隔是 2 倍的ACTIVE_EXPIRE_CYCLE_FAST_DURATION,另外这还可以由配置的server.active_expire_effort参数来控制,默认是 1,最大是 10

    +
    onfig_cycle_fast_duration = ACTIVE_EXPIRE_CYCLE_FAST_DURATION +
    +                                 ACTIVE_EXPIRE_CYCLE_FAST_DURATION/4*effort
    +

    然后会从一定数量的 db 中找出一定数量的带过期时间的 key(保存在 expires中),这里的数量是由

    +
    config_keys_per_loop = ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP +
    +                           ACTIVE_EXPIRE_CYCLE_KEYS_PER_LOOP/4*effort
    +```                                 
    +控制,慢速的执行时长是
    +```C
    +config_cycle_slow_time_perc = ACTIVE_EXPIRE_CYCLE_SLOW_TIME_PERC +
    +                                  2*effort
    +timelimit = config_cycle_slow_time_perc*1000000/server.hz/100;
    +

    这里还有一个额外的退出条件,如果当前数据库的抽样结果已经达到我们所允许的过期 key 百分比,则下次不再处理当前 db,继续处理下个 db

    ]]>
    - Java - gc - jvm + Redis + 数据结构 + 源码 + C + Redis - java - gc - 标记整理 - 垃圾回收 - jvm + redis + 数据结构 + 源码
    - 《长安的荔枝》读后感 - /2022/07/17/%E3%80%8A%E9%95%BF%E5%AE%89%E7%9A%84%E8%8D%94%E6%9E%9D%E3%80%8B%E8%AF%BB%E5%90%8E%E6%84%9F/ - 断断续续地看完了马伯庸老师的《长安的荔枝》,一开始是看这本书在排行榜排得很高,又是马伯庸的,之前看过他的《古董局中局》,还是很有意思的,而且正好是比较短的,不过前后也拖了蛮久才看完,看完后读了下马老师自己写的后记,就特别有感触。
    整个故事是围绕一个上林署监事李善德被委任一项给贵妃送荔枝的差事展开,“长安回望绣成堆,山顶千门次第开,一骑红尘妃子笑,无人知是荔枝来”,以前没细究过这个送荔枝的过程,但是以以前的运输速度和保鲜条件,感觉也不是太现实,所以主人公一开始就以为只是像以往一样是送荔枝干这种,能比较方便运输,不容易变质的,结果发现其实是同僚在坑他,这次是要在贵妃生辰的时候给贵妃送来新鲜的岭南荔枝,用比较时兴的词来说,这就是个送命题啊,鲜荔枝一日色变,两日香变,三日味变,同僚的还有杜甫跟韩承,都觉得老李可以直接写休书了,保全家人,不然就是全家送命,李善德也觉得基本算是判刑了,而且其实是这事被转了几次,最后到老李所在的上林署,主管为了骗他接下这个活还特意在文书上把荔枝鲜的“鲜”字贴住,那会叫做“贴黄”,变成了荔枝“煎”,所以说官场险恶,大家都想把这烫手山芋丢出去,结果丢到了我们老实的老李头上,但是从接到这个通知到贵妃的生辰六月初一还有挺长的时间,其实这个活虽然送命,但是在前期这个“荔枝使”也基本就是类似带着尚方宝剑,御赐黄马褂的职位,随便申请经费,不必像常规的部门费用需要定预算,申请后再层层审批,而是特事特批特办的耍赖做法,所以在这段时间是能够潇洒挥霍一下的。其实可以好好地捞一波给妻女,然后写下和离,在自己死后能让她们过的好一些,但最后还是在杜甫的一番劝导下做出了尝试一番的决定,因为也没其他办法,既是退无可退,何不向前拼死一搏,其实说到这,我觉得看这本书感觉有所收获的第一点,有时候总觉得事情没戏了,想躺平放弃了,但是这样其实这个结果是不会变好的,尝试努力,拼尽全力搏一搏,说不定会有所改观,至少不会变更坏了。

    + redis过期策略复习 + /2021/07/25/redis%E8%BF%87%E6%9C%9F%E7%AD%96%E7%95%A5%E5%A4%8D%E4%B9%A0/ + redis过期策略复习

    之前其实写过redis的过期的一些原理,这次主要是记录下,一些使用上的概念,主要是redis使用的过期策略是懒过期和定时清除,懒过期的其实比较简单,即是在key被访问的时候会顺带着判断下这个key是否已过期了,如果已经过期了,就不返回了,但是这种策略有个漏洞是如果有些key之后一直不会被访问了,就等于沉在池底了,所以需要有一个定时的清理机制,去从设置了过期的key池子(expires)里随机地捞key,具体的策略我们看下官网的解释

    +
      +
    1. Test 20 random keys from the set of keys with an associated expire.
    2. +
    3. Delete all the keys found expired.
    4. +
    5. If more than 25% of keys were expired, start again from step 1.
    6. +
    +

    从池子里随机获取20个key,将其中过期的key删掉,如果这其中有超过25%的key已经过期了,那就再来一次,以此保持过期的key不超过25%(左右),并且这个定时策略可以在redis的配置文件

    +
    # Redis calls an internal function to perform many background tasks, like
    +# closing connections of clients in timeout, purging expired keys that are
    +# never requested, and so forth.
    +#
    +# Not all tasks are performed with the same frequency, but Redis checks for
    +# tasks to perform according to the specified "hz" value.
    +#
    +# By default "hz" is set to 10. Raising the value will use more CPU when
    +# Redis is idle, but at the same time will make Redis more responsive when
    +# there are many keys expiring at the same time, and timeouts may be
    +# handled with more precision.
    +#
    +# The range is between 1 and 500, however a value over 100 is usually not
    +# a good idea. Most users should use the default of 10 and raise this up to
    +# 100 only in environments where very low latency is required.
    +hz 10
    + +

    可以配置这个hz的值,代表的含义是每秒的执行次数,默认是10,其实也用了hz的普遍含义。有兴趣可以看看之前写的一篇文章redis系列介绍七-过期策略

    ]]>
    - 读后感 - 生活 + redis - 生活 - 读后感 + redis + 应用 + 过期策略
    - 一个 nginx 的简单记忆点 - /2022/08/21/%E4%B8%80%E4%B8%AA-nginx-%E7%9A%84%E7%AE%80%E5%8D%95%E8%AE%B0%E5%BF%86%E7%82%B9/ - 上周在处理一个 nginx 配置的时候,发现了一个之前不理解的小点,说一个场景,就是我们一般的处理方式就是一个 ip 端口只能配置一个域名的服务,比如 https://nicksxs.me 对应配置到 127.0.0.1:443,如果我想要把 https://nicksxs.com 也解析到这个服务器,并转发到不同的下游,这里就需要借助所谓的 SNI 的功能

    -

    Server Name Indication

    A more generic solution for running several HTTPS servers on a single IP address is TLS Server Name Indication extension (SNI, RFC 6066), which allows a browser to pass a requested server name during the SSL handshake and, therefore, the server will know which certificate it should use for the connection. SNI is currently supported by most modern browsers, though may not be used by some old or special clients.
    来源
    机翻一下:在单个 IP 地址上运行多个 HTTPS 服务器的更通用的解决方案是 TLS 服务器名称指示扩展(SNI,RFC 6066),它允许浏览器在 SSL 握手期间传递请求的服务器名称,因此,服务器将知道哪个 它应该用于连接的证书。 目前大多数现代浏览器都支持 SNI,但某些旧的或特殊的客户端可能不使用 SNI。

    -

    首先我们需要确认 sni 已被支持

    在实际的配置中就可以这样

    -
    stream {
    -  map $ssl_preread_server_name $stream_map {
    -    nicksxs.me nme;
    -    nicksxs.com ncom;
    -  }
    -
    -  upstream nme {
    -    server 127.0.0.1:8000;
    -  }
    -  upstream ncom {
    -    server 127.0.0.1:8001;
    -  }
    +    redis系列介绍八-淘汰策略
    +    /2020/04/18/redis%E7%B3%BB%E5%88%97%E4%BB%8B%E7%BB%8D%E5%85%AB/
    +    LRU

    说完了过期策略再说下淘汰策略,redis 使用的策略是近似的 lru 策略,为什么是近似的呢,先来看下什么是 lru,看下 wiki 的介绍
    ,图中一共有四个槽的存储空间,依次访问顺序是 A B C D E D F,
    当第一次访问 D 时刚好占满了坑,并且值是 4,这个值越小代表越先被淘汰,当 E 进来时,看了下已经存在的四个里 A 是最小的,代表是最早存在并且最早被访问的,那就先淘汰它了,E 占领了 A 的位置,并设置值为 4,然后又访问 D 了,D 已经存在了,不过又被访问到了,得更新值为 5,然后是 F 进来了,这时 B 是最老的且最近未被访问,所以就淘汰它了。以上是一个 lru 的简要说明,但是 redis 没有严格按照这个去执行,理由跟前面过期策略一致,最严格的过期策略应该是每个 key 都有对应的定时器,当超时时马上就能清除,但是问题是这样的cpu 消耗太大,所换来的内存效率不太值得,淘汰策略也是这样,类似于上图,要维护所有 key 的一个有序 lru 值,并且遍历将最小的淘汰,redis 采用的是抽样的形式,最初的实现方式是随机从 dict 抽取 5 个 key,淘汰一个 lru 最小的,这样子勉强能达到淘汰的目的,但是效果不是特别好,后面在 redis 3.0开始,将随机抽取改成了维护一个 pool,pool 的大小默认是 16,每次放入的都是按lru 值有序排列好,每一次放入的必须是 lru小于 pool 中最小的 lru 才允许放入,直到放满,后面再有新的就会将大的踢出。
    redis 针对这个策略的改进做了一个实验,这里借用下图

    首先背景是这图中的所有点都对应一个 redis 的 key,灰色部分加入后被顺序访问过一遍,然后又加入了绿色部分,那么按照理论的 lru 算法,应该是图左上中,浅灰色部分全都被淘汰,那么对比来看看图右上,左下和右下,左下表示 2.8 版本就是随机抽样 5 个 key,淘汰其中 lru 最小的一个,发现是灰色和浅灰色的都有被淘汰的,右下的 3.0 版本抽样数量不变的情况下,稍好一些,当 3.0 版本的抽样数量调整成 10 后,已经较为接近理论上的 lru 策略了,通过代码来简要分析下

    +
    typedef struct redisObject {
    +    unsigned type:4;
    +    unsigned encoding:4;
    +    unsigned lru:LRU_BITS; /* LRU time (relative to global lru_clock) or
    +                            * LFU data (least significant 8 bits frequency
    +                            * and most significant 16 bits access time). */
    +    int refcount;
    +    void *ptr;
    +} robj;
    +

    对于 lru 策略来说,lru 字段记录的就是redisObj 的LRU time,
    redis 在访问数据时,都会调用lookupKey方法

    +
    /* Low level key lookup API, not actually called directly from commands
    + * implementations that should instead rely on lookupKeyRead(),
    + * lookupKeyWrite() and lookupKeyReadWithFlags(). */
    +robj *lookupKey(redisDb *db, robj *key, int flags) {
    +    dictEntry *de = dictFind(db->dict,key->ptr);
    +    if (de) {
    +        robj *val = dictGetVal(de);
     
    -  server {
    -    listen 443 reuseport;
    -    proxy_pass $stream_map;
    -    ssl_preread on;
    -  }
    -}
    -

    类似这样,但是这个理解是非常肤浅和不完善的,只是简单记忆下,后续再进行补充完整

    -

    还有一点就是我们在配置的时候经常配置就是 server_name,但是会看到直接在使用 ssl_server_name,
    其实在listen 标识了 ssl, 对应的 ssl_server_name 就等于 server_name,不需要额外处理了。

    -]]>
    - - nginx - - - nginx - - - - 上次的其他 外行聊国足 - /2022/03/06/%E4%B8%8A%E6%AC%A1%E7%9A%84%E5%85%B6%E4%BB%96-%E5%A4%96%E8%A1%8C%E8%81%8A%E5%9B%BD%E8%B6%B3/ - 上次本来想在换车牌后面聊下这个话题,为啥要聊这个话题呢,也很简单,在地铁上看到一对猜测是情侣或者比较关系好的男女同学在聊,因为是这位男同学是大学学的工科,然后自己爱好设计绘画相关的,可能还以此赚了点钱,在地铁上讨论男的要不要好好努力把大学课程完成好,大致的观点是没必要,本来就不适合,这一段我就不说了,恋爱人的嘴,信你个鬼。
    后面男的说在家里又跟他爹吵了关于男足的,估计是那次输了越南,实话说我不是个足球迷,对各方面技术相关也不熟,只是对包括这个人的解释和网上一些观点的看法,纯主观,这次地铁上这位说的大概意思是足球这个训练什么的很难的,要想赢越南也很难的,不是我们能嘴炮的;在网上看到一个赞同数很多的一个回答,说什么中国是个体育弱国,但是由于有一些乒乓球,跳水等小众项目比较厉害,让民众给误解了,首先我先来反驳下这个偷换概念的观点,第一所谓的体育弱国,跟我们觉得足球不应该这么差没半毛钱关系,因为体育弱国,我们的足球本来就不是顶尖的,也并不是去跟顶尖的球队去争,以足球为例,跟巴西,阿根廷,英国,德国,西班牙,意大利,法国这些足球强国,去比较,我相信没有一个足球迷会这么去做对比,因为我们足球历史最高排名是 1998 年的 37 名,最差是 100 名,把能数出来的强队都数完,估计都还不会到 37,所以根本没有跟强队去做对比,第二体育弱国,我们的体育投入是在逐年降低吗,我们是因战乱没法好好训练踢球?还是这帮傻逼就不争气,前面也说了我们足球世界排名最高 37,最低 100,那么前阵子我们输的越南是第几,目前我们的排名 77 名,越南 92 名,看明白了么,轮排名我们都不至于输越南,然后就是这个排名,这也是我想回应那位地铁上的兄弟,我觉得除了造核弹这种高精尖技术,绝大部分包含足球这类运动,遵循类二八原则,比如满分是 100 分,从 80 提到 90 分或者 90 分提到 100 分非常难,30 分提到 40 分,50 分提到 60 分我觉得都是可以凭后天努力达成的,基本不受天赋限制,这里可以以篮球来类比下,相对足球的确篮球没有那么火,或者行业市值没法比,但是也算是相对大众了,中国在篮球方面相对比较好一点,在 08 年奥运会冲进过八强,那也不是唯一的巅峰,但是我说这个其实是想说明两方面的事情,第一,像篮球一样,状态是有起起伏伏,排名也会变动,但是我觉得至少能维持一个相对稳定的总体排名和持平或者上升的趋势,这恰恰是我们这种所谓的“体育弱国”应该走的路线,第二就是去支持我的类二八原则的,可以看到我们的篮球这两年也很垃圾,排名跌到 29 了,那问题我觉得跟足球是一样的,就是不能脚踏实地,如斯科拉说的,中国篮球太缺少竞争,打得好不好都是这些人打,打输了还是照样拿钱,相对足球,篮球的技术我还是懂一些的,对比 08 年的中国男篮,的确像姚明跟王治郅这样的天赋型+努力型球员少了以后竞争力下降在所难免,但是去对比下基本功,传球,投篮,罚球稳定性,也完全不是一个水平的,这些就是我说的,可以通过努力训练拿 80 分的,只要拿到 80 分,甚至只要拿到 60 分,我觉得应该就还算对得起球迷了,就像 NBA 里球队也会有核心球员的更替,战绩起起伏伏,但是基本功这东西,防守积极性,我觉得不随核心球员的变化而变化,就像姚明这样的天赋,其实他应该还有一些先天缺陷,大脚趾较长等,但是他从 CBA 到 NBA,在 NBA 适应并且打成顶尖中锋,离不开刻苦训练,任何的成功都不是纯天赋的,必须要付出足够的努力。
    说回足球,如果像前面那么洗地(体育弱国),那能给我维持住一个稳定的排名我也能接受,问题是我们的经济物质资源比 2000 年前应该有了质的变化,身体素质也越来越好,即使是体育弱国,这么继续走下坡路,半死不活的,不觉得是打了自己的脸么。足球也需要基本功,基本的体能,力量这些,看看现在这些国足运动员的体型,对比下女足,说实话,如果男足这些运动员都练得不错的体脂率,耐力等,成绩即使不好,也不会比现在更差。
    纯主观吐槽,勿喷。

    -]]>
    - - 生活 - 运动 - - - 生活 - -
    - - 介绍一下 RocketMQ - /2020/06/21/%E4%BB%8B%E7%BB%8D%E4%B8%80%E4%B8%8B-RocketMQ/ - 说起消息队列一般Web后端做过一段时间开发的肯定会用过,在前司的时候用的是改良版的 NSQ,有点像 NOSQL 的简写版🙄,其实是个go 语言写的消息队列,nsq 看代码提交感觉最近更新的不是很勤,不过因为前司有专门的中间件团队,所以还是挺好用的,而且中间件团队的大牛也很厉害,一次都没碰到过丢消息之类的错误,然后现在公司用的是 RocketMQ,本着总还是要了解下的,并且消息队列也是服务端开发中一个很重要的中间件,因为不太有不需要用消息队列的后端团队了吧,原来对 nsq 也不是特别了解原理,就打算了解下 RocketMQ。

    -

    还是像我这样的小白专属,消息队列用来干啥,很多都是标准答案,用来削峰填谷的,这个完全对,只是我想结合场景说给像我这样的小白同学听,想想一个电商的下单功能,除了 AT 两家之外应该大部分都是接入的支付,那么下单支付完成后一般都是等支付回调,告诉你支付完成了(也有可能是失败了,或者超时了咱们主动去查),然后这个回调里我们自己的业务代码干点啥,首先比如是把订单状态改掉了,然后会有各类的操作,比如把优惠券核销了,把其他金钱相关的也核销了,把购物车里对应的商品给删了,还有更次要的,比如发个客服消息,让用户确认下地址的,给用户加积分的等等等等,想象下如果这些都是回调里一股脑儿做掉了,那可能你的代码健壮性跟相关服务的稳定性还有性能要达到一个非常高的水平才能让业务不出现异常,并且万一流量打起来了,这些重要的不重要的操作都会阻塞着,所以需要用一个消息队列,在接到回调后只处理极少的几个核心操作,完了就把这个消息丢进消息队列里,让各个业务方去消费这个消息,把客服消息发一下,给用户加个积分等等,这样子主要的业务流程需要处理的事情就少了,速度也加快了,这个例子呢不能严格算是削峰填谷的例子,不过也算是消息队列的比较典型的使用场景了,要说真实的削峰填谷的话其实可以这么理解,假如短时间内有 1w 个请求进来,系统能支持的 QPS 才 1000,那么正常情况下服务就挂了,或者被限流了,为了让服务正常,那么可以把这些请求先放进消息队列里,我服务端以拉的模式按我的处理能力来消费,这样就没啥问题了

    -

    扯了这么多来聊聊 RocketMQ 长啥样

    -

    6073827-a998e005dd13967c

    -

    总共有四大部分:NameServer,Broker,Producer,Consumer。

    -

    NameServer

    NameServer是一个非常简单的Topic路由注册中心,其角色类似Dubbo中的zookeeper,支持Broker的动态注册与发现。主要包括两个功能:Broker管理,NameServer接受Broker集群的注册信息并且保存下来作为路由信息的基本数据。然后提供心跳检测机制,检查Broker是否还存活;路由信息管理,每个NameServer将保存关于Broker集群的整个路由信息和用于客户端查询的队列信息。然后Producer和Conumser通过NameServer就可以知道整个Broker集群的路由信息,从而进行消息的投递和消费。NameServer通常也是集群的方式部署,各实例间相互不进行信息通讯。Broker是向每一台NameServer注册自己的路由信息,所以每一个NameServer实例上面都保存一份完整的路由信息。当某个NameServer因某种原因下线了,Broker仍然可以向其它NameServer同步其路由信息,Producer,Consumer仍然可以动态感知Broker的路由的信息。

    -

    NameServer压力不会太大,正常情况主要负责维持心跳和提供Topic-Broker的关系数据。但有一点需要注意,Broker向Namesr发心跳时,会带上当前自己所负责的所有Topic信息,如果Topic个数太多,会导致一次心跳中,光Topic的数据就非常大,网络情况差的话,网络传输失败,心跳失败,导致Namesrv误认为Broker心跳失败。

    -

    Broker

    Broker主要负责消息的存储、投递和查询以及服务高可用保证,为了实现这些功能,Broker包含了以下几个重要子模块。

    -
      -
    • Remoting Module:整个Broker的实体,负责处理来自clients端的请求。
    • -
    • Client Manager:负责管理客户端(Producer/Consumer)和维护Consumer的Topic订阅信息
    • -
    • Store Service:提供方便简单的API接口处理消息存储到物理硬盘和查询功能。
    • -
    • HA Service:高可用服务,提供Master Broker 和 Slave Broker之间的数据同步功能。
    • -
    • Index Service:根据特定的Message key对投递到Broker的消息进行索引服务,以提供消息的快速查询。
    • -
    -
    Broker的特点

    1.负载均衡:Broker上存Topic信息,Topic由多个队列组成,队列会平均分散在多个Broker上,而Producer的发送机制保证消息尽量平均分布到所有队列中,最终效果就是所有消息都平均落在每个Broker上。

    -

    2.动态伸缩能力(非顺序消息):Broker的伸缩性体现在两个维度:Topic, Broker。

    -
    -

    Topic维度:假如一个Topic的消息量特别大,但集群水位压力还是很低,就可以扩大该Topic的队列数,Topic的队列数跟发送、消费速度成正比。
    Broker维度:如果集群水位很高了,需要扩容,直接加机器部署Broker就可以。Broker起来后想NameServer注册,Producer、Consumer通过NameServer发现新Broker,立即跟该Broker直连,收发消息。

    -
    -

    3.高可用&高可靠

    -
    -

    高可用:集群部署时一般都为主备,备机实时从主机同步消息,如果其中一个主机宕机,备机提供消费服务,但不提供写服务。
    高可靠:所有发往broker的消息,有同步刷盘和异步刷盘机制;同步刷盘时,消息写入物理文件才会返回成功,异步刷盘时,只有机器宕机,才会产生消息丢失,broker挂掉可能会发生,但是机器宕机崩溃是很少发生的,除非突然断电

    -
    -

    Producer

    Producer与NameServer集群中的其中一个节点(随机选择)建立长连接,定期从NameServer获取Topic路由信息,并向提供Topic 服务的Master建立长连接,且定时向Master发送心跳。Producer完全无状态,可集群部署。
    RocketMQ提供三种发送方式:

    -
    -

    同步:在广泛的场景中使用可靠的同步传输,如重要的通知信息、短信通知、短信营销系统等。
    异步:异步发送通常用于响应时间敏感的业务场景,发送出去即刻返回,利用回调做后续处理。
    一次性:一次性发送用于需要中等可靠性的情况,如日志收集,发送出去即完成,不用等待发送结果,回调等等。

    -
    -
    生产者端的负载均衡

    生产者发送时,会自动轮询当前所有可发送的broker,一条消息发送成功,下次换另外一个broker发送,以达到消息平均落到所有的broker上。

    -

    Consumer

    Consumer与NameServer集群中的其中一个节点(随机选择)建立长连接,定期从NameServer获取Topic路由信息,并向提供Topic服务的Master、Slave建立长连接,且定时向Master、Slave发送心跳。Consumer既可以从Master订阅消息,也可以从Slave订阅消息,消费者在向Master拉取消息时,Master服务器会根据拉取偏移量与最大偏移量的距离(判断是否读老消息,产生读I/O),以及从服务器是否可读等因素建议下一次是从Master还是Slave拉取。

    -
    消费者端的负载均衡

    先讨论消费者的消费模式,消费者有两种模式消费:集群消费,广播消费。

    -
    -

    广播消费:每个消费者消费Topic下的所有队列。
    集群消费:一个topic可以由同一个ID下所有消费者分担消费。
    具体例子:假如TopicA有6个队列,某个消费者ID起了2个消费者实例,那么每个消费者负责消费3个队列。如果再增加一个消费者ID相同消费者实例,即当前共有3个消费者同时消费6个队列,那每个消费者负责2个队列的消费。

    -
    -

    消费者端的负载均衡,就是集群消费模式下,同一个ID的所有消费者实例平均消费该Topic的所有队列。

    -

    消费者从用户角度来看有两种类型:

    -
    -

    PullConsumer:主动从brokers处拉取消息。Consumer消费的一种类型,应用通常主动调用Consumer的拉消息方法从Broker服务器拉消息、主动权由应用控制。一旦获取了批量消息,应用就会启动消费过程。
    PushConsumer:Consumer消费的一种类型,该模式下Broker收到数据后会主动推送给消费端,该消费模式一般实时性较高。

    -
    -

    补充一些概念

    Topic:主题,表示一类消息的集合,每个主题包含若干条消息,每条消息只能属于一个主题,是RocketMQ进行消息订阅的基本单位。Topic与生产者和消费者都是非常松散的关系,一个topic可以有0个或者1个或者多个生产者向其发送消息,换句话说,一个生产者可以同时向不同和topic发送消息。从消费者的解度来说,一个topic可能被0个或者一个或者多个消费组订阅,类似的,一个消费组可以订阅一个或者多个主题只要这个消费组的实例保持他们的订阅一致。

    -

    Message:消息消息系统所传输信息的物理载体,生产和消费数据的最小单位,每条消息必须属于一个主题。RocketMQ中每个消息拥有唯一的Message ID,且可以携带具有业务标识的Key。系统提供了通过Message ID和Key查询消息的功能。。

    -

    Message Queue:消息队列,一个主题被化分为一个或者多个子主题(sub-topics),“消息队列”.

    -

    Tag:标签,为消息设置的标志,用于同一主题下区分不同类型的消息。来自同一业务单元的消息,可以根据不同业务目的在同一主题下设置不同标签。标签能够有效地保持代码的清晰度和连贯性,并优化RocketMQ提供的查询系统。消费者可以根据Tag实现对不同子主题的不同消费逻辑,实现更好的扩展性。使用tag,同一业务模块不同目的的messages就可以用相同topic不同tag来标识。Tags有益于保持你的代码干净而条理清晰,同时促进使用RocketMQ提供的查询系统的效率。Topic:主题,是生产者发送的消息和消费者拉取的消息的归类。Topic与生产者和消费者都是非常松散的关系,一个topic可以有0个或者1个或者多个生产者向其发送消息,换句话说,一个生产者可以同时向不同和topic发送消息。从消费者的解度来说,一个topic可能被0个或者一个或者多个消费组订阅,类似的,一个消费组可以订阅一个或者多个主题只要这个消费组的实例保持他们的订阅一致。

    -

    Message Order:当使用DefaultMQPushConsumer时,你需要确定消费消息的方式:

    -
    -

    Orderly:顺序地消费消息即表示消费的消息顺序同生产者发送的顺序一致。
    Concurrently:并行消费。指定此方式消费,信息消费的最大并行数量仅受限于每个消费者客户端指定的线程池。

    -
    -

    Consumer Group:消费组,同一类Consumer的集合,这类Consumer通常消费同一类消息且消费逻辑一致。消费者组使得在消息消费方面,实现负载均衡和容错的目标变得非常容易。要注意的是,消费者组的消费者实例必须订阅完全相同的Topic。RocketMQ 支持两种消息模式:集群消费(Clustering)和广播消费(Broadcasting)。
    Producer Group:生产者组,同一类Producer的集合,这类Producer发送同一类消息且发送逻辑一致。如果发送的是事务消息且原始生产者在发送之后崩溃,则Broker服务器会联系同一生产者组的其他生产者实例以提交或回溯消费。

    -

    上面的这些我主要参考了 RocketMQ 的 GitHub 介绍和一些优秀网文的介绍,侵权请联系我删除。

    -]]>
    - - MQ - RocketMQ - 消息队列 - RocketMQ - 中间件 - RocketMQ - - - MQ - 消息队列 - RocketMQ - 削峰填谷 - 中间件 - -
    - - 介绍下最近比较实用的端口转发 - /2021/11/14/%E4%BB%8B%E7%BB%8D%E4%B8%8B%E6%9C%80%E8%BF%91%E6%AF%94%E8%BE%83%E5%AE%9E%E7%94%A8%E7%9A%84%E7%AB%AF%E5%8F%A3%E8%BD%AC%E5%8F%91/ - vscode 扩展转发

    在日常使用云服务器的时候,如果要访问上面自建的 mysql,一般要不直接开对应的端口,然后需要对本地 ip 进行授权,但是这个方案会有比较多的限制,比如本地 ip 变了,比如是非固定出口 ip 的家用宽带,或者要在家里跟公司都要访问,如果对所有 ip 都授权的话会不安全,这个时候其实是用 ssh 端口转发是个比较安全方便的方式。
    原来在这个之前其实对这块内容不太了解,后面是听朋友说的,vscode 的 Remote - SSH 扩展可以很方便的使用端口转发,在使用该扩展的时候,会在控制台位置里都出现一个”端口” tab

    如图中所示,我就是将一个服务器上的 mysql 的 3306 端口转发到本地的 3307 端口,至于为什么不用 3306 是因为本地我也有个 mysql 已经使用了 3306 端口,这个方法是使用的 vscode 的这个扩展,

    -

    ssh 命令转发

    还有个方式是直接使用 ssh 命令
    命令可以如此

    -
    ssh -CfNg -L 3307:127.0.0.1:3306 user1@199.199.199.199
    -

    简单介绍下这个命令
    -C 表示的是压缩数据包
    -f 表示后台执行命令
    -N 是表示不执行具体命令只用于端口转发
    -g 表示允许远程主机连接本地转发端口
    -L 则是具体端口转发的映射配置
    上面的命令就是将远程主机的 127.0.0.1:3306 对应转发到本地 3307
    而后面的用户则就是登录主机的用户名user1和ip地址199.199.199.199,当然这个配置也不是唯一的

    -

    ssh config 配置转发

    还可以在ssh 的 config 配置中加对应的配置

    -
    Host host1
    -  HostName 199.199.199.199
    -  User user1
    -  IdentityFile  /Users/user1/.ssh/id_rsa
    -  ServerAliveInterval 60
    -  LocalForward 3310 127.0.0.1:3306
    -

    然后通过 ssh host1 连接服务器的时候就能顺带做端口转发

    -]]>
    - - ssh - 技巧 - - - ssh - 端口转发 - -
    - - 从丁仲礼被美国制裁聊点啥 - /2020/12/20/%E4%BB%8E%E4%B8%81%E4%BB%B2%E7%A4%BC%E8%A2%AB%E7%BE%8E%E5%9B%BD%E5%88%B6%E8%A3%81%E8%81%8A%E7%82%B9%E5%95%A5/ - 几年前看了柴静的《穹顶之下》觉得这个记者调查得很深入,挺有水平,然后再看到了她跟丁仲礼的采访,其实没看完整,也没试着去理解,就觉得环境问题挺严重的,为啥柴静这个对面的这位好像对这个很不屑的样子,最近因为丁仲礼上了美国制裁名单,B 站又有人把这个视频发了出来,就完整看了下,就觉得自己挺惭愧的,就抱着对柴静的好感而没来由的否定了丁老的看法和说法,所以人也需要不断地学习,改正之前错误的观点,当然不是说我现在说的就是百分百正确,只是个人的一些浅显的见解

    -

    先聊聊这个事情,整体看下来我的一些理解,IPCC给中国的方案其实是个很大的陷阱,它里面有几个隐藏的点是容易被我们外行忽略的,第一点是基数,首先发达国家目前(指2010年采访或者IPCC方案时间)的人均碳排放量已经是远高于发展中国家的了,这也就导致了所谓的发达国家承诺减排80%是个非常有诚意的承诺其实就是忽悠;第二点是碳排放是个累计过程,从1900年开始到2050年,或者说到2010年,发达国家已经排的量是远超过发展中国家的,这是非常不公平的;第三点其实是通过前两点推导出来的,也就是即使发达国家这么有诚意地说减排80%,扒开这层虚伪的外衣,其实是给他们11亿人分走了48%的碳排放量,留给发展中国家55亿人口的只剩下了52%;第四点,人是否因为国家的发达与否而应受到不平等待遇,如果按国家维度,丁老说的,摩纳哥要跟中国分同样的排放量么,中国人还算不算人;第五点,这点算是我自己想的,也可能是柴静屁股决定脑袋想不到的点,她作为一个物质生活条件已经足够好了,那么对于那些生活在物质条件平均线以下的,他们是否能像城里人那样有空调地暖,洗澡有热水器浴霸,上下班能开车,这些其实都直接或者间接地导致了碳排放;他们有没有改善物质生活条件地权利呢,并且再说回来,其实丁老也给了我们觉得合理地方案,我们保证不管发达国家不管减排多少,我们都不会超过他们的80%,我觉得这是真正的诚意,而不是接着减排80%的噱头来忽悠人,也是像丁老这样的专家才能看破这个陷阱,碳排放权其实就是发展权,就是人权,中国人就不是人了么,或者说站在贫困线以下的人民是否有改善物质条件的权利,而不是说像柴静这样,只是管她自己,可能觉得小孩因为空气污染导致身体不好,所以做了穹顶之下这个纪录片,想去改善这个事情,空气污染不是说对的,只是每个国家都有这个过程,如果不发展,哪里有资源去让人活得好,活得好了是前提,然后再去各方面都改善。

    -

    对于这个问题其实更想说的是人的认知偏差,之前总觉得美帝是更自由民主,公平啥的,或者说觉得美帝啥都好,有种无脑愤青的感觉,外国的月亮比较圆,但是经历了像川普当选美国总统以来的各种魔幻操作,还有对于疫情的种种不可思议的美国民众的反应,其实更让人明白第一是外国的月亮没比较圆,第二是事情总是没那么简单粗暴非黑即白,美国不像原先设想地那么领先优秀,但是的确有很多方面是全球领先的,天朝也有体制所带来的优势,不可妄自菲薄,也不能忙不自大,还是要多学习知识,提升认知水平。

    -]]>
    - - 生活 - 吐槽 - 疫情 - 美国 - - - 生活 - 吐槽 - 疫情 - 美国 - -
    - - 从清华美院学姐聊聊我们身边的恶人 - /2020/11/29/%E4%BB%8E%E6%B8%85%E5%8D%8E%E7%BE%8E%E9%99%A2%E5%AD%A6%E5%A7%90%E8%81%8A%E8%81%8A%E6%88%91%E4%BB%AC%E8%BA%AB%E8%BE%B9%E7%9A%84%E6%81%B6%E4%BA%BA/ - 前几天清华美院学姐的热点火了,然后仔细看了下,其实是个学姐诬陷以为其貌不扬的男同学摸她屁股

    然后还在朋友圈发文想让他社死,我也是挺晚才知道这个词什么意思,然后后面我看到了这个图片,挺有意思的

    本来其实也没什么想聊这个的,是在 B 站看了个吐槽这个的,然后刚好晚上乘公交的时候又碰到了有点类似的问题
    故事描述下,我们从始发站做了公交,这辆公交司机上次碰到过一回,就是会比较关注乘客的佩戴情况,主要考虑到目前国内疫情,然后这次在差不多人都坐满的情况下,可能在提示了三次让车内乘客戴好口罩,但是他指的那个中年女性还是没有反应,司机就转头比较大声指着这个乘客(中年女性)让戴好口罩,然后这个乘客(中年女性)就大声的说“我口罩是滑下来了,你指着我干嘛,你态度这么差,要吃了我一样,我要投诉你”等等,然后可能跟她一块的一个中年女性也是这么帮腔指责司机,比较基本的理解,车子里这么多乘客,假如是处于这位乘客口罩滑下来了而不自知的情况下,司机在提示了三次以后回头指着她说,我想的是没什么问题的,但是这位却反而指责这位司机指着她,并且说是态度差,要吃了她,完全是不可理喻的,并且一直喋喋不休说她口罩滑掉了有什么错,要投诉这个司机,让他可以提前退休了,在其他乘客的劝说下司机准备继续开车时,又口吐芬芳“你个傻,你来打我呀”,真的是让我再次体会到了所谓的恶人先告状的又一完美呈现,后面还有个乘客还是表示要打死司机这个傻,让我有点不明所以,俗话说有人是得理不饶人,前提是得理,这种理亏不饶人真的是挺让人长见识的,试想下,司机在提示三次后,这位乘客还是没有把口罩戴好,如何在不指着这位乘客的情况下能准确的提示到她呢,并且觉得语气态度不好,司机要载着一车的人,因为你这一个乘客不戴好口罩而不能正常出发,有些着急应该很正常吧,可能是平时自己在家里耀武扬威的使唤别人习惯了吧,别人不敢这么大声跟她说话,其实想想这位中年女性应该年纪不会很大,还比较时髦的吧,像一些常见的中年杭州本地人可能是不会说傻*这个词的吧。
    杭州的公交可能是在二月份疫情还比较严重的时候是要求上车出示健康码,后面比较缓和以后只要求佩戴好口罩,但是在我们小绍兴,目前还是一律要求检验健康码和佩戴口罩,对于疫情中,并且目前阶段国内也时有报出小范围的疫情的情况下,司机尽职要求佩戴好口罩其实也是为了乘客着想,另一种情况如果司机不严格要求,万一车上有个感染者,这位中年女性被传染了,如果能找到这个司机的话,是不是想“打死”这个司机,竟然让感染者上了车,反正她自己是不可能有错的,上来就是对方态度差,要投诉,自己不戴好口罩啥都没错,我就想知道如果因为自己没戴好口罩被感染了,是不是也是司机的错,毕竟没有像仆人那样点头哈腰求着她戴好口罩。
    再说回来,整个车就她一个人没戴好口罩,并且还有个细节,其实这个乘客是上了车之后就没戴好了,本来上车的时候是戴好的,这种比较有可能是觉得上车的时候司机那看一眼就好了,如果好好戴着口罩,一点事情都没有,唉,纯粹是太气愤了,调理逻辑什么的就忽略吧

    -]]>
    - - 生活 - 吐槽 - 疫情 - 口罩 - - - 生活 - 吐槽 - 疫情 - 公交车 - 口罩 - 杀人诛心 - -
    - - 关于公共交通再吐个槽 - /2021/03/21/%E5%85%B3%E4%BA%8E%E5%85%AC%E5%85%B1%E4%BA%A4%E9%80%9A%E5%86%8D%E5%90%90%E4%B8%AA%E6%A7%BD/ - 事情源于周末来回家发生的两件事情,先是回去的时候从高铁下车要坐公交,现在算是有个比较好的临时候车点了,但是可能由于疫情好转,晚上都不用检查健康码就可以进候车点,但是上公交的时候还是需要看健康码,一般情况下从高铁下来的,各个地方的人都有,而且也不太清楚这边上公交车需要查验健康码,我的一个看法是候车的时候就应该放个横幅告示,或者再配合喇叭循环播放,请提前准备好健康码,上车前需要查验,因为像这周的情况,我乘坐的那辆车是间隔时间比较长,而且终点是工业开发区,可能是比较多外来务工人员的目的地,正好这部分人可能对于操作手机检验健康码这个事情不太熟悉,所以结果就是头上几个不知道怎么搞出来健康码,然后让几乎有满满一整车的人在后面堵着,司机又非常厌烦那些没有提前出示健康码的,有位乘客搞得久了点,还被误以为没刷卡买票,差点吵起来,其实公共交通或者高铁站负责的在公交指引路线上多写一句上车前需要查验健康码,可能就能改善比较多,还有就是那个积水的路,这个吐槽起来就一大坨了,整个绍兴像 dayuejin 一样到处都是破路。
    第二个就是来杭州的时候,经过人行横道,远处车道的公交车停下来等我们了,为了少添麻烦总想快点穿过去,但是这时靠近我们的车道(晚上光线较暗,可见度不佳)有一辆从远处来的奥迪 A4 还是 A5 这种的车反而想加速冲过去,如果少看一下可能我已经残了,交规考的靠近人行道要减速好像基本都是个摆设了,杭州也只有公交车因为一些考核指标原因会主动礼让,人其实需要有同理心,虽然可能有些人是开车多于骑车走路的,但是总也不可能永远不穿人行道吧,甚至这些人可能还会在人行道红灯的时候走过去。这个事情不是吐槽公共交通的,只是也有些许关系,想起来还有一件事也是刚才来杭州的时候看到的,等公交的时候看到有辆路虎要加塞,而目标车道刚好是辆大货车,大货车看到按了喇叭,路虎犹豫了下还是挤进去了,可能是对路虎的扛撞性能非常自信吧,反正我是挺后怕的,这种级别的车,被撞了的话估计还是鸡蛋撞石头,吨位惯性在那,这里再延伸下,挺多开豪车的人好像都觉得这路上路权更大一些,谁谁都得让着他,可能实际吃亏的不多,所以越加巩固了这种思维,当真的碰到不管的可能就会明白了,路权这个事情在天朝也基本没啥人重视,也没想说个结论,就到这吧

    -]]>
    - - 生活 - 公交 - - - 生活 - 开车 - 加塞 - 糟心事 - 规则 - 公交 - 路政规划 - 基础设施 - 杭州 - 健康码 - -
    - - 关于读书打卡与分享 - /2021/02/07/%E5%85%B3%E4%BA%8E%E8%AF%BB%E4%B9%A6%E6%89%93%E5%8D%A1%E4%B8%8E%E5%88%86%E4%BA%AB/ - 最近群里大佬发起了一个读书打卡活动,需要每天读一会书,在群里打卡分享感悟,争取一个月能读完一本书,说实话一天十分钟的读书时间倒是问题不大,不过每天都要打卡,而且一个月要读完一本书,其实难度还是有点大的,不过也想试试看。
    之前某某老大给自己立了个 flag,说要读一百本书,这对我来说挺难实现的,一则我也不喜欢书只读一小半,二则感觉对于喜欢看的内容范围还是比较有限制,可能也算是比较矫情,不爱追热门的各类东西,因为往往会有一些跟大众不一致的观点看法,显得格格不入。所以还是这个打卡活动可能会比较适合我,书是人类进步的阶梯。
    到现在是打卡了三天了,读的主要是白岩松的《幸福了吗》,对于白岩松,我们这一代人是比较熟悉,并且整体印象比较不错的一个央视主持人,从《焦点访谈》开始,到疫情期间的各类一线节目,可能对我来说是个三观比较正,敢于说一些真话的主持人,这中间其实是有个空档期,没怎么看电视,也不太关注了,只是在疫情期间的节目,还是一如既往地给人一种可靠的感觉,正好有一次偶然微信读书推荐了白岩松的这本书,就看了一部分,正好这次继续往下看,因为相对来讲不会很晦涩,并且从这位知名央视主持人的角度分享他的过往和想法看法,还是比较有意思的。
    从对汶川地震,08 年奥运等往事的回忆和一些细节的呈现,也让我了解比较多当时所不知道的,特别是汶川地震,那时的我还在读高中,真的是看着电视,作为“猛男”都忍不住泪目了,共和国之殇,多难兴邦,但是这对于当事人来说,都是一场醒不过来的噩梦。
    然后是对于足球的热爱,其实光这个就能掰扯很多,因为我不爱足球,只爱篮球,其中原因有的没的也挺多可以说的,但是看了他的书,才能比较深入的了解一个足球迷,对足球,对中国足球,对世界杯,对阿根廷的感情。
    接下去还是想能继续坚持下去,加油!

    -]]>
    - - 生活 - 读后感 - 白岩松 - 幸福了吗 - - - 读后感 - 读书 - 打卡 - 幸福了吗 - 足球 - -
    - - 周末我在老丈人家打了天小工 - /2020/08/16/%E5%91%A8%E6%9C%AB%E6%88%91%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E6%89%93%E4%BA%86%E5%A4%A9%E5%B0%8F%E5%B7%A5/ - 这周回家提前约好了要去老丈人家帮下忙,因为在翻修下老房子,活不是特别整的那种,所以大部分都是自己干,或者找个大工临时干几天(我们这那种比较专业的泥工匠叫做大工),像我这样去帮忙的,就是干点小工(把给大工帮忙的,干些偏体力活的叫做小工)的活。从大学毕业以后真的蛮少帮家里干活了,以前上学的时候放假还是帮家里淘个米,简单的扫地拖地啥的,当然刚高考完的时候,还去我爸厂里帮忙干了几天的活,实在是比较累,不过现在想着是觉得自己那时候比较牛,而不是特别排斥这个活,相对于现在的工作来说,导致了一系列的职业病,颈椎腰背都很僵硬,眼镜也不好,还有反流,像我爸那种活反而是脑力加体力的比较好的结合。
    这一天的活前半部分主要是在清理厨房,瓷砖上的油污和墙上天花板上即将脱落的石灰或者白色涂料层,这种活特别是瓷砖上的油污,之前在自己家里也干活,还是比较熟悉的,不过前面主要是LD 在干,我主要是先搞墙上和天花板上的,干活还是很需要技巧的,如果直接去铲,那基本我会变成一个灰人,而且吸一鼻子灰,老丈人比较专业,先接上软管用水冲,一冲效果特别好,有些石灰涂料层直接就冲掉了,冲完之后先用带加长杆的刀片铲铲了一圈墙面,说实话因为老房子之前租出去了,所以墙面什么的被糟蹋的比较难看,一层一层的,不过这还算还好,后面主要是天花板上的,这可难倒我了,从小我爸妈是比较把我当小孩管着,爬上爬下的基本都是我爸搞定,但是到了老丈人家也只得硬着头皮上了,爬到跳(一种建筑工地用的架子)上,还有点晃,小心脏扑通扑通跳,而且带加长杆的铲子还是比较重的,铲一会手也有点累,不过坚持着铲完了,上面还是比较平整的,不过下来的时候又把我难住了🤦‍♂️,往下爬的时候有根杆子要跨过去,由于裤子比较紧,强行一把跨过去怕抽筋,所以以一个非常尴尬的姿势停留休息了一会,再跨了过去,幸好事后问 LD,他们都没看到,哈哈哈,然后就是帮忙一起搞瓷砖上的油污,这个太有经验了,不过老丈人更有意思,一会试试啤酒,一会用用沙子,后面在午饭前基本就弄的比较干净了,就坐着等吃饭了,下午午休了会,就继续干活了。
    下午是我这次体验的重点了,因为要清理以前贴的墙纸,真的是个很麻烦的活,只能说贴墙纸的师傅活干得太好了,基本不可能整个撕下来,想用铲子一点点铲下来也不行,太轻了就只铲掉表面一层,太重了就把墙纸跟墙面的石灰啥的整个铲下来了,而且手又累又酸,后来想着是不是继续用水冲一下,对着一小面墙试验了下,效果还不错,但是又发现了个问题,那一面墙又有一块是后面糊上去的,铲掉外层的石灰后不平,然后就是最最重头的,也是让我后遗症持续到第二天的,要把那一块糊上去的水泥敲下来,毛估下大概是敲了80%左右,剩下的我的手已经不会用力了,因为那一块应该是要糊上去的始作俑者,就一块里面凹进去的,我拿着榔头敲到我手已经没法使劲了,而且大下午,感觉没五分钟,我的汗已经糊满脸,眼睛也睁不开,不然就流到眼睛里了,此处获得成就一:用榔头敲墙壁,也是个技术加体力的活,而且需要非常好的技巧,否则手马上就废了,敲下去的反作用力,没一会就不行了,然后是看着老丈人兄弟帮忙拆一个柜子,在我看来是个几天都搞不定的活,他轻轻松松在我敲墙的那会就搞定了,以前总觉得我干的活非常有技术含量,可是这个事情真的也是很有技巧啊,它是个把一间房间分隔开的柜子,从底到顶上,还带着门,我还在旁边帮忙撬一下脚踢,一根木条撬半天,唉,成就二:专业的人就是不一样。
    最后就是成就三了:我之前沾沾自喜的跑了多少步,做了什么锻炼,其实都是渣渣,像这样干一天活,没经历过的,基本大半天就废了,反过来说,如果能经常去这么干一天活,跑步啥的都是渣渣,消耗的能量远远超过跑个十公里啥的。

    -]]>
    - - 生活 - 运动 - 跑步 - 干活 - - - 生活 - 运动 - 减肥 - 跑步 - 干活 - -
    - - 分享记录一下一个 git 操作方法 - /2022/02/06/%E5%88%86%E4%BA%AB%E8%AE%B0%E5%BD%95%E4%B8%80%E4%B8%8B%E4%B8%80%E4%B8%AA-git-%E6%93%8D%E4%BD%9C%E6%96%B9%E6%B3%95/ - 前阵子一个同事因为发现某个分支上的代码好像有缺失导致无法正常运行,然后就对比了下把缺失的代码从另一个分支上拷了过来,可能有所欠考虑,不过主要是说下操作过程和最后的处理方法,这位同学的操作是改一些代码commit 一下,这样的 commit 了大概五六次,并且已经 push 到了远端,然后就在想要怎么去处理,在本地可以 reset,已经到远端了,一个很不优雅的操作就是本地 reset 了用 force push,这个当然是不可取的,然后就是 revert 了,但是又已经 commit 了好几次了,网上看了下,好像处理方法还挺成熟的,git revert 命令本质上就是一个逆向的 git cherry-pick 操作。 它将你提交中的变更的以完全相反的方式的应用到一个新创建的提交中,本质上就是撤销或者倒转。可以理解为就是提交一个反向的操作,这里其实我们可以用range revert来进行 git revert, 用法就是

    -
    git revert OLDER_COMMIT^..NEWER_COMMIT
    -

    这样就可以解决上面的问题了,但是还有个问题是这样会根据前面的 commit 数量提交对应数量个 revert commit 会显得比较乱,如果要比较干净的 commit 历史,
    可以看下 git revert 命令说明

    然后就可以用 -n 参数,表示不自动提交

    -
    git revert -n OLDER_COMMIT^..NEWER_COMMIT
    -git commit -m "revert OLDER_COMMIT to NEWER_COMMIT"
    - - -]]>
    - - git - 小技巧 - - - git - -
    - - 分享记录一下一个 scp 操作方法 - /2022/02/06/%E5%88%86%E4%BA%AB%E8%AE%B0%E5%BD%95%E4%B8%80%E4%B8%8B%E4%B8%80%E4%B8%AA-scp-%E6%93%8D%E4%BD%9C%E6%96%B9%E6%B3%95/ - scp 是个在服务器之间拷贝文件的一个常用命令,有时候有个场景是比如我们需要拷贝一些带有共同前缀的文件,但是有一个问题是比如我们有使用 zsh 的话,会出现一个报错,

    -
    zsh: no matches found: root@100.100.100.100://root/prefix*
    -

    这里就比较奇怪了,这个前缀的文件肯定是有的,这里其实是由于 zsh 会对 * 进行展开,这个可以在例如 ls 命令在使用中就可以发现 zsh 有这个特性
    需要使用双引号或单引号将路径包起来或者在*之前加反斜杠\来阻止对*展开和转义

    -
    scp root@100.100.100.100://root/prefix* .
    -

    通过使用双引号"进行转义

    -
    scp root@100.100.100.100:"//root/prefix*" .
    -

    或者可以将 shell 从 zsh 切换成 bash

    -]]>
    - - shell - 小技巧 - - - scp - -
    - - 在老丈人家的小工记三 - /2020/09/13/%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E7%9A%84%E5%B0%8F%E5%B7%A5%E8%AE%B0%E4%B8%89/ - 小工记三

    前面这两周周末也都去老丈人家帮忙了,上上周周六先是去了那个在装修的旧房子那,把三楼收拾了下,因为要搬进来住,来不及等二楼装修好,就要把三楼里的东西都整理干净,这个活感觉是比较 easy,原来是就准备把三楼当放东西仓储的地方了,我们乡下大部分三层楼都是这么用的,这次也是没办法,之前搬进来的木头什么的都搬出去,主要是这上面灰尘太多,后面清理鼻孔的时候都是黑色的了,把东西都搬出去以后主要是地还是很脏,就扫了地拖了地,因为是水泥地,灰尘又太多了,拖起来都是会灰尘扬起来,整个脱完了的确干净很多,然而这会就出了个大乌龙,我们清理的是三楼的西边一间,结果老丈人上来说要住东边那间的🤦‍♂️,不过其实西边的也得清理,因为还是要放被子什么的,不算是白费功夫,接着清理东边那间,之前这个房子做过群租房,里面有个高低铺的床,当时觉得可以用在放被子什么的就没扔,只是拆掉了放旁边,我们就把它擦干净了又装好,发现螺丝🔩少了几个,亘古不变的真理,拆了以后装要不就多几个要不就少几个,不是很牢靠,不过用来放放被子省得放地上总还是可以的,对了前面还做了个事情就是铺地毯,其实也不是地毯,就是类似于墙布雨篷布那种,别人不用了送给我们的,三楼水泥地也不会铺瓷砖地板了就放一下,干净好看点,不过大小不合适要裁一下,那把剪刀是真的太难用了,我手都要抽筋了,它就是刀口只有一小个点是能剪下来的,其他都是钝的,后来还是用刀片直接裁,铺好以后,真的感觉也不太一样了,焕然一新的感觉
    差不多中午了就去吃饭了,之前两次是去了一家小饭店,还是还比较干净,但是店里菜不好吃,还死贵,这次去了一家小快餐店,口味好,便宜,味道是真的不错,带鱼跟黄鱼都好吃,一点都不腥,我对这类比较腥的鱼真的是很挑剔的,基本上除了家里做的很少吃外面的,那天抱着试试的态度吃了下,真的还不错,后来丈母娘说好像这家老板是给别人结婚喜事酒席当厨师的,怪不得做的好吃,其实本来是有一点小抗拒,怕不干净什么的,后来发现菜很好吃,而且可能是老丈人跟干活的师傅去吃的比较多,老板很客气,我们吃完饭,还给我们买了葡萄吃,不过这家店有一个槽点,就是饭比较不好吃,有时候会夹生,不过后面聊起来其实是这种小菜馆饭点的通病,烧的太早太多容易多出来浪费,烧的迟了不够吃,而且大的电饭锅比较不容易烧好。
    下午前面还是在处理三楼的,窗户上各种钉子,实在是太多了,我后面在走廊上排了一排🤦‍♂️,有些是直接断了,有些是就撬了出来,感觉我在杭州租房也没有这样子各种钉钉子,挂下衣服什么的也不用这么多吧,比较不能理解,搞得到处都是钉子。那天我爸也去帮忙了,主要是在卫生间里做白缝,其实也是个技术活,印象中好像我小时候自己家里也做过这个事情,但是比较模糊了,后面我们三楼搞完了就去帮我爸了,前面是我老婆二爹在那先刷上白缝,这里叫白缝,有些考究的也叫美缝,就是瓷砖铺完之后的缝,如果不去弄的话,里面水泥的颜色就露出来了,而且容易渗水,所以就要用白水泥加胶水搅拌之后糊在缝上,但是也不是直接糊,先要把缝抠一抠,因为铺瓷砖的还不会仔细到每个缝里的水泥都是一样满,而且也需要一些空间糊上去,不然就太表面的一层很容易被水直接冲掉了,然后这次其实也不是用的白水泥,而是直接现成买来就已经配好的用来填缝的,兑水搅拌均匀就好了,后面就主要是我跟我爸在搞,那个时候真的觉得我实在是太胖了,蹲下去真的没一会就受不了了,膝盖什么的太难受了,后面我跪着刷,然后膝盖又疼,也是比较不容易,不过我爸动作很快,我中间跪累了休息一会,我爸就能搞一大片,后面其实我也没做多少(谦虚一下),总体来讲这次不是很累,就是蹲着跪着腿有点受不了,是应该好好减肥了。

    -]]>
    - - 生活 - 运动 - 跑步 - 干活 - - - 生活 - 小技巧 - 运动 - 减肥 - 跑步 - 干活 - -
    - - 在老丈人家的小工记四 - /2020/09/26/%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E7%9A%84%E5%B0%8F%E5%B7%A5%E8%AE%B0%E5%9B%9B/ - 小工记四

    第四周去的时候让我们去了现在在住的房子里,去三楼整理东西了,蛮多的东西需要收拾整理,有些需要丢一下,以前往往是把不太要用的东西就放三楼了,但是后面就不会再去收拾整理,LD 跟丈母娘负责收拾,我不太知道哪些还要的,哪些不要了,而且本来也不擅长这种收拾🤦‍♂️,然后就变成她们收拾出来废纸箱,我负责拆掉,压平,这时候终于觉得体重还算是有点作用,总体来说这个事情我其实也不擅长,不擅长的主要是捆起来,可能我总是小题大做,因为纸箱大小不一,如果不做一下分类,然后把大的折小一些的话,直接绑起来,容易拎起来就散掉了,而且一些鞋盒子这种小件的纸盒会比较薄,冰箱这种大件的比较厚,厚的比较不容易变形,需要大力踩踏,而且扎的时候需要用体重压住捆实了之后那样子才是真的捆实的,不然待会又是松松垮垮容易滑出来散架,因为压住了捆好后,下来了之后箱子就会弹开了把绳子崩紧实,感觉又是掌握到生活小技巧了😃,我这里其实比较单调无聊,然后 LD 那可以说非常厉害了,一共理出来 11 把旧电扇,还有好多没用过全新的不锈钢脸盆大大小小的,感觉比店里在卖的还多,还有是有比较多小时候的东西,特别多小时候的衣服,其实这种对我来说最难了,可能需要读一下断舍离,蛮多东西都舍不得扔,但是其实是没啥用了,然后还占地方,这天应该算是比较轻松的一天了,上午主要是把收拾出来要的和不要的搬下楼,然后下午要去把纸板给卖掉。中午还是去小快餐店吃的,在住的家里理东西还有个好处就是中午吃完饭可以小憩一下,因为我个人是非常依赖午休的,不然下午完全没精神,而且心态也会比较烦躁,一方面是客观的的确比较疲惫,另一方面应该主观心理作用也有点影响,就像上班的时候也是觉得不午睡就会很难受,心理作用也有一点,不过总之能睡还是睡一会,真的没办法就心态好点,吃完午饭之后我们就推着小平板车去收废品的地方卖掉了上午我收拾捆起来的纸板,好像卖了一百多,都是直接过地磅了,不用一捆一捆地称,不过有个小插曲,那里另外一个大爷在倒他的三轮车的时候撞了我一下,还好车速慢,屁股上肉垫后,接下来就比较麻烦了,是LD 她们两姐妹从小到大的书,也要去卖掉,小平板车就载不下了,而且着实也不太好推,轮子不太平,导致推着很累,书有好多箱,本来是想去亲戚家借电动三轮车,因为不会开摩托的那种,摩托的那种 LD 邻居家就有,可是到了那发现那个也是很大,而且刹车是用脚踩的那种,俺爹不太放心,就说第二天周日他有空会帮忙去载了卖掉的,然后比较搞笑的来了,丈母娘看错了时间,以为已经快五点了,就让我们顺便在车里带点东西去在修的房子,放到那边三楼去,到了那还跟老丈人说已经这么迟了要赶紧去菜场买菜了,结果我们回来以后才发现看错了一个小时🤦‍♂️。
    前面可以没提,前三周去的我们一般就周六去一天,然后周日因为要早点回杭州,而且可能想让我们周日能休息下,但是这周就因为周日的时候我爸要去帮忙载书,然后 LD 姐姐也会过来收拾东西,我们周日就又去整理收拾了,周日由于俺爹去的很早,我过去的时候书已经木有了,主要是去收拾东西了,把一些有用没用的继续整理,基本上三楼的就处理完毕了,舒了一大口气,毕竟让丈母娘一个人收拾实在是太累了,但是要扔掉的衣服比较棘手,附近知道的青蛙回收桶被推倒了,其他地方也不知道哪里有,我们就先载了一些东西去在修的房子那,然后去找青蛙桶,结果一个小区可以进,但是已经满了,另一个不让进,后来只能让 LD 姐姐带去她们小区扔了,塞了满满一车。因为要赶回杭州的车就没有等我爸一起回来,他还在那帮忙搞卫生间的墙缝。
    虽然这两天不太热,活也不算很吃力,不过我这个体重和易出汗的体质,还是让短袖不知道湿透了多少次,灌了好多水和冰红茶(下午能提提神),回来周一早上称体重也比较喜人,差一点就达到阶段目标,可以想想去哪里吃之前想好的烤肉跟火锅了(估计吃完立马回到解放前)。

    -]]>
    - - 生活 - 运动 - 跑步 - 干活 - - - 生活 - 小技巧 - 运动 - 减肥 - 跑步 - 干活 - -
    - - 在老丈人家的小工记五 - /2020/10/18/%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E7%9A%84%E5%B0%8F%E5%B7%A5%E8%AE%B0%E4%BA%94/ - 终于回忆起来了,年纪大了写这种东西真的要立马写,不然很容易想不起来,那天应该是 9 月 12 日,也就是上周六,因为我爸也去了,而且娘亲(丈母娘,LD 这么叫,我也就随了她这么叫,当然是背后,当面就叫妈)也在那,早上一到那二爹就给我爸指挥了活,要挖一条院子的出水道,自己想出来的词,因为觉得下水道是竖的,在那稍稍帮了一会会忙,然后我还是比较惯例的跟着 LD 还有娘亲去住的家里,主要是老丈人可能也不太想让我干太累的活,因为上次已经差不多把三楼都整理干净了,然后就是二楼了,二楼说实话我也帮不上什么忙,主要是衣服被子什么的,正好是有张以前小孩子睡过的那种摇篮床,看上去虽然有一些破损,整体还是不错的,所以打算拿过去,我就负责把它拆掉了,比较简单的是只要拧螺丝就行了,但是其实是用了好多好多工具才搞定的,一开始只要螺丝刀就行了,但是因为年代久了,后面的螺帽也有点锈住或者本身就会串着会一起动,所以拿来了个扳手,大部分的其实都被这两个工具给搞定了,但是后期大概还剩下四分之一的时候,有一颗完全锈住,并且螺纹跟之前那些都不一样,但是这个已经是最大的螺丝刀了,也没办法换个大的了,所以又去找来个一字的,因为十字的不是也可以用一字的拧嘛,结果可能是我买的工具箱里的一字螺丝刀太新了,口子那很锋利,直接把螺丝花纹给划掉了,大的小的都划掉,然后真的变成凹进去一个圆柱体了,然后就想能不能隔一层布去拧,然而因为的确是已经变成圆柱体了,布也不太给力,不放弃的我又去找来了个老虎钳,妄图把划掉的螺丝用老虎钳钳住,另一端用扳手拧开螺帽,但是这个螺丝跟螺帽真的是生锈的太严重了,外加上钳不太牢,完全是两边一起转,实在是没办法了,在征得同意之后,直接掰断了,火死了,一颗螺丝折腾得比我拆一张床还久,那天因为早上去的也比较晚了,然后就快吃午饭了,正好想着带一点东西过去,就把一些脸盆,泡脚桶啥的拿过去了,先是去吃了饭,还是在那家快餐店,菜的口味还是依然不错,就是人比较多,我爸旁边都是素菜,都没怎么吃远一点的荤菜,下次要早点去,把荤菜放我爸旁边😄(PS:他们家饭还是依然尴尬,需要等),吃完就开到在修的房子那把东西拿了出来,我爸已经动作很快的打了一小半的地沟了,说实话那玩意真的是很重,我之前把它从三楼拿下来,就觉得这个太重了,这次还要用起来,感觉我的手会分分钟废掉,不过一开始我还是跟着LD去了住的家里,惯例睡了午觉,那天睡得比较踏实,竟然睡了一个小时,醒了想了下,其实LD她们收拾也用不上我(没啥力气活),我还是去帮我爸他们,跟LD说了下就去了在修的老房子那,两位老爹在一起钻地,看着就很累,我连忙上去想换一会他们,因为刚好是钻到混凝土地线,特别难,力道不够就会滑开,用蛮力就是钻进去拔不出来,原理是因为本身浇的时候就是很紧实的,需要边钻边动,那家伙实在是太重了,真的是汗如雨下,基本是三个人轮流来,我是个添乱的,经常卡住,然后把地线,其实就是一条混凝土横梁,里面还有14跟18的钢筋,需要割断,这个割断也是很有技巧,钢筋本身在里面是受到挤压的,直接用切割的,到快断掉的时候就会崩一下,非常危险,还是老丈人比较有经验,要留一点点,然后直接用榔头敲断就好了,本来以为这个是最难的了,结果下面是一块非常大的青基石,而且也是石头跟石头挤一块,边上一点点打钻有点杯水车薪,后来是用那种螺旋的钻,钻四个洞,相对位置大概是个长方形,这样子把中间这个长方形钻出来就比较容易地能拿出来了,后面的也容易搞出来了,后面的其实难度不是特别大了,主要是地沟打好之后得看看高低是不是符合要求的,不能本来是往外排水的反而外面高,这个怎么看就又很有技巧了,一般在地上的只要侧着看一下就好了,考究点就用下水平尺,但是在地下的,不用水平尺,其实可以借助于地沟里正要放进去的水管,放点水进去,看水往哪流就行了,铺好水管后,就剩填埋的活了,不是太麻烦了,那天真的是累到了,打那个混凝土的时候我真的是把我整个人压上去了,不过也挺爽的,有点把平时无处发泄的蛮力发泄出去了。

    -]]>
    - - 生活 - 运动 - 跑步 - 干活 - - - 生活 - 小技巧 - 运动 - 减肥 - 跑步 - 干活 - -
    - - 寄生虫观后感 - /2020/03/01/%E5%AF%84%E7%94%9F%E8%99%AB%E8%A7%82%E5%90%8E%E6%84%9F/ - 寄生虫这部电影在获得奥斯卡之前就有关注了,豆瓣评分很高,一开始看到这个片名以为是像《铁线虫入侵》那种灾难片,后来看到男主,宋康昊,也是老面孔了,从高中时候在学校操场组织看的《汉江怪物》,有点二的感觉,后来在大学寝室电脑上重新看的时候,室友跟我说是韩国国宝级演员,真人不可貌相,感觉是个呆子的形象。

    -

    但是你说这不是个灾难片,而是个反映社会问题的,就业比较容易往这个方向猜,只是剧情会是怎么样的,一时也没啥头绪,后来不知道哪里看了下一个剧情透露,是一个穷人给富人做家教,然后把自己一家都带进富人家,如果是这样的话可能会把这个怎么带进去作为一个主线,不过事实告诉我,这没那么重要,从第一步朋友的介绍,就显得无比顺利,要去当家教了,作为一个穷成这样的人,瞬间转变成一个衣着得体,言行举止都没让富人家看出破绽的延世大学学生,这真的挺难让人理解,所谓江山易改,本性难移,还有就是这人也正好有那么好能力去辅导,并且诡异的是,多惠也是瞬间就喜欢上了男主,多惠跟将男主介绍给她做家教,也就是多惠原来的家教敏赫,应该也有不少的相处时间,这变了有点大了吧,当然这里也可能因为时长需要,如果说这一点是因为时长,那可能我所有的槽点都是因为这个吧,因为我理解的应该是把家里的人如何一步步地带进富人家,这应该是整个剧情的一个需要更多铺垫去克服这个矛盾点,有时候也想过如果我去当导演,是能拍出个啥,没这个机会,可能有也会是很扯淡的,当然这也不能阻拦我谈谈对这个点的一些看法,毕竟评价一台电冰箱不是说我必须得自己会制冷对吧,这大概是我觉得这个电影的第一个槽点,接下去接二连三的,就是我说的这个最核心的矛盾点,不知道谁说过,这种影视剧应该是源自于生活又高于生活,越是好的作品,越要接近生活,这样子才更能有感同身受。

    -

    接下去的点是金基宇介绍金基婷去给多颂当美术家教,这一步又是我理解的败笔吧,就怎么说呢,没什么铺垫,突然从一个社会底层的穷姑娘,转变成一个气场爆表,把富人家太太唬得一愣一愣的,如果说富太太是比较简单无脑的,那富人自己应该是比较有见识而且是做 IT 的,给自己儿子女儿做家教的,查查底细也很正常吧,但是啥都没有,然后呢,她又开始耍司机的心机了,真的是莫名其妙了,司机真的很惨,窈窕淑女君子好逑,而且这个操作也让我摸不着头脑,这是多腹黑并且有经验才会这么操作,脱内裤真的是让我看得一愣愣的,更看得我一愣一愣的,富人竟然也完全按着这个思路去想了,完全没有别的可能呢,甚至可以去查下行车记录仪或者怎样的,或者有没有毛发体液啥的去检验下,毕竟金基婷也乘坐过这辆车,但是最最让我不懂的还是脱内裤这个操作,究竟是什么样的人才会的呢,值得思考。

    -

    金基泽和忠淑的点也是比较奇怪,首先是金基泽,引起最后那个杀人事件的一个由头,大部分观点都是人为朴社长在之前跟老婆啪啪啪的时候说金基泽的身上有股乘地铁的人的味道,简而言之就是穷人的味道,还有去雯光丈夫身下拿钥匙是对金基泽和雯光丈夫身上的味道的鄙夷,可是这个原因真的站不住脚,即使是同样经济水平,如果身上有比较重的异味,背后讨论下,或者闻到了比较重的味道,有不适的表情和动作很正常吧,像雯光丈夫,在地下室里呆了那么久,身上有异味并且比较重太正常了,就跟在厕所呆久了不会觉得味道大,但是从没味道的地方一进有点味道的厕所就会觉得异样,略尴尬的理由;再说忠淑呢,感觉是太厉害了,能胜任这么一家有钱人的各种挑剔的饮食口味要求的保姆职位,也是让人看懵逼了,看到了不禁想到一个问题,这家人开头是那么地穷,不堪,突然转变成这么地像骗子家族,如果有这么好的骗人能力,应该不会到这种地步吧,如果真的是那么穷,没能力,没志气,又怎么会突然变成这么厉害呢,一家人各司其职,把富人家唬得团团转,而这个前提是,这些人的确能胜任这四个位置,这就是我非常不能理解的点。

    -

    然后说回这个标题,寄生虫,不知道是不是翻译过来不准确,如果真的是叫寄生虫的话,这个寄生虫智商未免也太低了,没有像新冠那样机制,致死率低一点,传染能力强一点,潜伏期也能传染,这个寄生虫第一次受到免疫系统的攻击就自爆了;还有呢,作为一个社会比较低层的打工者,乡下人,对这个审题也是不太审的清,是指这一家人是社会的寄生虫,不思进取,并且死的应该,富人是傻白甜,又有钱又善良,这是给有钱人洗地了还是啥,这个奥斯卡真不知道是怎么得的,总觉得奥斯卡,甚至低一点,豆瓣,得奖的,评分高的都是被一群“精英党”把持的,有黑人主角的,得分高;有同性恋的,得分高;结局惨的,得分高;看不懂的,得分高;就像肖申克的救赎,真不知道是哪里好了,最近看了关于明朝那些事的三杨,杨溥的经历应该比这个厉害吧,可是外国人看不懂,就像外国人不懂中国为什么有反分裂国家法,经历了鸦片战争,八国联军,抗日战争等等,其实跟外国对于黑人的权益的问题,因为有南北战争,所以极度重视这个问题,相应的中国也有自己的历史,请理解。

    -

    简而言之我对寄生虫的评分大概 5~6 分吧。

    -]]>
    - - 生活 - 影评 - 2020 - - - 生活 - 影评 - 寄生虫 - -
    - - 屯菜惊魂记 - /2022/04/24/%E5%B1%AF%E8%8F%9C%E6%83%8A%E9%AD%82%E8%AE%B0/ - 因某国际大都市的给力表现,昨儿旁边行政区启动应急响应,同事早上就在群里说要去超市买菜了,到了超市人还特别多,由于来的就是我们经常去的那家超市,一方面为了安全,另一方面是怕已经抢不到了,就去了另一家比较远的超市,开车怕没车位就骑了小电驴,还下着小雨,结果到了超市差不多 12 点多,超市里出来的人都是推着一整车一整车的物资,有些比较像我,整箱的泡面,好几提纸巾,还有各种吃的,都是整箱整箱的,进了超市发现结账包括自助结账的都排很长的队,到了蔬菜货架附近,差点哼起那首歌“空空如也~”,新鲜蔬菜基本已被抢空,只剩下一些卖相不太好的土豆番薯之类的,也算是意料之外情理之中了,本来以为这家超市稍微离封控区远一些会空一点,结果就是所谓的某大都市封控了等物资,杭州市是屯了物资等封控,新鲜蔬菜没了我们也只能买点其他的,神奇的是水果基本都在,可能困难时期水果不算必需品了?还是水果基本人人都已经储备了很多,不太能理解,虽然水果还在,但是称重的地方也还有好多人排队,我们采取了并行策略,LD 在那排队,遥控指挥我去拿其他物资,拿了点碱水面,黑米,那黑米的时候还闹了个乌龙,因为前面就是散装鸡蛋的堆货的地方,结果我们以为是在那后面排队,结果称重那个在那散步了,我们还在那排队,看到后面排队,那几个挑的人也该提醒下吧,几个鸡蛋挑了半天,看看人家大妈,直接拿了四盘,看了下牛奶货架也比较空,不过还有致优跟优倍,不过不算很实惠,本来想买,只是后来赶着去结账,就给忘了,称好了黑米去看了下肉,结果肉也没了,都在买猪蹄,我们也不太爱吃猪蹄,就买了点鸡胸肉,整体看起来我们买的东西真的有点格格不入,不买泡面(因为 LD 不让买了),也不屯啥米和鸡蛋,其实鸡蛋已经买了,米也买了,其他的本身冰箱小也放不下太多东西,我是觉得还可能在屯一点这那的,LD 觉得太多了,基本的米面油有了,其他调味品什么也有了。后面就是排队结账,我去排的时候刚好前面一个小伙子跟大妈在争执,大妈说我们差不多时间来的,你要排前面就前面,小伙子有点不高兴,觉得她就是插队,哈哈,平时一般这种剧情都是发生在我身上的,这会看着前面的吵起来还是很开心的,终于有跟我一样较真的人了,有时候总觉得我是个很纠结,很较真的人,但是我现在慢慢认可了这种较真,如果没有人指出来这种是插队行为,是不对的,就会有越来越多的人觉得是可以随意插队的,正确的事应该要坚持,很多情况大家总是觉得多一事不如少一事,鸡毛蒜皮的没什么好计较的,正是这种想法,那么多人才不管任何规则,反而搞得像遵守规则都是傻 X 似的。回到屯物资,后面结账排到队了也没来得及买原来想买的花生牛奶什么的,毕竟那么多人排着队,回家后因为没有蔬菜,结果就只能吃干菜汤和饭了

    -]]>
    - - 生活 - - - 生活 - 囤物资 - -
    - - 我是如何走上跑步这条不归路的 - /2020/07/26/%E6%88%91%E6%98%AF%E5%A6%82%E4%BD%95%E8%B5%B0%E4%B8%8A%E8%B7%91%E6%AD%A5%E8%BF%99%E6%9D%A1%E4%B8%8D%E5%BD%92%E8%B7%AF%E7%9A%84/ - 这周因为没有准备技术方面的内容加之之前有想分享下我和跑步的一些事情,我从小学开始就是个体育渣,因为体重大非常胖,小学的时候要做仰卧起坐,基本是一个都起不来,然后那时候跑步也是要我命那种,跟另外一个比较胖的同学在跑步队尾苟延残喘,只有立定跳远还行。

    -

    时光飞逝,我在初中高中的时候因为爱打篮球,以为自己体质已经有了质的变化,所以在体育课跑步的时候妄图跟一位体育非常好的同学一起跑,结果跟的快断气了,最终还是确认了自己是个体育渣,特别是到了大学的第一次体测跑一千米,跑完直接吐了,一则是大学太宅不运动,二则的确是底子不好。那么怎么会去跑步了呢,其实也没什么特殊的原因,就是工作以后因为运动得更少,体质差,而且越来越胖,所以就想运动下,加之跑步也是我觉得成本最低的运动了,刚好那时候17 年租的地方附近小区周围的路车不太多,一圈刚好一公里多,就觉得开始跑跑看,其实想想以前觉得一千米是非常远的,学校塑胶跑道才 400 米,一千米要两圈半,太难了,但是后来在这个小区周围跑的时候好像跑了一圈以后还能再跑一点,最后跑了两圈,可把自己牛坏了,我都能跑两千米了,哈哈,这是个什么概念呢,大学里最让我绝望的两项体育相关的内容就是一千米和十二分钟跑,一千米把我跑吐了,十二分钟跑及格五圈半也能让我跑完花一周时间恢复以及提前一周心理压力爆炸,虽然我那时候跑的不快,但是已经能跑两千米了,瞬间让自己自信心爆炸,并且跑完步出完汗的感觉是非常棒的,毕竟吃奶茶鸡排都能心安理得了,谁叫我跑步了呢😄,其实现在回去看,那时候跑得还算快的,因为还比较瘦,现在要跑得那么快心跳就太快了,关于心跳什么的后面说,开始建立起自信心之后,对跑步这件事就开始不那么排斥跟害怕了,毕竟我能跑两千米了,然后试试三公里,哇,也可以了呢,三公里是什么概念呢,我大学里跑过最多的一次是十二分钟跑五圈半还是六圈,也就是两公里多,不到三公里,几乎是生涯最长了,一时间产生了一些我可能是个被埋没的运动天才的错觉,其实细想下也能明白,只是速度足够慢了就能跑多一点,毕竟提测一千米是要跑进四分钟才及格,自己跑的时候一千米跑六分多钟已经算不慢了(对我自己来说),但是即使是这样还是对把跑步坚持下去这件事有了很大的正面激励作用,并且由于那时候上下班骑车,整个体重控制的比较理想,导致一时间误会跑步就能非常快的减肥(其实这是我跑步历程中比较大的误区之一),因为会在跑步前后称下体重,如果跑个五公里(后面可以跑五公里了),可能体重就能降 0.5 千克,但实际上这只是这五公里跑步身体流失的水分,喝杯水就回来了,那时候能控制体重主要是骑车跟跑步一起的作用,并且工作压力相对来讲比较小,没有过劳肥。

    -

    后面其实跑步慢慢变得一个比较习惯的运动了,从三公里,到五公里,到七公里,再到十公里,十公里差不多对我来说是个坎,一直还不能比较轻松的跑十公里,可能近一两年好了一些(原谅我只是跟自己比较,跟那些大神比差得不知道多远),其实对我来说每次都是个突破,因为其实与他人比较没有特别大意义,比较顶尖的差得太远,比较普通的也不行,都会打击自信心,比较比我差的就更没意义了,所以其实能挑战自己,能把自己的上限提高才是最有意义的,这也是我看着朋友圈里的一些大神的速度除了佩服赞叹之外没什么其他的惭愧或者说嫌弃自己的感觉(阿 Q 精神😄)。

    -

    一直感性地觉得,跑步能解压,跑完浑身汗,有种把身体的负能量都排出去的感觉,也把吃太多的罪恶感排解掉了🤦‍♂️,之前朋友有看一本书,书名差不多叫越跑越接近自己,这个也是我觉得挺准确的一句话,当跑到接近极限了,还想再继续再跑一点,再跑一点就能突破自己上一次的最远记录了,再跑一点就能又一次突破自己了,成人以后,毕业以后,进入社会以后,世事总是难以件件顺遂,磕磕绊绊的往前走,总觉得要崩溃了,但是还是得坚持,再熬一下,再拼一下,可能还是失败,但人生呢,运气好的人和事总是小概率的,唯有面对挫折,还是日拱一卒,来日方长,我们再坚持下,没准下一次,没准再跑一会,就能突破自己,达到新的境界。

    -

    另外个人后期对跑步的一些知识和理解也变得深入一些,比如伤膝盖,其实跑步的确伤膝盖,需要做一些准备和防护,最好的是适合自己的跑鞋和比较好的路(最好的是塑胶跑道了),也要注意热身跟跑后的拉伸(虽然我做的很差),还有就是注意心率,每个人有自己的适宜心率,我这就不冒充科普达人了,可以自行搜索关键字,先说到这吧~

    -]]>
    - - 生活 - 运动 - 跑步 - - - 生活 - 运动 - 减肥 - 跑步 - -
    - - 搬运两个 StackOverflow 上的 Mysql 编码相关的问题解答 - /2022/01/16/%E6%90%AC%E8%BF%90%E4%B8%A4%E4%B8%AA-StackOverflow-%E4%B8%8A%E7%9A%84-Mysql-%E7%BC%96%E7%A0%81%E7%9B%B8%E5%85%B3%E7%9A%84%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94/ - Mysql 字符编码和排序规则

    这个一直是属于一知半解的状态,知道 utf8 跟 utf8mb4 的区别主要是能不能支持 emoji,但是具体后面配置的排序规则是用来干嘛,或者有什么区别,应该使用哪个,所以在 stackoverflow 上找了下,有两个比较不错的解答,就搬过来并且配合机翻做了点修改

    -

    原文

    For those people still arriving at this question in 2020 or later, there are newer options that may be better than both of these. For example, utf8mb4_0900_ai_ci.

    -

    All these collations are for the UTF-8 character encoding. The differences are in how text is sorted and compared.

    -

    _unicode_ci and _general_ci are two different sets of rules for sorting and comparing text according to the way we expect. Newer versions of MySQL introduce new sets of rules, too, such as _0900_ai_ci for equivalent rules based on Unicode 9.0 - and with no equivalent _general_ci variant. People reading this now should probably use one of these newer collations instead of either _unicode_ci or _general_ci. The description of those older collations below is provided for interest only.

    -

    MySQL is currently transitioning away from an older, flawed UTF-8 implementation. For now, you need to use utf8mb4 instead of utf8 for the character encoding part, to ensure you are getting the fixed version. The flawed version remains for backward compatibility, though it is being deprecated.

    -

    Key differences

    -

    utf8mb4_unicode_ci is based on the official Unicode rules for universal sorting and comparison, which sorts accurately in a wide range of languages.

    -

    utf8mb4_general_ci is a simplified set of sorting rules which aims to do as well as it can while taking many short-cuts designed to improve speed. It does not follow the Unicode rules and will result in undesirable sorting or comparison in some situations, such as when using particular languages or characters.

    -

    On modern servers, this performance boost will be all but negligible. It was devised in a time when servers had a tiny fraction of the CPU performance of today’s computers.

    -

    Benefits of utf8mb4_unicode_ci over utf8mb4_general_ci

    -

    utf8mb4_unicode_ci, which uses the Unicode rules for sorting and comparison, employs a fairly complex algorithm for correct sorting in a wide range of languages and when using a wide range of special characters. These rules need to take into account language-specific conventions; not everybody sorts their characters in what we would call ‘alphabetical order’.

    -

    As far as Latin (ie “European”) languages go, there is not much difference between the Unicode sorting and the simplified utf8mb4_general_cisorting in MySQL, but there are still a few differences:

    -

    For examples, the Unicode collation sorts “ß” like “ss”, and “Œ” like “OE” as people using those characters would normally want, whereas utf8mb4_general_cisorts them as single characters (presumably like “s” and “e” respectively).

    -

    Some Unicode characters are defined as ignorable, which means they shouldn’t count toward the sort order and the comparison should move on to the next character instead. utf8mb4_unicode_cihandles these properly.

    -

    In non-latin languages, such as Asian languages or languages with different alphabets, there may be a lot more differences between Unicode sorting and the simplified utf8mb4_general_cisorting. The suitability of utf8mb4_general_ciwill depend heavily on the language used. For some languages, it’ll be quite inadequate.

    -

    What should you use?

    -

    There is almost certainly no reason to use utf8mb4_general_cianymore, as we have left behind the point where CPU speed is low enough that the performance difference would be important. Your database will almost certainly be limited by other bottlenecks than this.

    -

    In the past, some people recommended to use utf8mb4_general_ciexcept when accurate sorting was going to be important enough to justify the performance cost. Today, that performance cost has all but disappeared, and developers are treating internationalization more seriously.

    -

    There’s an argument to be made that if speed is more important to you than accuracy, you may as well not do any sorting at all. It’s trivial to make an algorithm faster if you do not need it to be accurate. So, utf8mb4_general_ciis a compromise that’s probably not needed for speed reasons and probably also not suitable for accuracy reasons.

    -

    One other thing I’ll add is that even if you know your application only supports the English language, it may still need to deal with people’s names, which can often contain characters used in other languages in which it is just as important to sort correctly. Using the Unicode rules for everything helps add peace of mind that the very smart Unicode people have worked very hard to make sorting work properly.

    -

    What the parts mean

    -

    Firstly, ci is for case-insensitive sorting and comparison. This means it’s suitable for textual data, and case is not important. The other types of collation are cs (case-sensitive) for textual data where case is important, and bin, for where the encoding needs to match, bit for bit, which is suitable for fields which are really encoded binary data (including, for example, Base64). Case-sensitive sorting leads to some weird results and case-sensitive comparison can result in duplicate values differing only in letter case, so case-sensitive collations are falling out of favor for textual data - if case is significant to you, then otherwise ignorable punctuation and so on is probably also significant, and a binary collation might be more appropriate.

    -

    Next, unicode or general refers to the specific sorting and comparison rules - in particular, the way text is normalized or compared. There are many different sets of rules for the utf8mb4 character encoding, with unicode and general being two that attempt to work well in all possible languages rather than one specific one. The differences between these two sets of rules are the subject of this answer. Note that unicode uses rules from Unicode 4.0. Recent versions of MySQL add the rulesets unicode_520 using rules from Unicode 5.2, and 0900 (dropping the “unicode_” part) using rules from Unicode 9.0.

    -

    And lastly, utf8mb4 is of course the character encoding used internally. In this answer I’m talking only about Unicode based encodings.

    -

    翻译

    对于那些在 2020 年或之后仍会遇到这个问题的人,有可能比这两个更好的新选项。例如,utf8mb4_0900_ai_ci

    -

    所有这些排序规则都用于 UTF-8 字符编码。不同之处在于文本的排序和比较方式。

    -

    _unicode_ci_general_ci是两组不同的规则,用于按照我们期望的方式对文本进行排序和比较。较新版本的 MySQL 也引入了新的规则集,例如 _0900_ai_ci用于基于 Unicode 9.0 的等效规则 - 并且没有等效的 _general_ci变体。现在阅读本文的人可能应该使用这些较新的排序规则之一,而不是 _unicode_ci_general_ci。下面对那些较旧的排序规则的描述仅供参考。

    -

    MySQL 目前正在从旧的、有缺陷的 UTF-8 实现过渡。现在,您需要使用 utf8mb4 而不是 utf8作为字符编码部分,以确保您获得的是固定版本。有缺陷的版本仍然是为了向后兼容,尽管它已被弃用。

    -

    主要区别

    -

    utf8mb4_unicode_ci基于官方 Unicode 规则进行通用排序和比较,可在多种语言中准确排序。

    -

    utf8mb4_general_ci是一组简化的排序规则,旨在尽其所能,同时采用许多旨在提高速度的捷径。它不遵循 Unicode 规则,并且在某些情况下会导致不希望的排序或比较,例如在使用特定语言或字符时。

    -

    在现代服务器上,这种性能提升几乎可以忽略不计。它是在服务器的 CPU 性能只有当今计算机的一小部分时设计的。

    -

    utf8mb4_unicode_ci 相对于 utf8mb4_general_ci的优势

    -

    utf8mb4_unicode_ci使用 Unicode 规则进行排序和比较,采用相当复杂的算法在多种语言中以及在使用多种特殊字符时进行正确排序。这些规则需要考虑特定语言的约定;不是每个人都按照我们所说的“字母顺序”对他们的字符进行排序。

    -

    就拉丁语(即“欧洲”)语言而言,Unicode 排序和 MySQL 中简化的 utf8mb4_general_ci排序没有太大区别,但仍有一些区别:

    -

    例如,Unicode 排序规则将“ß”排序为“ss”,将“Œ”排序为“OE”,因为使用这些字符的人通常需要这些字符,而 utf8mb4_general_ci将它们排序为单个字符(大概分别像“s”和“e” )。

    -

    一些 Unicode 字符被定义为可忽略,这意味着它们不应该计入排序顺序,并且比较应该转到下一个字符。 utf8mb4_unicode_ci正确处理这些。

    -

    在非拉丁语言中,例如亚洲语言或具有不同字母的语言,Unicode 排序和简化的 utf8mb4_general_ci排序之间可能存在更多差异。 utf8mb4_general_ci的适用性在很大程度上取决于所使用的语言。对于某些语言,这将是非常不充分的。

    -

    你应该用什么?

    -

    几乎可以肯定没有理由再使用 utf8mb4_general_ci,因为我们已经将 CPU 速度低到会严重影响性能表现的时代远抛在脑后了。您的数据库几乎肯定会受到除此之外的其他瓶颈的限制。

    -

    过去,有些人建议使用 utf8mb4_general_ci,除非准确排序足够重要以证明性能成本是合理的。如今,这种性能成本几乎消失了,开发人员正在更加认真地对待国际化。

    -

    有一个论点是,如果速度对您来说比准确性更重要,那么您可能根本不进行任何排序。如果您不需要准确的算法,那么使算法更快是微不足道的。因此,utf8mb4_general_ci是一种折衷方案,出于速度原因可能不需要,也可能出于准确性原因也不适合。

    -

    我要补充的另一件事是,即使您知道您的应用程序仅支持英语,它可能仍需要处理人名,这些人名通常包含其他语言中使用的字符,在这些语言中正确排序同样重要.对所有事情都使用 Unicode 规则有助于让您更加安心,因为非常聪明的 Unicode 人员已经非常努力地工作以使排序正常工作。

    -

    其余各个部分是什么意思

    -

    首先, ci 用于不区分大小写的排序和比较。这意味着它适用于文本数据,大小写并不重要。其他类型的排序规则是 cs(区分大小写),用于区分大小写的文本数据,以及 bin,用于编码需要匹配的地方,逐位匹配,适用于真正编码二进制数据的字段(包括,用于例如,Base64)。区分大小写的排序会导致一些奇怪的结果,区分大小写的比较可能会导致重复值仅在字母大小写上有所不同,因此区分大小写的排序规则对文本数据不受欢迎 - 如果大小写对您很重要,那么标点符号就可以忽略等等可能也很重要,二进制排序规则可能更合适。

    -

    接下来,unicode 或general 指的是具体的排序和比较规则——特别是文本被规范化或比较的方式。 utf8mb4 字符编码有许多不同的规则集,其中 unicode 和 general 是两种,它们试图在所有可能的语言中都很好地工作,而不是在一种特定的语言中。这两组规则之间的差异是此答案的主题。请注意,unicode 使用 Unicode 4.0 中的规则。 MySQL 的最新版本使用 Unicode 5.2 的规则添加规则集 unicode_520,使用 Unicode 9.0 的规则添加 0900(删除“unicode_”部分)。

    -

    最后,utf8mb4 当然是内部使用的字符编码。在这个答案中,我只谈论基于 Unicode 的编码。

    -

    utf8 和 utf8mb4 编码有什么区别

    原文

    UTF-8is a variable-length encoding. In the case of UTF-8, this means that storing one code point requires one to four bytes. However, MySQL’s encoding called “utf8” (alias of “utf8mb3”) only stores a maximum of three bytes per code point.

    -

    So the character set “utf8”/“utf8mb3” cannot store all Unicode code points: it only supports the range 0x000 to 0xFFFF, which is called the “Basic Multilingual Plane“. See also Comparison of Unicode encodings.

    -

    This is what (a previous version of the same page at)the MySQL documentationhas to say about it:

    -
    -

    The character set named utf8[/utf8mb3] uses a maximum of three bytes per character and contains only BMP characters. As of MySQL 5.5.3, the utf8mb4 character set uses a maximum of four bytes per character supports supplemental characters:

    -
      -
    • For a BMP character, utf8[/utf8mb3] and utf8mb4 have identical storage characteristics: same code values, same encoding, same length.
    • -
    • For a supplementary character, utf8[/utf8mb3] cannot store the character at all, while utf8mb4 requires four bytes to store it. Since utf8[/utf8mb3] cannot store the character at all, you do not have any supplementary characters in utf8[/utf8mb3] columns and you need not worry about converting characters or losing data when upgrading utf8[/utf8mb3] data from older versions of MySQL.
    • -
    -
    -

    So if you want your column to support storing characters lying outside the BMP (and you usually want to), such as emoji, use “utf8mb4”. See also What are the most common non-BMP Unicode characters in actual use?.

    -

    译文

    UTF-8 是一种可变长度编码。对于 UTF-8,这意味着存储一个代码点需要一到四个字节。但是,MySQL 的编码称为“utf8”(“utf8mb3”的别名)每个代码点最多只能存储三个字节。

    -

    所以字符集“utf8”/“utf8mb3”不能存储所有的Unicode码位:它只支持0x000到0xFFFF的范围,被称为“基本多语言平面”。另请参阅 Unicode 编码比较

    -

    这就是(同一页面的先前版本)MySQL 文档 不得不说的:

    -
    -

    名为 utf8[/utf8mb3] 的字符集每个字符最多使用三个字节,并且仅包含 BMP 字符。从 MySQL 5.5.3 开始,utf8mb4 字符集每个字符最多使用四个字节,支持补充字符:

    -
      -
    • 对于 BMP 字符,utf8[/utf8mb3] 和 utf8mb4 具有相同的存储特性:相同的代码值、相同的编码、相同的长度。
    • -
    • 对于补充字符,utf8[/utf8mb3] 根本无法存储该字符,而 utf8mb4 需要四个字节来存储它。由于 utf8[/utf8mb3] 根本无法存储字符,因此您在 utf8[/utf8mb3] 列中没有任何补充字符,您不必担心从旧版本升级 utf8[/utf8mb3] 数据时转换字符或丢失数据mysql。
    • -
    -
    -

    因此,如果您希望您的列支持存储位于 BMP 之外的字符(并且您通常希望这样做),例如 emoji,请使用“utf8mb4”。另请参阅

    -

    实际使用中最常见的非 BMP Unicode 字符是什么?

    -]]>
    - - Mysql - - - mysql - 字符集 - 编码 - utf8 - utf8mb4 - utf8mb4_0900_ai_ci - utf8mb4_unicode_ci - utf8mb4_general_ci - -
    - - 是何原因竟让两人深夜奔袭十公里 - /2022/06/05/%E6%98%AF%E4%BD%95%E5%8E%9F%E5%9B%A0%E7%AB%9F%E8%AE%A9%E4%B8%A4%E4%BA%BA%E6%B7%B1%E5%A4%9C%E5%A5%94%E8%A2%AD%E5%8D%81%E5%85%AC%E9%87%8C/ - 偶尔来个标题党,不过也是一次比较神奇的经历
    上周五下班后跟 LD 约好去吃牛蛙,某个朋友好像对这类都不太能接受,我以前小时候也不常吃,但是这类其实都是口味比较重,没有那种肉本身的腥味,而且肉质比较特殊,吃过几次以后就有点爱上了,这次刚好是 LD 买的新店开业券,比较优惠(我们俩都是有点勤俭持家的,想着小电驴还有三格电,这家店又有点远,骑车单趟大概要 10 公里左右,有点担心,LD 说应该可以的,就一起骑了过去(跟她轮换着骑电驴和共享单车),结果大概离吃牛蛙的店还有一辆公里的时候,电量就报警了,只有最后一个红色的了,一共是五格,最后一格是红色的,提示我们该充电了,这样子是真的有点慌了,之前开了几个月都是还有一两格电的时候就充电了,没有试验过究竟这最后一格电能开多远,总之先到了再说。
    这家牛蛙没想到还挺热闹的,我们到那已经快八点了,还有十几个排队的,有个人还想插队(向来是不惯着这种,一边去),旁边刚好是有些商店就逛了下,就跟常规的商业中心差不多,开业的比较早也算是这一边比较核心的商业综合体了,各种品牌都有,而且还有彩票售卖点的,只是不太理解现在的彩票都是兑图案的,而且要 10 块钱一张,我的概念里还是以前 2 块钱一张的双色球,偶尔能中个五块十块的。排队还剩四五个的时候我们就去门口坐着等了,又等了大概二十分钟才排到我们,靠近我们等的里面的位置,好像好几个小女生在那还叫了外卖奶茶,然后各种拍照,小朋友的生活还是丰富多彩的,我们到了就点了蒜蓉的,没有点传说中紫苏的,菜单上画了 N 个🌶,LD 还是想体验下说下次人多点可以试试,我们俩吃怕太辣了吃不消,口味还是不错的,这家貌似是 LD 闺蜜推荐的,口碑有保证。两个人光吃一个蛙锅就差不多了,本来还想再点个其他的,后面实在吃不下了就没点,吃完还是惯例点了个奶茶,不过是真的不好找,太大了。
    本来是就回个家的事了,结果就因为前面铺垫的小电驴已经只有一格电了,标题的深夜奔袭十公里就出现了,这个电驴估计续航也虚标挺严重的,电量也是这样,骑的时候显示只有一格电,关掉再开起来又有三格,然后我们回去骑了没一公里就没电了,这下是真的完球了,觉得车子也比较新,直接停外面也不放心,就开始了深夜的十公里推电驴奔袭,LD 看我太累还帮我中间推了一段,虽然是跑过十公里的,但是推着个没电的电驴,还是着实不容易的,LD 也是陪我推着车走,中间好几次说我们把电驴停着打车回去,把电池带回去充满了明天再过来骑车,可能是心态已经转变了,这应该算是一次很特殊的体验,从我们吃完出来大概十点,到最后我们推到小区,大概是过了两个小时的样子,说句深夜也不太过分,把这次这么推车看成了一种意志力的考验,很多事情也都是怕坚持,或者说怕不能坚持,想走得远,没有持续的努力坚持肯定是不行的,所以还是坚持着把车推回来(好吧,我其实主要是怕车被偷,毕竟刚来杭州上学没多久就被偷了自行车留下了阴影),中间感谢 LD,跟我轮着推了一段路,有些下坡的时候还在那坐着用脚蹬一下,离家里大概还有一公里的时候,有个骑电瓶车的大叔还停下来问我们是车破了还是没电了,应该是出于好意吧,最后快到的时候真的非常渴,买了2.5 升的水被我一口气喝了大半瓶,奶茶已经不能起到解渴的作用了,本来以为这样能消耗很多,结果第二天一称还重了,(我的称一定有问题 233

    -]]>
    - - 生活 - - - 生活 - -
    - - 给小电驴上牌 - /2022/03/20/%E7%BB%99%E5%B0%8F%E7%94%B5%E9%A9%B4%E4%B8%8A%E7%89%8C/ - 三八节活动的时候下决心买了个小电驴,主要是上下班路上现在通勤条件越来越恶劣了,之前都是觉得坐公交就行了,实际路程就比较短,但是现在或者说大概是年前那两个月差不多就开始了,基本是堵一路,个人感觉是天目山路那边在修地铁,而且蚂蚁的几个空间都在那,上班的时间点都差不多,前一个修地铁感觉挺久了,机动车保有量也越来越多,总体是古墩路就越来越堵,还有个原因就是早上上班的点共享单车都被骑走了,有时候整整走一路都没一辆,有时候孤零零地有一辆基本都是破的;走路其实也是一种选择,但是因为要赶着上班,走得太慢就要很久,可能要 45 分钟这样,走得比较快就一身汗挺难受的。所以考虑自行车和电动车,这里还有一点就是不管是乘公交还是骑共享单车,其实都要从楼下走出去蛮远,公司回来也是,也就是这种通勤方式在准备阶段就花了比较多时间,比如总的从下班到到家的时间是半小时,可能在骑共享单车和公交车上的时间都不到十分钟,就比较难受。觉得这种比例太浪费时间,如果能有这种比较点对点的方式,估计能省时省力不少,前面说的骑共享单车的方式其实在之前是比较可行的,但是后来越来越少车,基本都是每周的前几天,周一到周三都是没有车,走路到公司再冷的天都是走出一身的汗,下雨天就更难受,本来下雨天应该是优先选择坐公交,但是一般下雨天堵车会更严重,而且车子到我上车的那个站,下雨天就挤得不行,总体说下来感觉事情都不打,但是几年下来,还是会挺不爽的。

    -

    电驴看的比较草率,主要是考虑续航,然后锂电池外加 48v 和 24AH,这样一般来讲还是价格比较高的,只是原来没预料到这个限速,以为现在的车子都比较快,但是现在的新国标车子都是 25km/h 的限速,然后 15km/h 都是会要提醒,虽然说有一些特殊的解除限速的方法,但是解了也就 35km/h ,差距不是特别大,而且现在的车子都是比较小,也不太能载东西,特别是上下班路程也不远的情况下,其实不是那么需要速度,就像我朋友说的,可能骑车的时间还不如等红绿灯多,所以就还好,也不打算解除限速,只是品牌上也仔细看,后来选了绿源,目前大部分还是雅迪,爱玛,台羚,绿源,小牛等,路上看的话还是雅迪比较多,不过价格也比较贵一点,还有就是小牛了,是比较新兴的品牌,手机 App 什么的做得比较好,而且也比较贵,最后以相对比较便宜的价格买了个锂电 48V24AH 的小车子,后来发现还是有点不方便的点就是没有比较大的筐,也不好装,这样就是下雨天雨衣什么的比较不方便放。

    -

    聊回来主题上牌这个事情,这个事情也是颇费心力,提车的时候店里的让我跟他早上一起去,但是因为不确定时间,也比较远就没跟着去,因为我是线上买的,线下自提,线下的店可能没啥利润可以拿,就不肯帮忙代上牌,朋友说在线下店里买是可以代上的,自己上牌过程也比较曲折,一开始是头盔没到,然后是等开发票,主要的东西就是需要骑着车子去车管所,不能只自己去,然后需要预约,附近比较近的都是提前一周就预约完了号了,要提前在支付宝上进行预约,比较空的就是店里推荐的景区大队,但是随之而来就是比较蛋疼的,这个景区大队太远了,看下骑车距离有十几公里,所以就有点拖延症,但是总归要上的,不然一直不能开是白买了,上牌的材料主要是车辆合格证,发票,然后车子上的浙品码,在车架上和电池上,然后车架号什么的都要跟合格证上完全对应,整体车子要跟合格证上一毛一样,如果有额外的反光镜,后面副座都需要拆掉,脚踏板要装上,到了那其实还比较顺利,就是十几公里外加那天比较冷,吹得头疼。

    -]]>
    - - 生活 - - - 生活 - -
    - - 看完了扫黑风暴,聊聊感想 - /2021/10/24/%E7%9C%8B%E5%AE%8C%E4%BA%86%E6%89%AB%E9%BB%91%E9%A3%8E%E6%9A%B4-%E8%81%8A%E8%81%8A%E6%84%9F%E6%83%B3/ - 一直在想这篇怎么写,看了这部剧其实对我的一些观念是有影响的,应该是在 9 月份就看完了,到现在可能才会稍微平静一点,一开始是没有想看这部剧,因为同期有一部差不多同名的电影,被投诉了对湖南埋尸案家属伤害很大,我以为就是投诉的这部电视剧,后来同事跟我说不是,所以就想着看一下,但是没有马上看,因为一直不喜欢追这种比较纠结的剧,当时看人民的名义,就是后面等不了了直接看了小说,所以差不多是等到更完了才看的。

    -

    尝试保持一个比较冷静的状态来聊聊,在看的时候有一点感想就是如果要剧里的坏人排个名,因为明眼看都是孙兴是个穷凶极恶的坏人,干尽了坏事,而且可能是演员表演地好,让人真的恨的牙痒痒,但是更多地还是停留在那些剧情中的表现和他的表情,其实对应的真实案例有更多的,这里尽量不展开,有兴趣可以自行搜索关键字,所以其实我想排个名的话,孙兴的母亲应该是我心目中是造成这个结果的比较大占比的始作俑者,因为是方方面面的,包括对林汉的栽赃迫害,最后串起来是因为他看到了孙兴又出来了,就是那句老话,撒了一个谎以后就要用无数个谎来圆,贺芸为了孙兴,作了第一个恶以后就用了一系列的丧心病狂的操作来保护孙兴,而且这之后所做的事情一件比一件可怕,并且如果不是督导组各种想方设法地去破解谜题,这个事情还可以一直被通过各种操作瞒下去,而孙兴还可以继续地为虎作伥,当然其他的包括高明远以及后面的王政,当然是为了这个操作也提供的各种方式的帮助,甚至是主导了这些操作,但是这里贺芸还是在这个位子上能够通过权力做出非常关键的动作,包括栽赃林汉,并且搞掉了李成阳。其中还有一点是我对剧情设计的质疑,也是我前面提到过一点,因为里面孙兴好像是很爱他的母亲贺芸,似乎想表达的是孙兴作的恶是因为得不到母爱,并且个人感觉如果是一个比较敬爱自己母亲的儿子,似乎应该有所畏惧,对他的行为也会有所限制,不应该变成这样一个无恶不作的恶霸,这也是我一直以来的观点,很多人作恶太多可能是因为没有信仰,不管是信基督耶稣还是信道教佛教,总归有一些制约,当然不是说就绝对不会作恶,只是偏向于有所畏惧敬畏,除了某绿哈。

    -

    而对于其他的人感觉演技都不错,只是最后有一些虎头蛇尾吧,不知道是不是审核的原因,也不细说了怕被请喝茶,还有提一点就是麦佳的这个事情,她其实是里面很惨的一个人,把高明远当成最亲近的人,而其实真相令人感觉不寒而栗,杀父杀母的仇人,对于麦佳这个演员,一直觉得印象深刻,后来才想起来就是在爱情公寓里演被关谷救了要以身相遇的那个女孩,长相其实蛮令人印象深刻的,但好像也一直不温不火,不过也不能说演技很好吧,只是在这里演的任务真的是很可怜了,剧情设计里也应该是个很重要的串联人物,最终被高明远献给了大佬,这里扯开一点,好像有的观点说贺芸之前也是这样的,只是一种推测了。

    -

    看完这部剧其实有很多想说的,但是也为了不被请喝茶,尽量少说了,只想说珍爱生命,还是自己小心吧

    -]]>
    - - 生活 - - - 生活 - 影评 - -
    - - 聊一下 RocketMQ 的 DefaultMQPushConsumer 源码 - /2020/06/26/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84-Consumer/ - 首先看下官方的小 demo

    -
    public static void main(String[] args) throws InterruptedException, MQClientException {
    +        /* Update the access time for the ageing algorithm.
    +         * Don't do it if we have a saving child, as this will trigger
    +         * a copy on write madness. */
    +        if (!hasActiveChildProcess() && !(flags & LOOKUP_NOTOUCH)){
    +            if (server.maxmemory_policy & MAXMEMORY_FLAG_LFU) {
    +                // 这个是后面一节的内容
    +                updateLFU(val);
    +            } else {
    +                //  对于这个分支,访问时就会去更新 lru 值
    +                val->lru = LRU_CLOCK();
    +            }
    +        }
    +        return val;
    +    } else {
    +        return NULL;
    +    }
    +}
    +/* This function is used to obtain the current LRU clock.
    + * If the current resolution is lower than the frequency we refresh the
    + * LRU clock (as it should be in production servers) we return the
    + * precomputed value, otherwise we need to resort to a system call. */
    +unsigned int LRU_CLOCK(void) {
    +    unsigned int lruclock;
    +    if (1000/server.hz <= LRU_CLOCK_RESOLUTION) {
    +        // 如果服务器的频率server.hz大于 1 时就是用系统预设的 lruclock
    +        lruclock = server.lruclock;
    +    } else {
    +        lruclock = getLRUClock();
    +    }
    +    return lruclock;
    +}
    +/* Return the LRU clock, based on the clock resolution. This is a time
    + * in a reduced-bits format that can be used to set and check the
    + * object->lru field of redisObject structures. */
    +unsigned int getLRUClock(void) {
    +    return (mstime()/LRU_CLOCK_RESOLUTION) & LRU_CLOCK_MAX;
    +}
    +

    redis 处理命令是在这里processCommand

    +
    /* If this function gets called we already read a whole
    + * command, arguments are in the client argv/argc fields.
    + * processCommand() execute the command or prepare the
    + * server for a bulk read from the client.
    + *
    + * If C_OK is returned the client is still alive and valid and
    + * other operations can be performed by the caller. Otherwise
    + * if C_ERR is returned the client was destroyed (i.e. after QUIT). */
    +int processCommand(client *c) {
    +    moduleCallCommandFilters(c);
     
    -        /*
    -         * Instantiate with specified consumer group name.
    -         * 首先是new 一个对象出来,然后指定 Consumer 的 Group
    -         * 同一类Consumer的集合,这类Consumer通常消费同一类消息且消费逻辑一致。消费者组使得在消息消费方面,实现负载均衡和容错的目标变得非常容易。要注意的是,消费者组的消费者实例必须订阅完全相同的Topic。RocketMQ 支持两种消息模式:集群消费(Clustering)和广播消费(Broadcasting)。
    -         */
    -        DefaultMQPushConsumer consumer = new DefaultMQPushConsumer("please_rename_unique_group_name_4");
    +    
     
    -        /*
    -         * Specify name server addresses.
    -         * <p/>
    -         * 这里可以通知指定环境变量或者设置对象参数的形式指定名字空间服务的地址
    -         *
    -         * Alternatively, you may specify name server addresses via exporting environmental variable: NAMESRV_ADDR
    -         * <pre>
    -         * {@code
    -         * consumer.setNamesrvAddr("name-server1-ip:9876;name-server2-ip:9876");
    -         * }
    -         * </pre>
    -         */
    +    /* Handle the maxmemory directive.
    +     *
    +     * Note that we do not want to reclaim memory if we are here re-entering
    +     * the event loop since there is a busy Lua script running in timeout
    +     * condition, to avoid mixing the propagation of scripts with the
    +     * propagation of DELs due to eviction. */
    +    if (server.maxmemory && !server.lua_timedout) {
    +        int out_of_memory = freeMemoryIfNeededAndSafe() == C_ERR;
    +        /* freeMemoryIfNeeded may flush slave output buffers. This may result
    +         * into a slave, that may be the active client, to be freed. */
    +        if (server.current_client == NULL) return C_ERR;
     
    -        /*
    -         * Specify where to start in case the specified consumer group is a brand new one.
    -         * 指定消费起始点
    -         */
    -        consumer.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET);
    +        /* It was impossible to free enough memory, and the command the client
    +         * is trying to execute is denied during OOM conditions or the client
    +         * is in MULTI/EXEC context? Error. */
    +        if (out_of_memory &&
    +            (c->cmd->flags & CMD_DENYOOM ||
    +             (c->flags & CLIENT_MULTI &&
    +              c->cmd->proc != execCommand &&
    +              c->cmd->proc != discardCommand)))
    +        {
    +            flagTransaction(c);
    +            addReply(c, shared.oomerr);
    +            return C_OK;
    +        }
    +    }
    +}
    +

    这里只摘了部分,当需要清理内存时就会调用, 然后调用了freeMemoryIfNeededAndSafe

    +
    /* This is a wrapper for freeMemoryIfNeeded() that only really calls the
    + * function if right now there are the conditions to do so safely:
    + *
    + * - There must be no script in timeout condition.
    + * - Nor we are loading data right now.
    + *
    + */
    +int freeMemoryIfNeededAndSafe(void) {
    +    if (server.lua_timedout || server.loading) return C_OK;
    +    return freeMemoryIfNeeded();
    +}
    +/* This function is periodically called to see if there is memory to free
    + * according to the current "maxmemory" settings. In case we are over the
    + * memory limit, the function will try to free some memory to return back
    + * under the limit.
    + *
    + * The function returns C_OK if we are under the memory limit or if we
    + * were over the limit, but the attempt to free memory was successful.
    + * Otehrwise if we are over the memory limit, but not enough memory
    + * was freed to return back under the limit, the function returns C_ERR. */
    +int freeMemoryIfNeeded(void) {
    +    int keys_freed = 0;
    +    /* By default replicas should ignore maxmemory
    +     * and just be masters exact copies. */
    +    if (server.masterhost && server.repl_slave_ignore_maxmemory) return C_OK;
     
    -        /*
    -         * Subscribe one more more topics to consume.
    -         * 指定订阅的 topic 跟 tag,注意后面的是个表达式,可以以 tag1 || tag2 || tag3 传入
    -         */
    -        consumer.subscribe("TopicTest", "*");
    +    size_t mem_reported, mem_tofree, mem_freed;
    +    mstime_t latency, eviction_latency;
    +    long long delta;
    +    int slaves = listLength(server.slaves);
     
    -        /*
    -         *  Register callback to execute on arrival of messages fetched from brokers.
    -         *  注册具体获得消息后的处理方法
    -         */
    -        consumer.registerMessageListener(new MessageListenerConcurrently() {
    +    /* When clients are paused the dataset should be static not just from the
    +     * POV of clients not being able to write, but also from the POV of
    +     * expires and evictions of keys not being performed. */
    +    if (clientsArePaused()) return C_OK;
    +    if (getMaxmemoryState(&mem_reported,NULL,&mem_tofree,NULL) == C_OK)
    +        return C_OK;
     
    -            @Override
    -            public ConsumeConcurrentlyStatus consumeMessage(List<MessageExt> msgs,
    -                ConsumeConcurrentlyContext context) {
    -                System.out.printf("%s Receive New Messages: %s %n", Thread.currentThread().getName(), msgs);
    -                return ConsumeConcurrentlyStatus.CONSUME_SUCCESS;
    -            }
    -        });
    +    mem_freed = 0;
     
    -        /*
    -         *  Launch the consumer instance.
    -         * 启动消费者
    -         */
    -        consumer.start();
    +    if (server.maxmemory_policy == MAXMEMORY_NO_EVICTION)
    +        goto cant_free; /* We need to free memory, but policy forbids. */
     
    -        System.out.printf("Consumer Started.%n");
    -    }
    + latencyStartMonitor(latency); + while (mem_freed < mem_tofree) { + int j, k, i; + static unsigned int next_db = 0; + sds bestkey = NULL; + int bestdbid; + redisDb *db; + dict *dict; + dictEntry *de; -

    然后就是看看 start 的过程了

    -
    /**
    -     * This method gets internal infrastructure readily to serve. Instances must call this method after configuration.
    -     *
    -     * @throws MQClientException if there is any client error.
    -     */
    -    @Override
    -    public void start() throws MQClientException {
    -        setConsumerGroup(NamespaceUtil.wrapNamespace(this.getNamespace(), this.consumerGroup));
    -        this.defaultMQPushConsumerImpl.start();
    -        if (null != traceDispatcher) {
    -            try {
    -                traceDispatcher.start(this.getNamesrvAddr(), this.getAccessChannel());
    -            } catch (MQClientException e) {
    -                log.warn("trace dispatcher start failed ", e);
    -            }
    -        }
    -    }
    -

    具体的逻辑在this.defaultMQPushConsumerImpl.start(),这个 defaultMQPushConsumerImpl 就是

    -
    /**
    -     * Internal implementation. Most of the functions herein are delegated to it.
    -     */
    -    protected final transient DefaultMQPushConsumerImpl defaultMQPushConsumerImpl;
    + if (server.maxmemory_policy & (MAXMEMORY_FLAG_LRU|MAXMEMORY_FLAG_LFU) || + server.maxmemory_policy == MAXMEMORY_VOLATILE_TTL) + { + struct evictionPoolEntry *pool = EvictionPoolLRU; -
    public synchronized void start() throws MQClientException {
    -        switch (this.serviceState) {
    -            case CREATE_JUST:
    -                log.info("the consumer [{}] start beginning. messageModel={}, isUnitMode={}", this.defaultMQPushConsumer.getConsumerGroup(),
    -                    this.defaultMQPushConsumer.getMessageModel(), this.defaultMQPushConsumer.isUnitMode());
    -                // 这里比较巧妙,相当于想设立了个屏障,防止并发启动,不过这里并不是悲观锁,也不算个严格的乐观锁
    -                this.serviceState = ServiceState.START_FAILED;
    +            while(bestkey == NULL) {
    +                unsigned long total_keys = 0, keys;
     
    -                this.checkConfig();
    +                /* We don't want to make local-db choices when expiring keys,
    +                 * so to start populate the eviction pool sampling keys from
    +                 * every DB. */
    +                for (i = 0; i < server.dbnum; i++) {
    +                    db = server.db+i;
    +                    dict = (server.maxmemory_policy & MAXMEMORY_FLAG_ALLKEYS) ?
    +                            db->dict : db->expires;
    +                    if ((keys = dictSize(dict)) != 0) {
    +                        evictionPoolPopulate(i, dict, db->dict, pool);
    +                        total_keys += keys;
    +                    }
    +                }
    +                if (!total_keys) break; /* No keys to evict. */
     
    -                this.copySubscription();
    +                /* Go backward from best to worst element to evict. */
    +                for (k = EVPOOL_SIZE-1; k >= 0; k--) {
    +                    if (pool[k].key == NULL) continue;
    +                    bestdbid = pool[k].dbid;
     
    -                if (this.defaultMQPushConsumer.getMessageModel() == MessageModel.CLUSTERING) {
    -                    this.defaultMQPushConsumer.changeInstanceNameToPID();
    +                    if (server.maxmemory_policy & MAXMEMORY_FLAG_ALLKEYS) {
    +                        de = dictFind(server.db[pool[k].dbid].dict,
    +                            pool[k].key);
    +                    } else {
    +                        de = dictFind(server.db[pool[k].dbid].expires,
    +                            pool[k].key);
    +                    }
    +
    +                    /* Remove the entry from the pool. */
    +                    if (pool[k].key != pool[k].cached)
    +                        sdsfree(pool[k].key);
    +                    pool[k].key = NULL;
    +                    pool[k].idle = 0;
    +
    +                    /* If the key exists, is our pick. Otherwise it is
    +                     * a ghost and we need to try the next element. */
    +                    if (de) {
    +                        bestkey = dictGetKey(de);
    +                        break;
    +                    } else {
    +                        /* Ghost... Iterate again. */
    +                    }
    +                }
    +            }
    +        }
    +
    +        /* volatile-random and allkeys-random policy */
    +        else if (server.maxmemory_policy == MAXMEMORY_ALLKEYS_RANDOM ||
    +                 server.maxmemory_policy == MAXMEMORY_VOLATILE_RANDOM)
    +        {
    +            /* When evicting a random key, we try to evict a key for
    +             * each DB, so we use the static 'next_db' variable to
    +             * incrementally visit all DBs. */
    +            for (i = 0; i < server.dbnum; i++) {
    +                j = (++next_db) % server.dbnum;
    +                db = server.db+j;
    +                dict = (server.maxmemory_policy == MAXMEMORY_ALLKEYS_RANDOM) ?
    +                        db->dict : db->expires;
    +                if (dictSize(dict) != 0) {
    +                    de = dictGetRandomKey(dict);
    +                    bestkey = dictGetKey(de);
    +                    bestdbid = j;
    +                    break;
                     }
    +            }
    +        }
     
    -                // 这个mQClientFactory,负责管理client(consumer、producer),并提供多中功能接口供各个Service(Rebalance、PullMessage等)调用;大部分逻辑均在这个类中完成
    -                this.mQClientFactory = MQClientManager.getInstance().getOrCreateMQClientInstance(this.defaultMQPushConsumer, this.rpcHook);
    -
    -                // 这个 rebalanceImpl 主要负责决定,当前的consumer应该从哪些Queue中消费消息;
    -                this.rebalanceImpl.setConsumerGroup(this.defaultMQPushConsumer.getConsumerGroup());
    -                this.rebalanceImpl.setMessageModel(this.defaultMQPushConsumer.getMessageModel());
    -                this.rebalanceImpl.setAllocateMessageQueueStrategy(this.defaultMQPushConsumer.getAllocateMessageQueueStrategy());
    -                this.rebalanceImpl.setmQClientFactory(this.mQClientFactory);
    +        /* Finally remove the selected key. */
    +        if (bestkey) {
    +            db = server.db+bestdbid;
    +            robj *keyobj = createStringObject(bestkey,sdslen(bestkey));
    +            propagateExpire(db,keyobj,server.lazyfree_lazy_eviction);
    +            /* We compute the amount of memory freed by db*Delete() alone.
    +             * It is possible that actually the memory needed to propagate
    +             * the DEL in AOF and replication link is greater than the one
    +             * we are freeing removing the key, but we can't account for
    +             * that otherwise we would never exit the loop.
    +             *
    +             * AOF and Output buffer memory will be freed eventually so
    +             * we only care about memory used by the key space. */
    +            delta = (long long) zmalloc_used_memory();
    +            latencyStartMonitor(eviction_latency);
    +            if (server.lazyfree_lazy_eviction)
    +                dbAsyncDelete(db,keyobj);
    +            else
    +                dbSyncDelete(db,keyobj);
    +            latencyEndMonitor(eviction_latency);
    +            latencyAddSampleIfNeeded("eviction-del",eviction_latency);
    +            latencyRemoveNestedEvent(latency,eviction_latency);
    +            delta -= (long long) zmalloc_used_memory();
    +            mem_freed += delta;
    +            server.stat_evictedkeys++;
    +            notifyKeyspaceEvent(NOTIFY_EVICTED, "evicted",
    +                keyobj, db->id);
    +            decrRefCount(keyobj);
    +            keys_freed++;
     
    -                // 长连接,负责从broker处拉取消息,然后利用ConsumeMessageService回调用户的Listener执行消息消费逻辑
    -                this.pullAPIWrapper = new PullAPIWrapper(
    -                    mQClientFactory,
    -                    this.defaultMQPushConsumer.getConsumerGroup(), isUnitMode());
    -                this.pullAPIWrapper.registerFilterMessageHook(filterMessageHookList);
    +            /* When the memory to free starts to be big enough, we may
    +             * start spending so much time here that is impossible to
    +             * deliver data to the slaves fast enough, so we force the
    +             * transmission here inside the loop. */
    +            if (slaves) flushSlavesOutputBuffers();
     
    -                if (this.defaultMQPushConsumer.getOffsetStore() != null) {
    -                    this.offsetStore = this.defaultMQPushConsumer.getOffsetStore();
    -                } else {
    -                    switch (this.defaultMQPushConsumer.getMessageModel()) {
    -                        case BROADCASTING:
    -                            this.offsetStore = new LocalFileOffsetStore(this.mQClientFactory, this.defaultMQPushConsumer.getConsumerGroup());
    -                            break;
    -                        case CLUSTERING:
    -                            this.offsetStore = new RemoteBrokerOffsetStore(this.mQClientFactory, this.defaultMQPushConsumer.getConsumerGroup());
    -                            break;
    -                        default:
    -                            break;
    -                    }
    -                    this.defaultMQPushConsumer.setOffsetStore(this.offsetStore);
    +            /* Normally our stop condition is the ability to release
    +             * a fixed, pre-computed amount of memory. However when we
    +             * are deleting objects in another thread, it's better to
    +             * check, from time to time, if we already reached our target
    +             * memory, since the "mem_freed" amount is computed only
    +             * across the dbAsyncDelete() call, while the thread can
    +             * release the memory all the time. */
    +            if (server.lazyfree_lazy_eviction && !(keys_freed % 16)) {
    +                if (getMaxmemoryState(NULL,NULL,NULL,NULL) == C_OK) {
    +                    /* Let's satisfy our stop condition. */
    +                    mem_freed = mem_tofree;
                     }
    -                // offsetStore 维护当前consumer的消费记录(offset);有两种实现,Local和Rmote,Local存储在本地磁盘上,适用于BROADCASTING广播消费模式;而Remote则将消费进度存储在Broker上,适用于CLUSTERING集群消费模式;
    -                this.offsetStore.load();
    +            }
    +        } else {
    +            latencyEndMonitor(latency);
    +            latencyAddSampleIfNeeded("eviction-cycle",latency);
    +            goto cant_free; /* nothing to free... */
    +        }
    +    }
    +    latencyEndMonitor(latency);
    +    latencyAddSampleIfNeeded("eviction-cycle",latency);
    +    return C_OK;
     
    -                if (this.getMessageListenerInner() instanceof MessageListenerOrderly) {
    -                    this.consumeOrderly = true;
    -                    this.consumeMessageService =
    -                        new ConsumeMessageOrderlyService(this, (MessageListenerOrderly) this.getMessageListenerInner());
    -                } else if (this.getMessageListenerInner() instanceof MessageListenerConcurrently) {
    -                    this.consumeOrderly = false;
    -                    this.consumeMessageService =
    -                        new ConsumeMessageConcurrentlyService(this, (MessageListenerConcurrently) this.getMessageListenerInner());
    -                }
    +cant_free:
    +    /* We are here if we are not able to reclaim memory. There is only one
    +     * last thing we can try: check if the lazyfree thread has jobs in queue
    +     * and wait... */
    +    while(bioPendingJobsOfType(BIO_LAZY_FREE)) {
    +        if (((mem_reported - zmalloc_used_memory()) + mem_freed) >= mem_tofree)
    +            break;
    +        usleep(1000);
    +    }
    +    return C_ERR;
    +}
    +

    这里就是根据具体策略去淘汰 key,首先是要往 pool 更新 key,更新key 的方法是evictionPoolPopulate

    +
    void evictionPoolPopulate(int dbid, dict *sampledict, dict *keydict, struct evictionPoolEntry *pool) {
    +    int j, k, count;
    +    dictEntry *samples[server.maxmemory_samples];
     
    -                // 实现所谓的"Push-被动"消费机制;从Broker拉取的消息后,封装成ConsumeRequest提交给ConsumeMessageSerivce,此service负责回调用户的Listener消费消息;
    -                this.consumeMessageService.start();
    +    count = dictGetSomeKeys(sampledict,samples,server.maxmemory_samples);
    +    for (j = 0; j < count; j++) {
    +        unsigned long long idle;
    +        sds key;
    +        robj *o;
    +        dictEntry *de;
     
    -                boolean registerOK = mQClientFactory.registerConsumer(this.defaultMQPushConsumer.getConsumerGroup(), this);
    -                if (!registerOK) {
    -                    this.serviceState = ServiceState.CREATE_JUST;
    -                    this.consumeMessageService.shutdown();
    -                    throw new MQClientException("The consumer group[" + this.defaultMQPushConsumer.getConsumerGroup()
    -                        + "] has been created before, specify another name please." + FAQUrl.suggestTodo(FAQUrl.GROUP_NAME_DUPLICATE_URL),
    -                        null);
    -                }
    +        de = samples[j];
    +        key = dictGetKey(de);
     
    -                mQClientFactory.start();
    -                log.info("the consumer [{}] start OK.", this.defaultMQPushConsumer.getConsumerGroup());
    -                this.serviceState = ServiceState.RUNNING;
    -                break;
    -            case RUNNING:
    -            case START_FAILED:
    -            case SHUTDOWN_ALREADY:
    -                throw new MQClientException("The PushConsumer service state not OK, maybe started once, "
    -                    + this.serviceState
    -                    + FAQUrl.suggestTodo(FAQUrl.CLIENT_SERVICE_NOT_OK),
    -                    null);
    -            default:
    -                break;
    +        /* If the dictionary we are sampling from is not the main
    +         * dictionary (but the expires one) we need to lookup the key
    +         * again in the key dictionary to obtain the value object. */
    +        if (server.maxmemory_policy != MAXMEMORY_VOLATILE_TTL) {
    +            if (sampledict != keydict) de = dictFind(keydict, key);
    +            o = dictGetVal(de);
             }
     
    -        this.updateTopicSubscribeInfoWhenSubscriptionChanged();
    -        this.mQClientFactory.checkClientInBroker();
    -        this.mQClientFactory.sendHeartbeatToAllBrokerWithLock();
    -        this.mQClientFactory.rebalanceImmediately();
    -    }
    -

    然后我们往下看主要的目光聚焦mQClientFactory.start()

    -
    public void start() throws MQClientException {
    -
    -        synchronized (this) {
    -            switch (this.serviceState) {
    -                case CREATE_JUST:
    -                    this.serviceState = ServiceState.START_FAILED;
    -                    // If not specified,looking address from name server
    -                    if (null == this.clientConfig.getNamesrvAddr()) {
    -                        this.mQClientAPIImpl.fetchNameServerAddr();
    -                    }
    -                    // Start request-response channel
    -                    // 这里主要是初始化了个网络客户端
    -                    this.mQClientAPIImpl.start();
    -                    // Start various schedule tasks
    -                    // 定时任务
    -                    this.startScheduledTask();
    -                    // Start pull service
    -                    // 这里重点说下
    -                    this.pullMessageService.start();
    -                    // Start rebalance service
    -                    this.rebalanceService.start();
    -                    // Start push service
    -                    this.defaultMQProducer.getDefaultMQProducerImpl().start(false);
    -                    log.info("the client factory [{}] start OK", this.clientId);
    -                    this.serviceState = ServiceState.RUNNING;
    -                    break;
    -                case START_FAILED:
    -                    throw new MQClientException("The Factory object[" + this.getClientId() + "] has been created before, and failed.", null);
    -                default:
    -                    break;
    -            }
    +        /* Calculate the idle time according to the policy. This is called
    +         * idle just because the code initially handled LRU, but is in fact
    +         * just a score where an higher score means better candidate. */
    +        if (server.maxmemory_policy & MAXMEMORY_FLAG_LRU) {
    +            idle = estimateObjectIdleTime(o);
    +        } else if (server.maxmemory_policy & MAXMEMORY_FLAG_LFU) {
    +            /* When we use an LRU policy, we sort the keys by idle time
    +             * so that we expire keys starting from greater idle time.
    +             * However when the policy is an LFU one, we have a frequency
    +             * estimation, and we want to evict keys with lower frequency
    +             * first. So inside the pool we put objects using the inverted
    +             * frequency subtracting the actual frequency to the maximum
    +             * frequency of 255. */
    +            idle = 255-LFUDecrAndReturn(o);
    +        } else if (server.maxmemory_policy == MAXMEMORY_VOLATILE_TTL) {
    +            /* In this case the sooner the expire the better. */
    +            idle = ULLONG_MAX - (long)dictGetVal(de);
    +        } else {
    +            serverPanic("Unknown eviction policy in evictionPoolPopulate()");
             }
    -    }
    -

    我们来看下这个 pullMessageService,org.apache.rocketmq.client.impl.consumer.PullMessageService,

    实现了 runnable 接口,
    然后可以看到 run 方法

    -
    public void run() {
    -        log.info(this.getServiceName() + " service started");
     
    -        while (!this.isStopped()) {
    -            try {
    -                PullRequest pullRequest = this.pullRequestQueue.take();
    -                this.pullMessage(pullRequest);
    -            } catch (InterruptedException ignored) {
    -            } catch (Exception e) {
    -                log.error("Pull Message Service Run Method exception", e);
    +        /* Insert the element inside the pool.
    +         * First, find the first empty bucket or the first populated
    +         * bucket that has an idle time smaller than our idle time. */
    +        k = 0;
    +        while (k < EVPOOL_SIZE &&
    +               pool[k].key &&
    +               pool[k].idle < idle) k++;
    +        if (k == 0 && pool[EVPOOL_SIZE-1].key != NULL) {
    +            /* Can't insert if the element is < the worst element we have
    +             * and there are no empty buckets. */
    +            continue;
    +        } else if (k < EVPOOL_SIZE && pool[k].key == NULL) {
    +            /* Inserting into empty position. No setup needed before insert. */
    +        } else {
    +            /* Inserting in the middle. Now k points to the first element
    +             * greater than the element to insert.  */
    +            if (pool[EVPOOL_SIZE-1].key == NULL) {
    +                /* Free space on the right? Insert at k shifting
    +                 * all the elements from k to end to the right. */
    +
    +                /* Save SDS before overwriting. */
    +                sds cached = pool[EVPOOL_SIZE-1].cached;
    +                memmove(pool+k+1,pool+k,
    +                    sizeof(pool[0])*(EVPOOL_SIZE-k-1));
    +                pool[k].cached = cached;
    +            } else {
    +                /* No free space on right? Insert at k-1 */
    +                k--;
    +                /* Shift all elements on the left of k (included) to the
    +                 * left, so we discard the element with smaller idle time. */
    +                sds cached = pool[0].cached; /* Save SDS before overwriting. */
    +                if (pool[0].key != pool[0].cached) sdsfree(pool[0].key);
    +                memmove(pool,pool+1,sizeof(pool[0])*k);
    +                pool[k].cached = cached;
                 }
             }
     
    -        log.info(this.getServiceName() + " service end");
    -    }
    -

    接着在看 pullMessage 方法

    -
    private void pullMessage(final PullRequest pullRequest) {
    -        final MQConsumerInner consumer = this.mQClientFactory.selectConsumer(pullRequest.getConsumerGroup());
    -        if (consumer != null) {
    -            DefaultMQPushConsumerImpl impl = (DefaultMQPushConsumerImpl) consumer;
    -            impl.pullMessage(pullRequest);
    +        /* Try to reuse the cached SDS string allocated in the pool entry,
    +         * because allocating and deallocating this object is costly
    +         * (according to the profiler, not my fantasy. Remember:
    +         * premature optimizbla bla bla bla. */
    +        int klen = sdslen(key);
    +        if (klen > EVPOOL_CACHED_SDS_SIZE) {
    +            pool[k].key = sdsdup(key);
             } else {
    -            log.warn("No matched consumer for the PullRequest {}, drop it", pullRequest);
    -        }
    -    }
    -

    实际上调用了这个方法,这个方法很长,我在代码里注释下下每一段的功能

    -
    public void pullMessage(final PullRequest pullRequest) {
    -        final ProcessQueue processQueue = pullRequest.getProcessQueue();
    -        // 这里开始就是检查状态,确定是否往下执行
    -        if (processQueue.isDropped()) {
    -            log.info("the pull request[{}] is dropped.", pullRequest.toString());
    -            return;
    +            memcpy(pool[k].cached,key,klen+1);
    +            sdssetlen(pool[k].cached,klen);
    +            pool[k].key = pool[k].cached;
             }
    +        pool[k].idle = idle;
    +        pool[k].dbid = dbid;
    +    }
    +}
    +

    Redis随机选择maxmemory_samples数量的key,然后计算这些key的空闲时间idle time,当满足条件时(比pool中的某些键的空闲时间还大)就可以进poolpool更新之后,就淘汰pool中空闲时间最大的键。

    +

    estimateObjectIdleTime用来计算Redis对象的空闲时间:

    +
    /* Given an object returns the min number of milliseconds the object was never
    + * requested, using an approximated LRU algorithm. */
    +unsigned long long estimateObjectIdleTime(robj *o) {
    +    unsigned long long lruclock = LRU_CLOCK();
    +    if (lruclock >= o->lru) {
    +        return (lruclock - o->lru) * LRU_CLOCK_RESOLUTION;
    +    } else {
    +        return (lruclock + (LRU_CLOCK_MAX - o->lru)) *
    +                    LRU_CLOCK_RESOLUTION;
    +    }
    +}
    +

    空闲时间第一种是 lurclock 大于对象的 lru,那么就是减一下乘以精度,因为 lruclock 有可能是已经预生成的,所以会可能走下面这个

    +

    LFU

    上面介绍了LRU 的算法,但是考虑一种场景

    +
    ~~~~~A~~~~~A~~~~~A~~~~A~~~~~A~~~~~A~~|
    +~~B~~B~~B~~B~~B~~B~~B~~B~~B~~B~~B~~B~|
    +~~~~~~~~~~C~~~~~~~~~C~~~~~~~~~C~~~~~~|
    +~~~~~D~~~~~~~~~~D~~~~~~~~~D~~~~~~~~~D|
    +

    可以发现,当采用 lru 的淘汰策略的时候,D 是最新的,会被认为是最值得保留的,但是事实上还不如 A 跟 B,然后 antirez 大神就想到了LFU (Least Frequently Used) 这个算法, 显然对于上面的四个 key 的访问频率,保留优先级应该是 B > A > C = D
    那要怎么来实现这个 LFU 算法呢,其实像LRU,理想的情况就是维护个链表,把最新访问的放到头上去,但是这个会影响访问速度,注意到前面代码的应该可以看到,redisObject 的 lru 字段其实是两用的,当策略是 LFU 时,这个字段就另作他用了,它的 24 位长度被分成两部分

    +
          16 bits      8 bits
    ++----------------+--------+
    ++ Last decr time | LOG_C  |
    ++----------------+--------+
    +

    前16位字段是最后一次递减时间,因此Redis知道 上一次计数器递减,后8位是 计数器 counter。
    LFU 的主体策略就是当这个 key 被访问的次数越多频率越高他就越容易被保留下来,并且是最近被访问的频率越高。这其实有两个事情要做,一个是在访问的时候增加计数值,在一定长时间不访问时进行衰减,所以这里用了两个值,前 16 位记录上一次衰减的时间,后 8 位记录具体的计数值。
    Redis4.0之后为maxmemory_policy淘汰策略添加了两个LFU模式:

    +

    volatile-lfu:对有过期时间的key采用LFU淘汰策略
    allkeys-lfu:对全部key采用LFU淘汰策略
    还有2个配置可以调整LFU算法:

    +
    lfu-log-factor 10
    +lfu-decay-time 1
    +```  
    +`lfu-log-factor` 可以调整计数器counter的增长速度,lfu-log-factor越大,counter增长的越慢。
     
    -        pullRequest.getProcessQueue().setLastPullTimestamp(System.currentTimeMillis());
    +`lfu-decay-time`是一个以分钟为单位的数值,可以调整counter的减少速度
    +这里有个问题是 8 位大小够计么,访问一次加 1 的话的确不够,不过大神就是大神,才不会这么简单的加一。往下看代码
    +```C
    +/* Low level key lookup API, not actually called directly from commands
    + * implementations that should instead rely on lookupKeyRead(),
    + * lookupKeyWrite() and lookupKeyReadWithFlags(). */
    +robj *lookupKey(redisDb *db, robj *key, int flags) {
    +    dictEntry *de = dictFind(db->dict,key->ptr);
    +    if (de) {
    +        robj *val = dictGetVal(de);
     
    -        try {
    -            this.makeSureStateOK();
    -        } catch (MQClientException e) {
    -            log.warn("pullMessage exception, consumer state not ok", e);
    -            this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
    -            return;
    +        /* Update the access time for the ageing algorithm.
    +         * Don't do it if we have a saving child, as this will trigger
    +         * a copy on write madness. */
    +        if (!hasActiveChildProcess() && !(flags & LOOKUP_NOTOUCH)){
    +            if (server.maxmemory_policy & MAXMEMORY_FLAG_LFU) {
    +                // 当淘汰策略是 LFU 时,就会调用这个updateLFU
    +                updateLFU(val);
    +            } else {
    +                val->lru = LRU_CLOCK();
    +            }
             }
    +        return val;
    +    } else {
    +        return NULL;
    +    }
    +}
    +

    updateLFU 这个其实个入口,调用了两个重要的方法

    +
    /* Update LFU when an object is accessed.
    + * Firstly, decrement the counter if the decrement time is reached.
    + * Then logarithmically increment the counter, and update the access time. */
    +void updateLFU(robj *val) {
    +    unsigned long counter = LFUDecrAndReturn(val);
    +    counter = LFULogIncr(counter);
    +    val->lru = (LFUGetTimeInMinutes()<<8) | counter;
    +}
    +

    首先来看看LFUDecrAndReturn,这个方法的作用是根据上一次衰减时间和系统配置的 lfu-decay-time 参数来确定需要将 counter 减去多少

    +
    /* If the object decrement time is reached decrement the LFU counter but
    + * do not update LFU fields of the object, we update the access time
    + * and counter in an explicit way when the object is really accessed.
    + * And we will times halve the counter according to the times of
    + * elapsed time than server.lfu_decay_time.
    + * Return the object frequency counter.
    + *
    + * This function is used in order to scan the dataset for the best object
    + * to fit: as we check for the candidate, we incrementally decrement the
    + * counter of the scanned objects if needed. */
    +unsigned long LFUDecrAndReturn(robj *o) {
    +    // 右移 8 位,拿到上次衰减时间
    +    unsigned long ldt = o->lru >> 8;
    +    // 对 255 做与操作,拿到 counter 值
    +    unsigned long counter = o->lru & 255;
    +    // 根据lfu_decay_time来算出过了多少个衰减周期
    +    unsigned long num_periods = server.lfu_decay_time ? LFUTimeElapsed(ldt) / server.lfu_decay_time : 0;
    +    if (num_periods)
    +        counter = (num_periods > counter) ? 0 : counter - num_periods;
    +    return counter;
    +}
    +

    然后是加,调用了LFULogIncr

    +
    /* Logarithmically increment a counter. The greater is the current counter value
    + * the less likely is that it gets really implemented. Saturate it at 255. */
    +uint8_t LFULogIncr(uint8_t counter) {
    +    // 最大值就是 255,到顶了就不加了
    +    if (counter == 255) return 255;
    +    // 生成个随机小数
    +    double r = (double)rand()/RAND_MAX;
    +    // 减去个基础值,LFU_INIT_VAL = 5,防止刚进来就被逐出
    +    double baseval = counter - LFU_INIT_VAL;
    +    // 如果是小于 0,
    +    if (baseval < 0) baseval = 0;
    +    // 如果 baseval 是 0,那么 p 就是 1了,后面 counter 直接加一,如果不是的话,得看系统参数lfu_log_factor,这个越大,除出来的 p 越小,那么 counter++的可能性也越小,这样子就把前面的疑问给解决了,不是直接+1 的
    +    double p = 1.0/(baseval*server.lfu_log_factor+1);
    +    if (r < p) counter++;
    +    return counter;
    +}
    +

    大概的变化速度可以参考

    +
    +--------+------------+------------+------------+------------+------------+
    +| factor | 100 hits   | 1000 hits  | 100K hits  | 1M hits    | 10M hits   |
    ++--------+------------+------------+------------+------------+------------+
    +| 0      | 104        | 255        | 255        | 255        | 255        |
    ++--------+------------+------------+------------+------------+------------+
    +| 1      | 18         | 49         | 255        | 255        | 255        |
    ++--------+------------+------------+------------+------------+------------+
    +| 10     | 10         | 18         | 142        | 255        | 255        |
    ++--------+------------+------------+------------+------------+------------+
    +| 100    | 8          | 11         | 49         | 143        | 255        |
    ++--------+------------+------------+------------+------------+------------+
    +

    简而言之就是 lfu_log_factor 越大变化的越慢

    +

    总结

    总结一下,redis 实现了近似的 lru 淘汰策略,通过增加了淘汰 key 的池子(pool),并且增大每次抽样的 key 的数量来将淘汰效果更进一步地接近于 lru,这是 lru 策略,但是对于前面举的一个例子,其实 lru 并不能保证 key 的淘汰就如我们预期,所以在后期又引入了 lfu 的策略,lfu的策略比较巧妙,复用了 redis 对象的 lru 字段,并且使用了factor 参数来控制计数器递增的速度,防止 8 位的计数器太早溢出。

    +]]>
    + + Redis + 数据结构 + 源码 + C + Redis + + + redis + 数据结构 + 源码 + +
    + + rust学习笔记-所有权三之切片 + /2021/05/16/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%B8%89%E4%B9%8B%E5%88%87%E7%89%87/ + 除了引用,Rust 还有另外一种不持有所有权的数据类型:切片(slice)。切片允许我们引用集合中某一段连续的元素序列,而不是整个集合。
    例如代码

    +
    fn main() {
    +    let mut s = String::from("hello world");
     
    -        if (this.isPause()) {
    -            log.warn("consumer was paused, execute pull request later. instanceName={}, group={}", this.defaultMQPushConsumer.getInstanceName(), this.defaultMQPushConsumer.getConsumerGroup());
    -            this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_SUSPEND);
    -            return;
    -        }
    +    let word = first_word(&s);
     
    -        // 这块其实是个类似于限流的功能块,对消息数量和消息大小做限制
    -        long cachedMessageCount = processQueue.getMsgCount().get();
    -        long cachedMessageSizeInMiB = processQueue.getMsgSize().get() / (1024 * 1024);
    +    s.clear();
     
    -        if (cachedMessageCount > this.defaultMQPushConsumer.getPullThresholdForQueue()) {
    -            this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_FLOW_CONTROL);
    -            if ((queueFlowControlTimes++ % 1000) == 0) {
    -                log.warn(
    -                    "the cached message count exceeds the threshold {}, so do flow control, minOffset={}, maxOffset={}, count={}, size={} MiB, pullRequest={}, flowControlTimes={}",
    -                    this.defaultMQPushConsumer.getPullThresholdForQueue(), processQueue.getMsgTreeMap().firstKey(), processQueue.getMsgTreeMap().lastKey(), cachedMessageCount, cachedMessageSizeInMiB, pullRequest, queueFlowControlTimes);
    -            }
    -            return;
    -        }
    +    // 这时候虽然 word 还是 5,但是 s 已经被清除了,所以就没存在的意义
    +}
    +

    这里其实我们就需要关注 s 的存在性,代码的逻辑合理性就需要额外去维护,此时我们就可以用切片

    +
    let s = String::from("hello world")
     
    -        if (cachedMessageSizeInMiB > this.defaultMQPushConsumer.getPullThresholdSizeForQueue()) {
    -            this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_FLOW_CONTROL);
    -            if ((queueFlowControlTimes++ % 1000) == 0) {
    -                log.warn(
    -                    "the cached message size exceeds the threshold {} MiB, so do flow control, minOffset={}, maxOffset={}, count={}, size={} MiB, pullRequest={}, flowControlTimes={}",
    -                    this.defaultMQPushConsumer.getPullThresholdSizeForQueue(), processQueue.getMsgTreeMap().firstKey(), processQueue.getMsgTreeMap().lastKey(), cachedMessageCount, cachedMessageSizeInMiB, pullRequest, queueFlowControlTimes);
    -            }
    -            return;
    -        }
    +let hello = &s[0..5];
    +let world = &s[6..11];
    +

    其实跟 Python 的list 之类的语法有点类似,当然里面还有些语法糖,比如可以直接用省略后面的数字表示直接引用到结尾

    +
    let hello = &s[0..];
    +

    甚至再进一步

    +
    let hello = &s[..];
    +

    使用了切片之后

    +
    fn first_word(s: &String) -> &str {
    +    let bytes = s.as_bytes();
     
    -        // 若不是顺序消费(即DefaultMQPushConsumerImpl.consumeOrderly等于false),则检查ProcessQueue对象的msgTreeMap:TreeMap<Long,MessageExt>变量的第一个key值与最后一个key值之间的差额,该key值表示查询的队列偏移量queueoffset;若差额大于阈值(由DefaultMQPushConsumer. consumeConcurrentlyMaxSpan指定,默认是2000),则调用PullMessageService.executePullRequestLater方法,在50毫秒之后重新将该PullRequest请求放入PullMessageService.pullRequestQueue队列中;并跳出该方法;这里的意思主要就是消息有堆积了,等会再来拉取
    -        if (!this.consumeOrderly) {
    -            if (processQueue.getMaxSpan() > this.defaultMQPushConsumer.getConsumeConcurrentlyMaxSpan()) {
    -                this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_FLOW_CONTROL);
    -                if ((queueMaxSpanFlowControlTimes++ % 1000) == 0) {
    -                    log.warn(
    -                        "the queue's messages, span too long, so do flow control, minOffset={}, maxOffset={}, maxSpan={}, pullRequest={}, flowControlTimes={}",
    -                        processQueue.getMsgTreeMap().firstKey(), processQueue.getMsgTreeMap().lastKey(), processQueue.getMaxSpan(),
    -                        pullRequest, queueMaxSpanFlowControlTimes);
    -                }
    -                return;
    -            }
    -        } else {
    -            if (processQueue.isLocked()) {
    -                if (!pullRequest.isLockedFirst()) {
    -                    final long offset = this.rebalanceImpl.computePullFromWhere(pullRequest.getMessageQueue());
    -                    boolean brokerBusy = offset < pullRequest.getNextOffset();
    -                    log.info("the first time to pull message, so fix offset from broker. pullRequest: {} NewOffset: {} brokerBusy: {}",
    -                        pullRequest, offset, brokerBusy);
    -                    if (brokerBusy) {
    -                        log.info("[NOTIFYME]the first time to pull message, but pull request offset larger than broker consume offset. pullRequest: {} NewOffset: {}",
    -                            pullRequest, offset);
    -                    }
    +    for (i, &item) in bytes.iter().enumerate() {
    +        if item == b' ' {
    +            return &s[0..i];
    +        }
    +    }
     
    -                    pullRequest.setLockedFirst(true);
    -                    pullRequest.setNextOffset(offset);
    -                }
    -            } else {
    -                this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
    -                log.info("pull message later because not locked in broker, {}", pullRequest);
    -                return;
    -            }
    -        }
    +    &s[..]
    +}
    +fn main() {
    +    let mut s = String::from("hello world");
     
    -        // 以PullRequest.messageQueue对象的topic值为参数从RebalanceImpl.subscriptionInner: ConcurrentHashMap, SubscriptionData>中获取对应的SubscriptionData对象,若该对象为null,考虑到并发的关系,调用executePullRequestLater方法,稍后重试;并跳出该方法;
    -        final SubscriptionData subscriptionData = this.rebalanceImpl.getSubscriptionInner().get(pullRequest.getMessageQueue().getTopic());
    -        if (null == subscriptionData) {
    -            this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
    -            log.warn("find the consumer's subscription failed, {}", pullRequest);
    -            return;
    -        }
    +    let word = first_word(&s);
     
    -        final long beginTimestamp = System.currentTimeMillis();
    +    s.clear(); // error!
     
    -        // 异步拉取回调,先不讨论细节
    -        PullCallback pullCallback = new PullCallback() {
    -            @Override
    -            public void onSuccess(PullResult pullResult) {
    -                if (pullResult != null) {
    -                    pullResult = DefaultMQPushConsumerImpl.this.pullAPIWrapper.processPullResult(pullRequest.getMessageQueue(), pullResult,
    -                        subscriptionData);
    +    println!("the first word is: {}", word);
    +}
    +

    那再执行 main 函数的时候就会抛错,因为 word 还是个切片,需要保证 s 的有效性,并且其实我们可以将函数申明成

    +
    fn first_word(s: &str) -> &str {
    +

    这样就既能处理&String 的情况,就是当成完整字符串的切片,也能处理普通的切片。
    其他类型的切片

    +
    let a = [1, 2, 3, 4, 5];
    +let slice = &a[1..3];
    +

    简单记录下,具体可以去看看这本书

    +]]>
    + + 语言 + Rust + + + Rust + 所有权 + 内存分布 + 新语言 + 可变引用 + 不可变引用 + 切片 + +
    + + rust学习笔记-所有权二 + /2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%BA%8C/ + 这里需要说道函数和返回值了
    可以看书上的这个例子

    对于这种情况,当进入函数内部时,会把传入的变量的所有权转移进函数内部,如果最后还是要返回该变量,但是如果此时还要返回别的计算结果,就可能需要笨拙地使用元组

    +

    引用

    此时我们就可以用引用来解决这个问题

    +
    fn main() {
    +    let s1 = String::from("hello");
    +    let len = calculate_length(&s1);
     
    -                    switch (pullResult.getPullStatus()) {
    -                        case FOUND:
    -                            long prevRequestOffset = pullRequest.getNextOffset();
    -                            pullRequest.setNextOffset(pullResult.getNextBeginOffset());
    -                            long pullRT = System.currentTimeMillis() - beginTimestamp;
    -                            DefaultMQPushConsumerImpl.this.getConsumerStatsManager().incPullRT(pullRequest.getConsumerGroup(),
    -                                pullRequest.getMessageQueue().getTopic(), pullRT);
    +    println!("The length of '{}' is {}", s1, len);
    +}
    +fn calculate_length(s: &String) -> usize {
    +    s.len()
    +}
    +

    这里的&符号就是引用的语义,它们允许你在不获得所有权的前提下使用值

    由于引用不持有值的所有权,所以当引用离开当前作用域时,它指向的值也不会被丢弃

    +

    可变引用

    而当我们尝试对引用的字符串进行修改时

    +
    fn main() {
    +    let s1 = String::from("hello");
    +    change(&s1);
    +}
    +fn change(s: &String) {
    +    s.push_str(", world");
    +}
    +

    就会有以下报错,

    其实也很容易发现,毕竟没有 mut 指出这是可变引用,同时需要将 s1 改成 mut 可变的

    +
    fn main() {
    +    let mut s1 = String::from("hello");
    +    change(&mut s1);
    +}
     
    -                            long firstMsgOffset = Long.MAX_VALUE;
    -                            if (pullResult.getMsgFoundList() == null || pullResult.getMsgFoundList().isEmpty()) {
    -                                DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
    -                            } else {
    -                                firstMsgOffset = pullResult.getMsgFoundList().get(0).getQueueOffset();
     
    -                                DefaultMQPushConsumerImpl.this.getConsumerStatsManager().incPullTPS(pullRequest.getConsumerGroup(),
    -                                    pullRequest.getMessageQueue().getTopic(), pullResult.getMsgFoundList().size());
    +fn change(s: &mut String) {
    +    s.push_str(", world");
    +}
    +

    再看一个例子

    +
    fn main() {
    +    let mut s1 = String::from("hello");
    +    let r1 = &mut s1;
    +    let r2 = &mut s1;
    +}
    +

    这个例子在书里是会报错的,因为同时存在一个以上的可变引用,但是在我运行的版本里前面这段没有报错,只有当我真的要去更改的时候

    +
    fn main() {
    +    let mut s1 = String::from("hello");
    +    let mut r1 = &mut s1;
    +    let mut r2 = &mut s1;
    +    change(&mut r1);
    +    change(&mut r2);
    +}
     
    -                                boolean dispatchToConsume = processQueue.putMessage(pullResult.getMsgFoundList());
    -                                DefaultMQPushConsumerImpl.this.consumeMessageService.submitConsumeRequest(
    -                                    pullResult.getMsgFoundList(),
    -                                    processQueue,
    -                                    pullRequest.getMessageQueue(),
    -                                    dispatchToConsume);
     
    -                                if (DefaultMQPushConsumerImpl.this.defaultMQPushConsumer.getPullInterval() > 0) {
    -                                    DefaultMQPushConsumerImpl.this.executePullRequestLater(pullRequest,
    -                                        DefaultMQPushConsumerImpl.this.defaultMQPushConsumer.getPullInterval());
    -                                } else {
    -                                    DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
    -                                }
    -                            }
    +fn change(s: &mut String) {
    +    s.push_str(", world");
    +}
    +


    这里可能就是具体版本在实现上的一个差异,我用的 rustc 是 1.44.0 版本
    其实上面的主要是由 rust 想要避免这类多重可变更导致的异常问题,总结下就是三个点

    +
      +
    • 两个或两个以上的指针同时同时访问同一空间
    • +
    • 其中至少有一个指针会想空间中写入数据
    • +
    • 没有同步数据访问的机制
      并且我们不能在拥有不可变引用的情况下创建可变引用
    • +
    +

    悬垂引用

    还有一点需要注意的就是悬垂引用

    +
    fn main() {
    +    let reference_to_nothing = dangle();
    +}
     
    -                            if (pullResult.getNextBeginOffset() < prevRequestOffset
    -                                || firstMsgOffset < prevRequestOffset) {
    -                                log.warn(
    -                                    "[BUG] pull message result maybe data wrong, nextBeginOffset: {} firstMsgOffset: {} prevRequestOffset: {}",
    -                                    pullResult.getNextBeginOffset(),
    -                                    firstMsgOffset,
    -                                    prevRequestOffset);
    -                            }
    +fn dangle() -> &String {
    +    let s = String::from("hello");
    +    &s
    +}
    +

    这里可以看到其实在 dangle函数返回后,这里的 s 理论上就离开了作用域,但是由于返回了 s 的引用,在 main 函数中就会拿着这个引用,就会出现如下错误

    +

    总结

    最后总结下

    +
      +
    • 在任何一个段给定的时间里,你要么只能拥有一个可变引用,要么只能拥有任意数量的不可变引用。
    • +
    • 引用总是有效的。
    • +
    +]]>
    + + 语言 + Rust + + + Rust + 所有权 + 内存分布 + 新语言 + 可变引用 + 不可变引用 + +
    + + spark-little-tips + /2017/03/28/spark-little-tips/ + spark 的一些粗浅使用经验

    工作中学习使用了一下Spark做数据分析,主要是用spark的python接口,首先是pyspark.SparkContext(appName=xxx),这是初始化一个Spark应用实例或者说会话,不能重复,
    返回的实例句柄就可以调用textFile(path)读取文本文件,这里的文本文件可以是HDFS上的文本文件,也可以普通文本文件,但是需要在Spark的所有集群上都存在,否则会
    读取失败,parallelize则可以将python生成的集合数据读取后转换成rdd(A Resilient Distributed Dataset (RDD),一种spark下的基本抽象数据集),基于这个RDD就可以做
    数据的流式计算,例如map reduce,在Spark中可以非常方便地实现

    +

    简单的mapreduce word count示例

    textFile = sc.parallelize([(1,1), (2,1), (3,1), (4,1), (5,1),(1,1), (2,1), (3,1), (4,1), (5,1)])
    +data = textFile.reduceByKey(lambda x, y: x + y).collect()
    +for _ in data:
    +    print(_)
    - break; - case NO_NEW_MSG: - pullRequest.setNextOffset(pullResult.getNextBeginOffset()); - DefaultMQPushConsumerImpl.this.correctTagsOffset(pullRequest); +

    结果

    (3, 2)
    +(1, 2)
    +(4, 2)
    +(2, 2)
    +(5, 2)
    +]]>
    + + data analysis + + + spark + python + +
    + + spring event 介绍 + /2022/01/30/spring-event-%E4%BB%8B%E7%BB%8D/ + spring框架中如果想使用一些一部操作,除了依赖第三方中间件的消息队列,还可以用spring自己的event,简单介绍下使用方法
    首先我们可以建一个event,继承ApplicationEvent

    +
    
    +public class CustomSpringEvent extends ApplicationEvent {
     
    -                            DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
    -                            break;
    -                        case NO_MATCHED_MSG:
    -                            pullRequest.setNextOffset(pullResult.getNextBeginOffset());
    +    private String message;
     
    -                            DefaultMQPushConsumerImpl.this.correctTagsOffset(pullRequest);
    +    public CustomSpringEvent(Object source, String message) {
    +        super(source);
    +        this.message = message;
    +    }
    +    public String getMessage() {
    +        return message;
    +    }
    +}
    +

    这个 ApplicationEvent 其实也比较简单,内部就一个 Object 类型的 source,可以自行扩展,我们在自定义的这个 Event 里加了个 Message ,只是简单介绍下使用

    +
    public abstract class ApplicationEvent extends EventObject {
    +    private static final long serialVersionUID = 7099057708183571937L;
    +    private final long timestamp;
     
    -                            DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
    -                            break;
    -                        case OFFSET_ILLEGAL:
    -                            log.warn("the pull request offset illegal, {} {}",
    -                                pullRequest.toString(), pullResult.toString());
    -                            pullRequest.setNextOffset(pullResult.getNextBeginOffset());
    +    public ApplicationEvent(Object source) {
    +        super(source);
    +        this.timestamp = System.currentTimeMillis();
    +    }
     
    -                            pullRequest.getProcessQueue().setDropped(true);
    -                            DefaultMQPushConsumerImpl.this.executeTaskLater(new Runnable() {
    +    public ApplicationEvent(Object source, Clock clock) {
    +        super(source);
    +        this.timestamp = clock.millis();
    +    }
     
    -                                @Override
    -                                public void run() {
    -                                    try {
    -                                        DefaultMQPushConsumerImpl.this.offsetStore.updateOffset(pullRequest.getMessageQueue(),
    -                                            pullRequest.getNextOffset(), false);
    +    public final long getTimestamp() {
    +        return this.timestamp;
    +    }
    +}
    - DefaultMQPushConsumerImpl.this.offsetStore.persist(pullRequest.getMessageQueue()); +

    然后就是事件生产者和监听消费者

    +
    @Component
    +public class CustomSpringEventPublisher {
     
    -                                        DefaultMQPushConsumerImpl.this.rebalanceImpl.removeProcessQueue(pullRequest.getMessageQueue());
    +    @Resource
    +    private ApplicationEventPublisher applicationEventPublisher;
     
    -                                        log.warn("fix the pull request offset, {}", pullRequest);
    -                                    } catch (Throwable e) {
    -                                        log.error("executeTaskLater Exception", e);
    -                                    }
    -                                }
    -                            }, 10000);
    -                            break;
    -                        default:
    -                            break;
    -                    }
    -                }
    -            }
    +    public void publishCustomEvent(final String message) {
    +        System.out.println("Publishing custom event. ");
    +        CustomSpringEvent customSpringEvent = new CustomSpringEvent(this, message);
    +        applicationEventPublisher.publishEvent(customSpringEvent);
    +    }
    +}
    +

    这里的 ApplicationEventPublisher 是 Spring 的方法接口

    +
    @FunctionalInterface
    +public interface ApplicationEventPublisher {
    +    default void publishEvent(ApplicationEvent event) {
    +        this.publishEvent((Object)event);
    +    }
     
    -            @Override
    -            public void onException(Throwable e) {
    -                if (!pullRequest.getMessageQueue().getTopic().startsWith(MixAll.RETRY_GROUP_TOPIC_PREFIX)) {
    -                    log.warn("execute the pull request exception", e);
    -                }
    +    void publishEvent(Object var1);
    +}
    +

    具体的是例如 org.springframework.context.support.AbstractApplicationContext#publishEvent(java.lang.Object, org.springframework.core.ResolvableType) 中的实现,后面可以展开讲讲

    +

    事件监听者:

    +
    @Component
    +public class CustomSpringEventListener implements ApplicationListener<CustomSpringEvent> {
    +    @Override
    +    public void onApplicationEvent(CustomSpringEvent event) {
    +        System.out.println("Received spring custom event - " + event.getMessage());
    +    }
    +}
    +

    这里的也是 spring 的一个方法接口

    +
    @FunctionalInterface
    +public interface ApplicationListener<E extends ApplicationEvent> extends EventListener {
    +    void onApplicationEvent(E var1);
     
    -                DefaultMQPushConsumerImpl.this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
    -            }
    -        };
    -        // 如果为集群模式,即可置commitOffsetEnable为 true
    -        boolean commitOffsetEnable = false;
    -        long commitOffsetValue = 0L;
    -        if (MessageModel.CLUSTERING == this.defaultMQPushConsumer.getMessageModel()) {
    -            commitOffsetValue = this.offsetStore.readOffset(pullRequest.getMessageQueue(), ReadOffsetType.READ_FROM_MEMORY);
    -            if (commitOffsetValue > 0) {
    -                commitOffsetEnable = true;
    -            }
    -        }
    +    static <T> ApplicationListener<PayloadApplicationEvent<T>> forPayload(Consumer<T> consumer) {
    +        return (event) -> {
    +            consumer.accept(event.getPayload());
    +        };
    +    }
    +}
    - // 将上面获得的commitOffsetEnable更新到订阅关系里 - String subExpression = null; - boolean classFilter = false; - SubscriptionData sd = this.rebalanceImpl.getSubscriptionInner().get(pullRequest.getMessageQueue().getTopic()); - if (sd != null) { - if (this.defaultMQPushConsumer.isPostSubscriptionWhenPull() && !sd.isClassFilterMode()) { - subExpression = sd.getSubString(); - } +

    然后简单包个请求

    +
    
    +@RequestMapping(value = "/event", method = RequestMethod.GET)
    +@ResponseBody
    +public void event() {
    +    customSpringEventPublisher.publishCustomEvent("hello sprint event");
    +}
    - classFilter = sd.isClassFilterMode(); - } +


    就能看到接收到消息了。

    +]]>
    + + Java + Spring + + + Java + Spring + Spring Event + +
    + + rust学习笔记-所有权一 + /2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + 最近在看 《rust 权威指南》,还是难度比较大的,它里面的一些概念跟之前的用过的都有比较大的差别
    比起有 gc 的虚拟机语言,跟像 C 和 C++这种主动释放内存的,rust 有他的独特点,主要是有三条

    +
      +
    • Rust中的每一个值都有一个对应的变量作为它的所有者。
    • +
    • 在同一时间内,值有且只有一个所有者。
    • +
    • 当所有者离开自己的作用域时,它持有的值就会被释放掉。

      这里有两个重点:
    • +
    • s 在进入作用域后才变得有效
    • +
    • 它会保持自己的有效性直到自己离开作用域为止
    • +
    +

    然后看个案例

    +
    let x = 5;
    +let y = x;
    +

    这个其实有两种,一般可以认为比较多实现的会使用 copy on write 之类的,先让两个都指向同一个快 5 的存储,在发生变更后开始正式拷贝,但是涉及到内存处理的便利性,对于这类简单类型,可以直接拷贝
    但是对于非基础类型

    +
    let s1 = String::from("hello");
    +let s2 = s1;
     
    -        // 组成 sysFlag
    -        int sysFlag = PullSysFlag.buildSysFlag(
    -            commitOffsetEnable, // commitOffset
    -            true, // suspend
    -            subExpression != null, // subscription
    -            classFilter // class filter
    -        );
    -        // 调用真正的拉取消息接口
    -        try {
    -            this.pullAPIWrapper.pullKernelImpl(
    -                pullRequest.getMessageQueue(),
    -                subExpression,
    -                subscriptionData.getExpressionType(),
    -                subscriptionData.getSubVersion(),
    -                pullRequest.getNextOffset(),
    -                this.defaultMQPushConsumer.getPullBatchSize(),
    -                sysFlag,
    -                commitOffsetValue,
    -                BROKER_SUSPEND_MAX_TIME_MILLIS,
    -                CONSUMER_TIMEOUT_MILLIS_WHEN_SUSPEND,
    -                CommunicationMode.ASYNC,
    -                pullCallback
    -            );
    -        } catch (Exception e) {
    -            log.error("pullKernelImpl exception", e);
    -            this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
    +println!("{}, world!", s1);
    +

    有可能认为有两种内存分布可能
    先看下 string 的内存结构

    第一种可能是

    第二种是

    我们来尝试编译下

    发现有这个错误,其实在 rust 中let y = x这个行为的实质是移动,在赋值给 y 之后 x 就无效了

    这样子就不会造成脱离作用域时,对同一块内存区域的二次释放,如果需要复制,可以使用 clone 方法

    +
    let s1 = String::from("hello");
    +let s2 = s1.clone();
    +
    +println!("s1 = {}, s2 = {}", s1, s2);
    +

    这里其实会有点疑惑,为什么前面的x, y 的行为跟 s1, s2 的不一样,其实主要是基本类型和 string 这类的不定大小的类型的内存分配方式不同,x, y这类整型可以直接确定大小,可以直接在栈上分配,而像 string 和其他的变体结构体,其大小都是不能在编译时确定,所以需要在堆上进行分配

    +]]>
    + + 语言 + Rust + + + Rust + 所有权 + 内存分布 + 新语言 + +
    + + summary-ranges-228 + /2016/10/12/summary-ranges-228/ + problem

    Given a sorted integer array without duplicates, return the summary of its ranges.

    +

    For example, given [0,1,2,4,5,7], return ["0->2","4->5","7"].

    +

    题解

    每一个区间的起点nums[i]加上j是否等于nums[i+j]
    参考

    +

    Code

    class Solution {
    +public:
    +    vector<string> summaryRanges(vector<int>& nums) {
    +        int i = 0, j = 1, n;
    +        vector<string> res;
    +        n = nums.size();
    +        while(i < n){
    +            j = 1;
    +            while(j < n && nums[i+j] - nums[i] == j) j++;
    +            res.push_back(j <= 1 ? to_string(nums[i]) : to_string(nums[i]) + "->" + to_string(nums[i + j - 1]));
    +            i += j;
             }
    -    }
    -

    以下就是拉取消息的底层 api,不够不是特别复杂,主要是在找 broker,和设置请求参数

    -
    public PullResult pullKernelImpl(
    -    final MessageQueue mq,
    -    final String subExpression,
    -    final String expressionType,
    -    final long subVersion,
    -    final long offset,
    -    final int maxNums,
    -    final int sysFlag,
    -    final long commitOffset,
    -    final long brokerSuspendMaxTimeMillis,
    -    final long timeoutMillis,
    -    final CommunicationMode communicationMode,
    -    final PullCallback pullCallback
    -) throws MQClientException, RemotingException, MQBrokerException, InterruptedException {
    -    FindBrokerResult findBrokerResult =
    -        this.mQClientFactory.findBrokerAddressInSubscribe(mq.getBrokerName(),
    -            this.recalculatePullFromWhichNode(mq), false);
    -    if (null == findBrokerResult) {
    -        this.mQClientFactory.updateTopicRouteInfoFromNameServer(mq.getTopic());
    -        findBrokerResult =
    -            this.mQClientFactory.findBrokerAddressInSubscribe(mq.getBrokerName(),
    -                this.recalculatePullFromWhichNode(mq), false);
    +        return res;
         }
    +};
    ]]>
    + + leetcode + + + leetcode + c++ + +
    + + swoole-websocket-test + /2016/07/13/swoole-websocket-test/ + 玩一下swoole的websocket

    WebSocket是HTML5开始提供的一种在单个TCP连接上进行全双工通讯的协议。WebSocket通信协议于2011年被IETF定为标准RFC 6455,WebSocketAPI被W3C定为标准。
    ,在web私信,im等应用较多。背景和优缺点可以参看wiki

    +

    环境准备

    因为swoole官方还不支持windows,所以需要装下linux,之前都是用ubuntu,
    这次就试一下centos7,还是满好看的,虽然虚拟机会默认最小安装,需要在安装
    时自己选择带gnome的,当然最小安装也是可以的,只是最后需要改下防火墙。
    然后是装下PHP,Nginx什么的,我是用Oneinstack,可以按需安装
    给做这个的大大点个赞。

    + - if (findBrokerResult != null) { - { - // check version - if (!ExpressionType.isTagType(expressionType) - && findBrokerResult.getBrokerVersion() < MQVersion.Version.V4_1_0_SNAPSHOT.ordinal()) { - throw new MQClientException("The broker[" + mq.getBrokerName() + ", " - + findBrokerResult.getBrokerVersion() + "] does not upgrade to support for filter message by " + expressionType, null); - } - } - int sysFlagInner = sysFlag; +

    swoole

    1.install via pecl

    +
    pecl install swoole
    - if (findBrokerResult.isSlave()) { - sysFlagInner = PullSysFlag.clearCommitOffsetFlag(sysFlagInner); - } +

    2.install from source

    +
    sudo apt-get install php5-dev
    +git clone https://github.com/swoole/swoole-src.git
    +cd swoole-src
    +phpize
    +./configure
    +make && make install
    +

    3.add extension

    +
    extension = swoole.so
    - PullMessageRequestHeader requestHeader = new PullMessageRequestHeader(); - requestHeader.setConsumerGroup(this.consumerGroup); - requestHeader.setTopic(mq.getTopic()); - requestHeader.setQueueId(mq.getQueueId()); - requestHeader.setQueueOffset(offset); - requestHeader.setMaxMsgNums(maxNums); - requestHeader.setSysFlag(sysFlagInner); - requestHeader.setCommitOffset(commitOffset); - requestHeader.setSuspendTimeoutMillis(brokerSuspendMaxTimeMillis); - requestHeader.setSubscription(subExpression); - requestHeader.setSubVersion(subVersion); - requestHeader.setExpressionType(expressionType); +

    4.test extension

    +
    php -m | grep swoole
    +

    如果存在就代表安装成功啦

    +

    Exec

    实现代码看了这位仁兄的代码

    +

    还是贴一下代码
    服务端:

    +
    //创建websocket服务器对象,监听0.0.0.0:9502端口
    +$ws = new swoole_websocket_server("0.0.0.0", 9502);
     
    -        String brokerAddr = findBrokerResult.getBrokerAddr();
    -        if (PullSysFlag.hasClassFilterFlag(sysFlagInner)) {
    -            brokerAddr = computPullFromWhichFilterServer(mq.getTopic(), brokerAddr);
    -        }
    +//监听WebSocket连接打开事件
    +$ws->on('open', function ($ws, $request) {
    +    $fd[] = $request->fd;
    +    $GLOBALS['fd'][] = $fd;
    +    //区别下当前用户
    +    $ws->push($request->fd, "hello user{$request->fd}, welcome\n"); 
    +});
     
    -        PullResult pullResult = this.mQClientFactory.getMQClientAPIImpl().pullMessage(
    -            brokerAddr,
    -            requestHeader,
    -            timeoutMillis,
    -            communicationMode,
    -            pullCallback);
    +//监听WebSocket消息事件
    +$ws->on('message', function ($ws, $frame) {
    +    $msg =  'from'.$frame->fd.":{$frame->data}\n";
     
    -        return pullResult;
    -    }
    +    foreach($GLOBALS['fd'] as $aa){
    +        foreach($aa as $i){
    +            if($i != $frame->fd) {
    +                # code...
    +                $ws->push($i,$msg);
    +            }
    +        }
    +    }
    +});
     
    -    throw new MQClientException("The broker[" + mq.getBrokerName() + "] not exist", null);
    -}
    -

    再看下一步的

    -
    public PullResult pullMessage(
    -    final String addr,
    -    final PullMessageRequestHeader requestHeader,
    -    final long timeoutMillis,
    -    final CommunicationMode communicationMode,
    -    final PullCallback pullCallback
    -) throws RemotingException, MQBrokerException, InterruptedException {
    -    RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.PULL_MESSAGE, requestHeader);
    +//监听WebSocket连接关闭事件
    +$ws->on('close', function ($ws, $fd) {
    +    echo "client-{$fd} is closed\n";
    +});
     
    -    switch (communicationMode) {
    -        case ONEWAY:
    -            assert false;
    -            return null;
    -        case ASYNC:
    -            this.pullMessageAsync(addr, request, timeoutMillis, pullCallback);
    -            return null;
    -        case SYNC:
    -            return this.pullMessageSync(addr, request, timeoutMillis);
    -        default:
    -            assert false;
    -            break;
    -    }
    +$ws->start();
    - return null; -}
    -

    通过 communicationMode 判断是同步拉取还是异步拉取,异步就调用

    -
    private void pullMessageAsync(
    -        final String addr,
    -        final RemotingCommand request,
    -        final long timeoutMillis,
    -        final PullCallback pullCallback
    -    ) throws RemotingException, InterruptedException {
    -        this.remotingClient.invokeAsync(addr, request, timeoutMillis, new InvokeCallback() {
    -            @Override
    -            public void operationComplete(ResponseFuture responseFuture) {
    -                异步
    -                RemotingCommand response = responseFuture.getResponseCommand();
    -                if (response != null) {
    -                    try {
    -                        PullResult pullResult = MQClientAPIImpl.this.processPullResponse(response);
    -                        assert pullResult != null;
    -                        pullCallback.onSuccess(pullResult);
    -                    } catch (Exception e) {
    -                        pullCallback.onException(e);
    -                    }
    -                } else {
    -                    if (!responseFuture.isSendRequestOK()) {
    -                        pullCallback.onException(new MQClientException("send request failed to " + addr + ". Request: " + request, responseFuture.getCause()));
    -                    } else if (responseFuture.isTimeout()) {
    -                        pullCallback.onException(new MQClientException("wait response from " + addr + " timeout :" + responseFuture.getTimeoutMillis() + "ms" + ". Request: " + request,
    -                            responseFuture.getCause()));
    -                    } else {
    -                        pullCallback.onException(new MQClientException("unknown reason. addr: " + addr + ", timeoutMillis: " + timeoutMillis + ". Request: " + request, responseFuture.getCause()));
    -                    }
    -                }
    -            }
    -        });
    -    }
    -

    并且会调用前面 pullCallback 的onSuccess和onException方法,同步的就是调用

    -
    private PullResult pullMessageSync(
    -        final String addr,
    -        final RemotingCommand request,
    -        final long timeoutMillis
    -    ) throws RemotingException, InterruptedException, MQBrokerException {
    -        RemotingCommand response = this.remotingClient.invokeSync(addr, request, timeoutMillis);
    -        assert response != null;
    -        return this.processPullResponse(response);
    -    }
    -

    然后就是这个 remotingClient 的 invokeAsync 跟 invokeSync 方法

    -
    @Override
    -    public void invokeAsync(String addr, RemotingCommand request, long timeoutMillis, InvokeCallback invokeCallback)
    -        throws InterruptedException, RemotingConnectException, RemotingTooMuchRequestException, RemotingTimeoutException,
    -        RemotingSendRequestException {
    -        long beginStartTime = System.currentTimeMillis();
    -        final Channel channel = this.getAndCreateChannel(addr);
    -        if (channel != null && channel.isActive()) {
    -            try {
    -                doBeforeRpcHooks(addr, request);
    -                long costTime = System.currentTimeMillis() - beginStartTime;
    -                if (timeoutMillis < costTime) {
    -                    throw new RemotingTooMuchRequestException("invokeAsync call timeout");
    -                }
    -                this.invokeAsyncImpl(channel, request, timeoutMillis - costTime, invokeCallback);
    -            } catch (RemotingSendRequestException e) {
    -                log.warn("invokeAsync: send request exception, so close the channel[{}]", addr);
    -                this.closeChannel(addr, channel);
    -                throw e;
    -            }
    -        } else {
    -            this.closeChannel(addr, channel);
    -            throw new RemotingConnectException(addr);
    -        }
    -    }
    -@Override
    -    public RemotingCommand invokeSync(String addr, final RemotingCommand request, long timeoutMillis)
    -        throws InterruptedException, RemotingConnectException, RemotingSendRequestException, RemotingTimeoutException {
    -        long beginStartTime = System.currentTimeMillis();
    -        final Channel channel = this.getAndCreateChannel(addr);
    -        if (channel != null && channel.isActive()) {
    -            try {
    -                doBeforeRpcHooks(addr, request);
    -                long costTime = System.currentTimeMillis() - beginStartTime;
    -                if (timeoutMillis < costTime) {
    -                    throw new RemotingTimeoutException("invokeSync call timeout");
    -                }
    -                RemotingCommand response = this.invokeSyncImpl(channel, request, timeoutMillis - costTime);
    -                doAfterRpcHooks(RemotingHelper.parseChannelRemoteAddr(channel), request, response);
    -                return response;
    -            } catch (RemotingSendRequestException e) {
    -                log.warn("invokeSync: send request exception, so close the channel[{}]", addr);
    -                this.closeChannel(addr, channel);
    -                throw e;
    -            } catch (RemotingTimeoutException e) {
    -                if (nettyClientConfig.isClientCloseSocketIfTimeout()) {
    -                    this.closeChannel(addr, channel);
    -                    log.warn("invokeSync: close socket because of timeout, {}ms, {}", timeoutMillis, addr);
    -                }
    -                log.warn("invokeSync: wait response timeout exception, the channel[{}]", addr);
    -                throw e;
    -            }
    -        } else {
    -            this.closeChannel(addr, channel);
    -            throw new RemotingConnectException(addr);
    -        }
    -    }
    -

    再往下看

    -
    public RemotingCommand invokeSyncImpl(final Channel channel, final RemotingCommand request,
    -        final long timeoutMillis)
    -        throws InterruptedException, RemotingSendRequestException, RemotingTimeoutException {
    -        final int opaque = request.getOpaque();
    +

    客户端:

    +
    <!DOCTYPE html>
    +<html lang="en">
    +<head>
    +    <meta charset="UTF-8">
    +    <title>Title</title>
    +</head>
    +<body>
    +<div id="msg"></div>
    +<input type="text" id="text">
    +<input type="submit" value="发送数据" onclick="song()">
    +</body>
    +<script>
    +    var msg = document.getElementById("msg");
    +    var wsServer = 'ws://0.0.0.0:9502';
    +    //调用websocket对象建立连接:
    +    //参数:ws/wss(加密)://ip:port (字符串)
    +    var websocket = new WebSocket(wsServer);
    +    //onopen监听连接打开
    +    websocket.onopen = function (evt) {
    +        //websocket.readyState 属性:
    +        /*
    +        CONNECTING    0    The connection is not yet open.
    +        OPEN    1    The connection is open and ready to communicate.
    +        CLOSING    2    The connection is in the process of closing.
    +        CLOSED    3    The connection is closed or couldn't be opened.
    +        */
    +        msg.innerHTML = websocket.readyState;
    +    };
     
    -        try {
    -            同步跟异步都是会把结果用ResponseFuture抱起来
    -            final ResponseFuture responseFuture = new ResponseFuture(channel, opaque, timeoutMillis, null, null);
    -            this.responseTable.put(opaque, responseFuture);
    -            final SocketAddress addr = channel.remoteAddress();
    -            channel.writeAndFlush(request).addListener(new ChannelFutureListener() {
    -                @Override
    -                public void operationComplete(ChannelFuture f) throws Exception {
    -                    if (f.isSuccess()) {
    -                        responseFuture.setSendRequestOK(true);
    -                        return;
    -                    } else {
    -                        responseFuture.setSendRequestOK(false);
    -                    }
    +    function song(){
    +        var text = document.getElementById('text').value;
    +        document.getElementById('text').value = '';
    +        //向服务器发送数据
    +        websocket.send(text);
    +    }
    +      //监听连接关闭
    +//    websocket.onclose = function (evt) {
    +//        console.log("Disconnected");
    +//    };
     
    -                    responseTable.remove(opaque);
    -                    responseFuture.setCause(f.cause());
    -                    responseFuture.putResponse(null);
    -                    log.warn("send a request command to channel <" + addr + "> failed.");
    -                }
    -            });
    -            // 区别是同步的是在这等待
    -            RemotingCommand responseCommand = responseFuture.waitResponse(timeoutMillis);
    -            if (null == responseCommand) {
    -                if (responseFuture.isSendRequestOK()) {
    -                    throw new RemotingTimeoutException(RemotingHelper.parseSocketAddressAddr(addr), timeoutMillis,
    -                        responseFuture.getCause());
    -                } else {
    -                    throw new RemotingSendRequestException(RemotingHelper.parseSocketAddressAddr(addr), responseFuture.getCause());
    -                }
    -            }
    +    //onmessage 监听服务器数据推送
    +    websocket.onmessage = function (evt) {
    +        msg.innerHTML += evt.data +'<br>';
    +//        console.log('Retrieved data from server: ' + evt.data);
    +    };
    +//监听连接错误信息
    +//    websocket.onerror = function (evt, e) {
    +//        console.log('Error occured: ' + evt.data);
    +//    };
     
    -            return responseCommand;
    -        } finally {
    -            this.responseTable.remove(opaque);
    -        }
    -    }
    +</script>
    +</html>
    - public void invokeAsyncImpl(final Channel channel, final RemotingCommand request, final long timeoutMillis, - final InvokeCallback invokeCallback) - throws InterruptedException, RemotingTooMuchRequestException, RemotingTimeoutException, RemotingSendRequestException { - long beginStartTime = System.currentTimeMillis(); - final int opaque = request.getOpaque(); - boolean acquired = this.semaphoreAsync.tryAcquire(timeoutMillis, TimeUnit.MILLISECONDS); - if (acquired) { - final SemaphoreReleaseOnlyOnce once = new SemaphoreReleaseOnlyOnce(this.semaphoreAsync); - long costTime = System.currentTimeMillis() - beginStartTime; - if (timeoutMillis < costTime) { - once.release(); - throw new RemotingTimeoutException("invokeAsyncImpl call timeout"); - } +

    做了个循环,将当前用户的消息发送给同时在线的其他用户,比较简陋,如下图
    user1:
    NH}()5}1DTLTKZ%HUQ`4L(V.png](https://ooo.0o0.ooo/2016/07/13/578665c07d94c.png)
+user2:
+![QA_$_$MEL6ALWF48UZFRY1L.png](https://ooo.0o0.ooo/2016/07/13/578665c08a2d1.png)
+user3:
+![QK8EU5`9TQNYIG_4YFU@DJN.png

    +]]> + + php + + + websocket + swoole + + + + wordpress 忘记密码的一种解决方法 + /2021/12/05/wordpress-%E5%BF%98%E8%AE%B0%E5%AF%86%E7%A0%81%E7%9A%84%E4%B8%80%E7%A7%8D%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95/ + 前阵子搭了个 WordPress,但是没怎么用,前两天发现忘了登录密码了,最近不知道是什么情况,chrome 的记住密码跟历史记录感觉有点问题,历史记录丢了不少东西,可能是时间太久了,但是理论上应该有 LRU 这种策略的,有些还比较常用,还有记住密码,因为个人域名都是用子域名分配给各个服务,有些记住了,有些又没记住密码,略蛋疼,所以就找了下这个方案。
    当然这个方案不是最优的,有很多限制,首先就是要能够登陆 WordPress 的数据库,不然这个方法是没用的。
    首先不管用什么方式(别违法)先登陆数据库,选择 WordPress 的数据库,可以看到里面有几个表,我们的目标就是 wp_users 表,用 select 查询看下可以看到有用户的数据,如果是像我这样搭着玩的没有创建其他用户的话应该就只有一个用户,那我们的表里的用户数据就只会有一条,当然多条的话可以通过用户名来找

    然后可能我这个版本是这样,没有装额外的插件,密码只是经过了 MD5 的单向哈希,所以我们可以设定一个新密码,然后用 MD5 编码后直接更新进去

    +
    UPDATE wp_users SET user_pass = MD5('123456') WHERE ID = 1;
    - final ResponseFuture responseFuture = new ResponseFuture(channel, opaque, timeoutMillis - costTime, invokeCallback, once); - this.responseTable.put(opaque, responseFuture); - try { - channel.writeAndFlush(request).addListener(new ChannelFutureListener() { - @Override - public void operationComplete(ChannelFuture f) throws Exception { - if (f.isSuccess()) { - responseFuture.setSendRequestOK(true); - return; - } - requestFail(opaque); - log.warn("send a request command to channel <{}> failed.", RemotingHelper.parseChannelRemoteAddr(channel)); - } - }); - } catch (Exception e) { - responseFuture.release(); - log.warn("send a request command to channel <" + RemotingHelper.parseChannelRemoteAddr(channel) + "> Exception", e); - throw new RemotingSendRequestException(RemotingHelper.parseChannelRemoteAddr(channel), e); - } - } else { - if (timeoutMillis <= 0) { - throw new RemotingTooMuchRequestException("invokeAsyncImpl invoke too fast"); - } else { - String info = - String.format("invokeAsyncImpl tryAcquire semaphore timeout, %dms, waiting thread nums: %d semaphoreAsyncValue: %d", - timeoutMillis, - this.semaphoreAsync.getQueueLength(), - this.semaphoreAsync.availablePermits() - ); - log.warn(info); - throw new RemotingTimeoutException(info); - } - } - }
    +

    然后就能用自己的账户跟刚才更新的密码登录了。

    +]]>
    + + 小技巧 + + + WordPress + 小技巧 + +
    + + 《垃圾回收算法手册读书》笔记之整理算法 + /2021/03/07/%E3%80%8A%E5%9E%83%E5%9C%BE%E5%9B%9E%E6%94%B6%E7%AE%97%E6%B3%95%E6%89%8B%E5%86%8C%E8%AF%BB%E4%B9%A6%E3%80%8B%E7%AC%94%E8%AE%B0%E4%B9%8B%E6%95%B4%E7%90%86%E7%AE%97%E6%B3%95/ + 最近看了下这本垃圾回收算法手册,看到了第三章的标记-整理回收算法,做个简单的读书笔记

    +

    双指针整理算法

    对于一块待整理区域,通过两个指针,free 在区域的起始端,scan 指针在区域的末端,free 指针从前往后知道找到空闲区域,scan 从后往前一直找到存活对象,当 free 指针未与 scan 指针交叉时,会给 scan 位置的对象特定位置标记上 free 的地址,即将要转移的地址,不过这里有个限制,这种整理算法一般会用于对象大小统一的情况,否则 free 指针扫描时还需要匹配scan 指针扫描到的存活对象的大小。

    +

    Lisp 2 整理算法

    需要三次完整遍历堆区域
    第一遍是遍历后将计算出所有对象的最终地址(转发地址)
    第二遍是使用转发地址更新赋值器线程根以及被标记对象中的引用,该操作将确保它们指向对象的新位置
    第三次遍历是relocate最终将存活对象移动到其新的目标位置

    +

    引线整理算法

    这个真的长见识了,

    可以看到,原来是 A,B,C 对象引用了 N,这里会在第一次遍历的时候把这种引用反过来,让 N 的对象头部保存下 A 的地址,表示这类引用,然后在遍历到 B 的时候在链起来,到最后就会把所有引用了 N 对象的所有对象通过引线链起来,在第二次遍历的时候就把更新A,B,C 对象引用的 N 地址,并且移动 N 对象

    +

    单次遍历算法

    这个一直提到过位图的实现方式,

    可以看到在第一步会先通过位图标记,标记的方式是位图的每一位对应的堆内存的一个字(这里可能指的是 byte 吧),然后将一个存活对象的内存区域的第一个字跟最后一个字标记,这里如果在通过普通的方式就还需要一个地方在存转发地址,但是因为具体的位置可以通过位图算出来,也就不需要额外记录了

    +]]>
    + + Java + gc + jvm + + + java + gc + 标记整理 + 垃圾回收 + jvm + +
    + + 一个 nginx 的简单记忆点 + /2022/08/21/%E4%B8%80%E4%B8%AA-nginx-%E7%9A%84%E7%AE%80%E5%8D%95%E8%AE%B0%E5%BF%86%E7%82%B9/ + 上周在处理一个 nginx 配置的时候,发现了一个之前不理解的小点,说一个场景,就是我们一般的处理方式就是一个 ip 端口只能配置一个域名的服务,比如 https://nicksxs.me 对应配置到 127.0.0.1:443,如果我想要把 https://nicksxs.com 也解析到这个服务器,并转发到不同的下游,这里就需要借助所谓的 SNI 的功能

    +

    Server Name Indication

    A more generic solution for running several HTTPS servers on a single IP address is TLS Server Name Indication extension (SNI, RFC 6066), which allows a browser to pass a requested server name during the SSL handshake and, therefore, the server will know which certificate it should use for the connection. SNI is currently supported by most modern browsers, though may not be used by some old or special clients.
    来源
    机翻一下:在单个 IP 地址上运行多个 HTTPS 服务器的更通用的解决方案是 TLS 服务器名称指示扩展(SNI,RFC 6066),它允许浏览器在 SSL 握手期间传递请求的服务器名称,因此,服务器将知道哪个 它应该用于连接的证书。 目前大多数现代浏览器都支持 SNI,但某些旧的或特殊的客户端可能不使用 SNI。

    +

    首先我们需要确认 sni 已被支持

    在实际的配置中就可以这样

    +
    stream {
    +  map $ssl_preread_server_name $stream_map {
    +    nicksxs.me nme;
    +    nicksxs.com ncom;
    +  }
    +
    +  upstream nme {
    +    server 127.0.0.1:8000;
    +  }
    +  upstream ncom {
    +    server 127.0.0.1:8001;
    +  }
     
    +  server {
    +    listen 443 reuseport;
    +    proxy_pass $stream_map;
    +    ssl_preread on;
    +  }
    +}
    +

    类似这样,但是这个理解是非常肤浅和不完善的,只是简单记忆下,后续再进行补充完整

    +

    还有一点就是我们在配置的时候经常配置就是 server_name,但是会看到直接在使用 ssl_server_name,
    其实在listen 标识了 ssl, 对应的 ssl_server_name 就等于 server_name,不需要额外处理了。

    +]]>
    + + nginx + + + nginx + +
    + + 《长安的荔枝》读后感 + /2022/07/17/%E3%80%8A%E9%95%BF%E5%AE%89%E7%9A%84%E8%8D%94%E6%9E%9D%E3%80%8B%E8%AF%BB%E5%90%8E%E6%84%9F/ + 断断续续地看完了马伯庸老师的《长安的荔枝》,一开始是看这本书在排行榜排得很高,又是马伯庸的,之前看过他的《古董局中局》,还是很有意思的,而且正好是比较短的,不过前后也拖了蛮久才看完,看完后读了下马老师自己写的后记,就特别有感触。
    整个故事是围绕一个上林署监事李善德被委任一项给贵妃送荔枝的差事展开,“长安回望绣成堆,山顶千门次第开,一骑红尘妃子笑,无人知是荔枝来”,以前没细究过这个送荔枝的过程,但是以以前的运输速度和保鲜条件,感觉也不是太现实,所以主人公一开始就以为只是像以往一样是送荔枝干这种,能比较方便运输,不容易变质的,结果发现其实是同僚在坑他,这次是要在贵妃生辰的时候给贵妃送来新鲜的岭南荔枝,用比较时兴的词来说,这就是个送命题啊,鲜荔枝一日色变,两日香变,三日味变,同僚的还有杜甫跟韩承,都觉得老李可以直接写休书了,保全家人,不然就是全家送命,李善德也觉得基本算是判刑了,而且其实是这事被转了几次,最后到老李所在的上林署,主管为了骗他接下这个活还特意在文书上把荔枝鲜的“鲜”字贴住,那会叫做“贴黄”,变成了荔枝“煎”,所以说官场险恶,大家都想把这烫手山芋丢出去,结果丢到了我们老实的老李头上,但是从接到这个通知到贵妃的生辰六月初一还有挺长的时间,其实这个活虽然送命,但是在前期这个“荔枝使”也基本就是类似带着尚方宝剑,御赐黄马褂的职位,随便申请经费,不必像常规的部门费用需要定预算,申请后再层层审批,而是特事特批特办的耍赖做法,所以在这段时间是能够潇洒挥霍一下的。其实可以好好地捞一波给妻女,然后写下和离,在自己死后能让她们过的好一些,但最后还是在杜甫的一番劝导下做出了尝试一番的决定,因为也没其他办法,既是退无可退,何不向前拼死一搏,其实说到这,我觉得看这本书感觉有所收获的第一点,有时候总觉得事情没戏了,想躺平放弃了,但是这样其实这个结果是不会变好的,尝试努力,拼尽全力搏一搏,说不定会有所改观,至少不会变更坏了。

    +]]>
    + + 读后感 + 生活 + + + 生活 + 读后感 + +
    + + 上次的其他 外行聊国足 + /2022/03/06/%E4%B8%8A%E6%AC%A1%E7%9A%84%E5%85%B6%E4%BB%96-%E5%A4%96%E8%A1%8C%E8%81%8A%E5%9B%BD%E8%B6%B3/ + 上次本来想在换车牌后面聊下这个话题,为啥要聊这个话题呢,也很简单,在地铁上看到一对猜测是情侣或者比较关系好的男女同学在聊,因为是这位男同学是大学学的工科,然后自己爱好设计绘画相关的,可能还以此赚了点钱,在地铁上讨论男的要不要好好努力把大学课程完成好,大致的观点是没必要,本来就不适合,这一段我就不说了,恋爱人的嘴,信你个鬼。
    后面男的说在家里又跟他爹吵了关于男足的,估计是那次输了越南,实话说我不是个足球迷,对各方面技术相关也不熟,只是对包括这个人的解释和网上一些观点的看法,纯主观,这次地铁上这位说的大概意思是足球这个训练什么的很难的,要想赢越南也很难的,不是我们能嘴炮的;在网上看到一个赞同数很多的一个回答,说什么中国是个体育弱国,但是由于有一些乒乓球,跳水等小众项目比较厉害,让民众给误解了,首先我先来反驳下这个偷换概念的观点,第一所谓的体育弱国,跟我们觉得足球不应该这么差没半毛钱关系,因为体育弱国,我们的足球本来就不是顶尖的,也并不是去跟顶尖的球队去争,以足球为例,跟巴西,阿根廷,英国,德国,西班牙,意大利,法国这些足球强国,去比较,我相信没有一个足球迷会这么去做对比,因为我们足球历史最高排名是 1998 年的 37 名,最差是 100 名,把能数出来的强队都数完,估计都还不会到 37,所以根本没有跟强队去做对比,第二体育弱国,我们的体育投入是在逐年降低吗,我们是因战乱没法好好训练踢球?还是这帮傻逼就不争气,前面也说了我们足球世界排名最高 37,最低 100,那么前阵子我们输的越南是第几,目前我们的排名 77 名,越南 92 名,看明白了么,轮排名我们都不至于输越南,然后就是这个排名,这也是我想回应那位地铁上的兄弟,我觉得除了造核弹这种高精尖技术,绝大部分包含足球这类运动,遵循类二八原则,比如满分是 100 分,从 80 提到 90 分或者 90 分提到 100 分非常难,30 分提到 40 分,50 分提到 60 分我觉得都是可以凭后天努力达成的,基本不受天赋限制,这里可以以篮球来类比下,相对足球的确篮球没有那么火,或者行业市值没法比,但是也算是相对大众了,中国在篮球方面相对比较好一点,在 08 年奥运会冲进过八强,那也不是唯一的巅峰,但是我说这个其实是想说明两方面的事情,第一,像篮球一样,状态是有起起伏伏,排名也会变动,但是我觉得至少能维持一个相对稳定的总体排名和持平或者上升的趋势,这恰恰是我们这种所谓的“体育弱国”应该走的路线,第二就是去支持我的类二八原则的,可以看到我们的篮球这两年也很垃圾,排名跌到 29 了,那问题我觉得跟足球是一样的,就是不能脚踏实地,如斯科拉说的,中国篮球太缺少竞争,打得好不好都是这些人打,打输了还是照样拿钱,相对足球,篮球的技术我还是懂一些的,对比 08 年的中国男篮,的确像姚明跟王治郅这样的天赋型+努力型球员少了以后竞争力下降在所难免,但是去对比下基本功,传球,投篮,罚球稳定性,也完全不是一个水平的,这些就是我说的,可以通过努力训练拿 80 分的,只要拿到 80 分,甚至只要拿到 60 分,我觉得应该就还算对得起球迷了,就像 NBA 里球队也会有核心球员的更替,战绩起起伏伏,但是基本功这东西,防守积极性,我觉得不随核心球员的变化而变化,就像姚明这样的天赋,其实他应该还有一些先天缺陷,大脚趾较长等,但是他从 CBA 到 NBA,在 NBA 适应并且打成顶尖中锋,离不开刻苦训练,任何的成功都不是纯天赋的,必须要付出足够的努力。
    说回足球,如果像前面那么洗地(体育弱国),那能给我维持住一个稳定的排名我也能接受,问题是我们的经济物质资源比 2000 年前应该有了质的变化,身体素质也越来越好,即使是体育弱国,这么继续走下坡路,半死不活的,不觉得是打了自己的脸么。足球也需要基本功,基本的体能,力量这些,看看现在这些国足运动员的体型,对比下女足,说实话,如果男足这些运动员都练得不错的体脂率,耐力等,成绩即使不好,也不会比现在更差。
    纯主观吐槽,勿喷。

    +]]>
    + + 生活 + 运动 + + + 生活 + +
    + + 介绍一下 RocketMQ + /2020/06/21/%E4%BB%8B%E7%BB%8D%E4%B8%80%E4%B8%8B-RocketMQ/ + 说起消息队列一般Web后端做过一段时间开发的肯定会用过,在前司的时候用的是改良版的 NSQ,有点像 NOSQL 的简写版🙄,其实是个go 语言写的消息队列,nsq 看代码提交感觉最近更新的不是很勤,不过因为前司有专门的中间件团队,所以还是挺好用的,而且中间件团队的大牛也很厉害,一次都没碰到过丢消息之类的错误,然后现在公司用的是 RocketMQ,本着总还是要了解下的,并且消息队列也是服务端开发中一个很重要的中间件,因为不太有不需要用消息队列的后端团队了吧,原来对 nsq 也不是特别了解原理,就打算了解下 RocketMQ。

    +

    还是像我这样的小白专属,消息队列用来干啥,很多都是标准答案,用来削峰填谷的,这个完全对,只是我想结合场景说给像我这样的小白同学听,想想一个电商的下单功能,除了 AT 两家之外应该大部分都是接入的支付,那么下单支付完成后一般都是等支付回调,告诉你支付完成了(也有可能是失败了,或者超时了咱们主动去查),然后这个回调里我们自己的业务代码干点啥,首先比如是把订单状态改掉了,然后会有各类的操作,比如把优惠券核销了,把其他金钱相关的也核销了,把购物车里对应的商品给删了,还有更次要的,比如发个客服消息,让用户确认下地址的,给用户加积分的等等等等,想象下如果这些都是回调里一股脑儿做掉了,那可能你的代码健壮性跟相关服务的稳定性还有性能要达到一个非常高的水平才能让业务不出现异常,并且万一流量打起来了,这些重要的不重要的操作都会阻塞着,所以需要用一个消息队列,在接到回调后只处理极少的几个核心操作,完了就把这个消息丢进消息队列里,让各个业务方去消费这个消息,把客服消息发一下,给用户加个积分等等,这样子主要的业务流程需要处理的事情就少了,速度也加快了,这个例子呢不能严格算是削峰填谷的例子,不过也算是消息队列的比较典型的使用场景了,要说真实的削峰填谷的话其实可以这么理解,假如短时间内有 1w 个请求进来,系统能支持的 QPS 才 1000,那么正常情况下服务就挂了,或者被限流了,为了让服务正常,那么可以把这些请求先放进消息队列里,我服务端以拉的模式按我的处理能力来消费,这样就没啥问题了

    +

    扯了这么多来聊聊 RocketMQ 长啥样

    +

    6073827-a998e005dd13967c

    +

    总共有四大部分:NameServer,Broker,Producer,Consumer。

    +

    NameServer

    NameServer是一个非常简单的Topic路由注册中心,其角色类似Dubbo中的zookeeper,支持Broker的动态注册与发现。主要包括两个功能:Broker管理,NameServer接受Broker集群的注册信息并且保存下来作为路由信息的基本数据。然后提供心跳检测机制,检查Broker是否还存活;路由信息管理,每个NameServer将保存关于Broker集群的整个路由信息和用于客户端查询的队列信息。然后Producer和Conumser通过NameServer就可以知道整个Broker集群的路由信息,从而进行消息的投递和消费。NameServer通常也是集群的方式部署,各实例间相互不进行信息通讯。Broker是向每一台NameServer注册自己的路由信息,所以每一个NameServer实例上面都保存一份完整的路由信息。当某个NameServer因某种原因下线了,Broker仍然可以向其它NameServer同步其路由信息,Producer,Consumer仍然可以动态感知Broker的路由的信息。

    +

    NameServer压力不会太大,正常情况主要负责维持心跳和提供Topic-Broker的关系数据。但有一点需要注意,Broker向Namesr发心跳时,会带上当前自己所负责的所有Topic信息,如果Topic个数太多,会导致一次心跳中,光Topic的数据就非常大,网络情况差的话,网络传输失败,心跳失败,导致Namesrv误认为Broker心跳失败。

    +

    Broker

    Broker主要负责消息的存储、投递和查询以及服务高可用保证,为了实现这些功能,Broker包含了以下几个重要子模块。

    +
      +
    • Remoting Module:整个Broker的实体,负责处理来自clients端的请求。
    • +
    • Client Manager:负责管理客户端(Producer/Consumer)和维护Consumer的Topic订阅信息
    • +
    • Store Service:提供方便简单的API接口处理消息存储到物理硬盘和查询功能。
    • +
    • HA Service:高可用服务,提供Master Broker 和 Slave Broker之间的数据同步功能。
    • +
    • Index Service:根据特定的Message key对投递到Broker的消息进行索引服务,以提供消息的快速查询。
    • +
    +
    Broker的特点

    1.负载均衡:Broker上存Topic信息,Topic由多个队列组成,队列会平均分散在多个Broker上,而Producer的发送机制保证消息尽量平均分布到所有队列中,最终效果就是所有消息都平均落在每个Broker上。

    +

    2.动态伸缩能力(非顺序消息):Broker的伸缩性体现在两个维度:Topic, Broker。

    +
    +

    Topic维度:假如一个Topic的消息量特别大,但集群水位压力还是很低,就可以扩大该Topic的队列数,Topic的队列数跟发送、消费速度成正比。
    Broker维度:如果集群水位很高了,需要扩容,直接加机器部署Broker就可以。Broker起来后想NameServer注册,Producer、Consumer通过NameServer发现新Broker,立即跟该Broker直连,收发消息。

    +
    +

    3.高可用&高可靠

    +
    +

    高可用:集群部署时一般都为主备,备机实时从主机同步消息,如果其中一个主机宕机,备机提供消费服务,但不提供写服务。
    高可靠:所有发往broker的消息,有同步刷盘和异步刷盘机制;同步刷盘时,消息写入物理文件才会返回成功,异步刷盘时,只有机器宕机,才会产生消息丢失,broker挂掉可能会发生,但是机器宕机崩溃是很少发生的,除非突然断电

    +
    +

    Producer

    Producer与NameServer集群中的其中一个节点(随机选择)建立长连接,定期从NameServer获取Topic路由信息,并向提供Topic 服务的Master建立长连接,且定时向Master发送心跳。Producer完全无状态,可集群部署。
    RocketMQ提供三种发送方式:

    +
    +

    同步:在广泛的场景中使用可靠的同步传输,如重要的通知信息、短信通知、短信营销系统等。
    异步:异步发送通常用于响应时间敏感的业务场景,发送出去即刻返回,利用回调做后续处理。
    一次性:一次性发送用于需要中等可靠性的情况,如日志收集,发送出去即完成,不用等待发送结果,回调等等。

    +
    +
    生产者端的负载均衡

    生产者发送时,会自动轮询当前所有可发送的broker,一条消息发送成功,下次换另外一个broker发送,以达到消息平均落到所有的broker上。

    +

    Consumer

    Consumer与NameServer集群中的其中一个节点(随机选择)建立长连接,定期从NameServer获取Topic路由信息,并向提供Topic服务的Master、Slave建立长连接,且定时向Master、Slave发送心跳。Consumer既可以从Master订阅消息,也可以从Slave订阅消息,消费者在向Master拉取消息时,Master服务器会根据拉取偏移量与最大偏移量的距离(判断是否读老消息,产生读I/O),以及从服务器是否可读等因素建议下一次是从Master还是Slave拉取。

    +
    消费者端的负载均衡

    先讨论消费者的消费模式,消费者有两种模式消费:集群消费,广播消费。

    +
    +

    广播消费:每个消费者消费Topic下的所有队列。
    集群消费:一个topic可以由同一个ID下所有消费者分担消费。
    具体例子:假如TopicA有6个队列,某个消费者ID起了2个消费者实例,那么每个消费者负责消费3个队列。如果再增加一个消费者ID相同消费者实例,即当前共有3个消费者同时消费6个队列,那每个消费者负责2个队列的消费。

    +
    +

    消费者端的负载均衡,就是集群消费模式下,同一个ID的所有消费者实例平均消费该Topic的所有队列。

    +

    消费者从用户角度来看有两种类型:

    +
    +

    PullConsumer:主动从brokers处拉取消息。Consumer消费的一种类型,应用通常主动调用Consumer的拉消息方法从Broker服务器拉消息、主动权由应用控制。一旦获取了批量消息,应用就会启动消费过程。
    PushConsumer:Consumer消费的一种类型,该模式下Broker收到数据后会主动推送给消费端,该消费模式一般实时性较高。

    +
    +

    补充一些概念

    Topic:主题,表示一类消息的集合,每个主题包含若干条消息,每条消息只能属于一个主题,是RocketMQ进行消息订阅的基本单位。Topic与生产者和消费者都是非常松散的关系,一个topic可以有0个或者1个或者多个生产者向其发送消息,换句话说,一个生产者可以同时向不同和topic发送消息。从消费者的解度来说,一个topic可能被0个或者一个或者多个消费组订阅,类似的,一个消费组可以订阅一个或者多个主题只要这个消费组的实例保持他们的订阅一致。

    +

    Message:消息消息系统所传输信息的物理载体,生产和消费数据的最小单位,每条消息必须属于一个主题。RocketMQ中每个消息拥有唯一的Message ID,且可以携带具有业务标识的Key。系统提供了通过Message ID和Key查询消息的功能。。

    +

    Message Queue:消息队列,一个主题被化分为一个或者多个子主题(sub-topics),“消息队列”.

    +

    Tag:标签,为消息设置的标志,用于同一主题下区分不同类型的消息。来自同一业务单元的消息,可以根据不同业务目的在同一主题下设置不同标签。标签能够有效地保持代码的清晰度和连贯性,并优化RocketMQ提供的查询系统。消费者可以根据Tag实现对不同子主题的不同消费逻辑,实现更好的扩展性。使用tag,同一业务模块不同目的的messages就可以用相同topic不同tag来标识。Tags有益于保持你的代码干净而条理清晰,同时促进使用RocketMQ提供的查询系统的效率。Topic:主题,是生产者发送的消息和消费者拉取的消息的归类。Topic与生产者和消费者都是非常松散的关系,一个topic可以有0个或者1个或者多个生产者向其发送消息,换句话说,一个生产者可以同时向不同和topic发送消息。从消费者的解度来说,一个topic可能被0个或者一个或者多个消费组订阅,类似的,一个消费组可以订阅一个或者多个主题只要这个消费组的实例保持他们的订阅一致。

    +

    Message Order:当使用DefaultMQPushConsumer时,你需要确定消费消息的方式:

    +
    +

    Orderly:顺序地消费消息即表示消费的消息顺序同生产者发送的顺序一致。
    Concurrently:并行消费。指定此方式消费,信息消费的最大并行数量仅受限于每个消费者客户端指定的线程池。

    +
    +

    Consumer Group:消费组,同一类Consumer的集合,这类Consumer通常消费同一类消息且消费逻辑一致。消费者组使得在消息消费方面,实现负载均衡和容错的目标变得非常容易。要注意的是,消费者组的消费者实例必须订阅完全相同的Topic。RocketMQ 支持两种消息模式:集群消费(Clustering)和广播消费(Broadcasting)。
    Producer Group:生产者组,同一类Producer的集合,这类Producer发送同一类消息且发送逻辑一致。如果发送的是事务消息且原始生产者在发送之后崩溃,则Broker服务器会联系同一生产者组的其他生产者实例以提交或回溯消费。

    +

    上面的这些我主要参考了 RocketMQ 的 GitHub 介绍和一些优秀网文的介绍,侵权请联系我删除。

    +]]>
    + + MQ + RocketMQ + 消息队列 + RocketMQ + 中间件 + RocketMQ + + + MQ + 消息队列 + RocketMQ + 削峰填谷 + 中间件 + +
    + + 介绍下最近比较实用的端口转发 + /2021/11/14/%E4%BB%8B%E7%BB%8D%E4%B8%8B%E6%9C%80%E8%BF%91%E6%AF%94%E8%BE%83%E5%AE%9E%E7%94%A8%E7%9A%84%E7%AB%AF%E5%8F%A3%E8%BD%AC%E5%8F%91/ + vscode 扩展转发

    在日常使用云服务器的时候,如果要访问上面自建的 mysql,一般要不直接开对应的端口,然后需要对本地 ip 进行授权,但是这个方案会有比较多的限制,比如本地 ip 变了,比如是非固定出口 ip 的家用宽带,或者要在家里跟公司都要访问,如果对所有 ip 都授权的话会不安全,这个时候其实是用 ssh 端口转发是个比较安全方便的方式。
    原来在这个之前其实对这块内容不太了解,后面是听朋友说的,vscode 的 Remote - SSH 扩展可以很方便的使用端口转发,在使用该扩展的时候,会在控制台位置里都出现一个”端口” tab

    如图中所示,我就是将一个服务器上的 mysql 的 3306 端口转发到本地的 3307 端口,至于为什么不用 3306 是因为本地我也有个 mysql 已经使用了 3306 端口,这个方法是使用的 vscode 的这个扩展,

    +

    ssh 命令转发

    还有个方式是直接使用 ssh 命令
    命令可以如此

    +
    ssh -CfNg -L 3307:127.0.0.1:3306 user1@199.199.199.199
    +

    简单介绍下这个命令
    -C 表示的是压缩数据包
    -f 表示后台执行命令
    -N 是表示不执行具体命令只用于端口转发
    -g 表示允许远程主机连接本地转发端口
    -L 则是具体端口转发的映射配置
    上面的命令就是将远程主机的 127.0.0.1:3306 对应转发到本地 3307
    而后面的用户则就是登录主机的用户名user1和ip地址199.199.199.199,当然这个配置也不是唯一的

    +

    ssh config 配置转发

    还可以在ssh 的 config 配置中加对应的配置

    +
    Host host1
    +  HostName 199.199.199.199
    +  User user1
    +  IdentityFile  /Users/user1/.ssh/id_rsa
    +  ServerAliveInterval 60
    +  LocalForward 3310 127.0.0.1:3306
    +

    然后通过 ssh host1 连接服务器的时候就能顺带做端口转发

    +]]>
    + + ssh + 技巧 + + + ssh + 端口转发 + +
    + + 从丁仲礼被美国制裁聊点啥 + /2020/12/20/%E4%BB%8E%E4%B8%81%E4%BB%B2%E7%A4%BC%E8%A2%AB%E7%BE%8E%E5%9B%BD%E5%88%B6%E8%A3%81%E8%81%8A%E7%82%B9%E5%95%A5/ + 几年前看了柴静的《穹顶之下》觉得这个记者调查得很深入,挺有水平,然后再看到了她跟丁仲礼的采访,其实没看完整,也没试着去理解,就觉得环境问题挺严重的,为啥柴静这个对面的这位好像对这个很不屑的样子,最近因为丁仲礼上了美国制裁名单,B 站又有人把这个视频发了出来,就完整看了下,就觉得自己挺惭愧的,就抱着对柴静的好感而没来由的否定了丁老的看法和说法,所以人也需要不断地学习,改正之前错误的观点,当然不是说我现在说的就是百分百正确,只是个人的一些浅显的见解

    +

    先聊聊这个事情,整体看下来我的一些理解,IPCC给中国的方案其实是个很大的陷阱,它里面有几个隐藏的点是容易被我们外行忽略的,第一点是基数,首先发达国家目前(指2010年采访或者IPCC方案时间)的人均碳排放量已经是远高于发展中国家的了,这也就导致了所谓的发达国家承诺减排80%是个非常有诚意的承诺其实就是忽悠;第二点是碳排放是个累计过程,从1900年开始到2050年,或者说到2010年,发达国家已经排的量是远超过发展中国家的,这是非常不公平的;第三点其实是通过前两点推导出来的,也就是即使发达国家这么有诚意地说减排80%,扒开这层虚伪的外衣,其实是给他们11亿人分走了48%的碳排放量,留给发展中国家55亿人口的只剩下了52%;第四点,人是否因为国家的发达与否而应受到不平等待遇,如果按国家维度,丁老说的,摩纳哥要跟中国分同样的排放量么,中国人还算不算人;第五点,这点算是我自己想的,也可能是柴静屁股决定脑袋想不到的点,她作为一个物质生活条件已经足够好了,那么对于那些生活在物质条件平均线以下的,他们是否能像城里人那样有空调地暖,洗澡有热水器浴霸,上下班能开车,这些其实都直接或者间接地导致了碳排放;他们有没有改善物质生活条件地权利呢,并且再说回来,其实丁老也给了我们觉得合理地方案,我们保证不管发达国家不管减排多少,我们都不会超过他们的80%,我觉得这是真正的诚意,而不是接着减排80%的噱头来忽悠人,也是像丁老这样的专家才能看破这个陷阱,碳排放权其实就是发展权,就是人权,中国人就不是人了么,或者说站在贫困线以下的人民是否有改善物质条件的权利,而不是说像柴静这样,只是管她自己,可能觉得小孩因为空气污染导致身体不好,所以做了穹顶之下这个纪录片,想去改善这个事情,空气污染不是说对的,只是每个国家都有这个过程,如果不发展,哪里有资源去让人活得好,活得好了是前提,然后再去各方面都改善。

    +

    对于这个问题其实更想说的是人的认知偏差,之前总觉得美帝是更自由民主,公平啥的,或者说觉得美帝啥都好,有种无脑愤青的感觉,外国的月亮比较圆,但是经历了像川普当选美国总统以来的各种魔幻操作,还有对于疫情的种种不可思议的美国民众的反应,其实更让人明白第一是外国的月亮没比较圆,第二是事情总是没那么简单粗暴非黑即白,美国不像原先设想地那么领先优秀,但是的确有很多方面是全球领先的,天朝也有体制所带来的优势,不可妄自菲薄,也不能忙不自大,还是要多学习知识,提升认知水平。

    +]]>
    + + 生活 + 吐槽 + 疫情 + 美国 + + + 生活 + 吐槽 + 疫情 + 美国 + +
    + + 从清华美院学姐聊聊我们身边的恶人 + /2020/11/29/%E4%BB%8E%E6%B8%85%E5%8D%8E%E7%BE%8E%E9%99%A2%E5%AD%A6%E5%A7%90%E8%81%8A%E8%81%8A%E6%88%91%E4%BB%AC%E8%BA%AB%E8%BE%B9%E7%9A%84%E6%81%B6%E4%BA%BA/ + 前几天清华美院学姐的热点火了,然后仔细看了下,其实是个学姐诬陷以为其貌不扬的男同学摸她屁股

    然后还在朋友圈发文想让他社死,我也是挺晚才知道这个词什么意思,然后后面我看到了这个图片,挺有意思的

    本来其实也没什么想聊这个的,是在 B 站看了个吐槽这个的,然后刚好晚上乘公交的时候又碰到了有点类似的问题
    故事描述下,我们从始发站做了公交,这辆公交司机上次碰到过一回,就是会比较关注乘客的佩戴情况,主要考虑到目前国内疫情,然后这次在差不多人都坐满的情况下,可能在提示了三次让车内乘客戴好口罩,但是他指的那个中年女性还是没有反应,司机就转头比较大声指着这个乘客(中年女性)让戴好口罩,然后这个乘客(中年女性)就大声的说“我口罩是滑下来了,你指着我干嘛,你态度这么差,要吃了我一样,我要投诉你”等等,然后可能跟她一块的一个中年女性也是这么帮腔指责司机,比较基本的理解,车子里这么多乘客,假如是处于这位乘客口罩滑下来了而不自知的情况下,司机在提示了三次以后回头指着她说,我想的是没什么问题的,但是这位却反而指责这位司机指着她,并且说是态度差,要吃了她,完全是不可理喻的,并且一直喋喋不休说她口罩滑掉了有什么错,要投诉这个司机,让他可以提前退休了,在其他乘客的劝说下司机准备继续开车时,又口吐芬芳“你个傻,你来打我呀”,真的是让我再次体会到了所谓的恶人先告状的又一完美呈现,后面还有个乘客还是表示要打死司机这个傻,让我有点不明所以,俗话说有人是得理不饶人,前提是得理,这种理亏不饶人真的是挺让人长见识的,试想下,司机在提示三次后,这位乘客还是没有把口罩戴好,如何在不指着这位乘客的情况下能准确的提示到她呢,并且觉得语气态度不好,司机要载着一车的人,因为你这一个乘客不戴好口罩而不能正常出发,有些着急应该很正常吧,可能是平时自己在家里耀武扬威的使唤别人习惯了吧,别人不敢这么大声跟她说话,其实想想这位中年女性应该年纪不会很大,还比较时髦的吧,像一些常见的中年杭州本地人可能是不会说傻*这个词的吧。
    杭州的公交可能是在二月份疫情还比较严重的时候是要求上车出示健康码,后面比较缓和以后只要求佩戴好口罩,但是在我们小绍兴,目前还是一律要求检验健康码和佩戴口罩,对于疫情中,并且目前阶段国内也时有报出小范围的疫情的情况下,司机尽职要求佩戴好口罩其实也是为了乘客着想,另一种情况如果司机不严格要求,万一车上有个感染者,这位中年女性被传染了,如果能找到这个司机的话,是不是想“打死”这个司机,竟然让感染者上了车,反正她自己是不可能有错的,上来就是对方态度差,要投诉,自己不戴好口罩啥都没错,我就想知道如果因为自己没戴好口罩被感染了,是不是也是司机的错,毕竟没有像仆人那样点头哈腰求着她戴好口罩。
    再说回来,整个车就她一个人没戴好口罩,并且还有个细节,其实这个乘客是上了车之后就没戴好了,本来上车的时候是戴好的,这种比较有可能是觉得上车的时候司机那看一眼就好了,如果好好戴着口罩,一点事情都没有,唉,纯粹是太气愤了,调理逻辑什么的就忽略吧

    +]]>
    + + 生活 + 吐槽 + 疫情 + 口罩 + + + 生活 + 吐槽 + 疫情 + 公交车 + 口罩 + 杀人诛心 + +
    + + 关于公共交通再吐个槽 + /2021/03/21/%E5%85%B3%E4%BA%8E%E5%85%AC%E5%85%B1%E4%BA%A4%E9%80%9A%E5%86%8D%E5%90%90%E4%B8%AA%E6%A7%BD/ + 事情源于周末来回家发生的两件事情,先是回去的时候从高铁下车要坐公交,现在算是有个比较好的临时候车点了,但是可能由于疫情好转,晚上都不用检查健康码就可以进候车点,但是上公交的时候还是需要看健康码,一般情况下从高铁下来的,各个地方的人都有,而且也不太清楚这边上公交车需要查验健康码,我的一个看法是候车的时候就应该放个横幅告示,或者再配合喇叭循环播放,请提前准备好健康码,上车前需要查验,因为像这周的情况,我乘坐的那辆车是间隔时间比较长,而且终点是工业开发区,可能是比较多外来务工人员的目的地,正好这部分人可能对于操作手机检验健康码这个事情不太熟悉,所以结果就是头上几个不知道怎么搞出来健康码,然后让几乎有满满一整车的人在后面堵着,司机又非常厌烦那些没有提前出示健康码的,有位乘客搞得久了点,还被误以为没刷卡买票,差点吵起来,其实公共交通或者高铁站负责的在公交指引路线上多写一句上车前需要查验健康码,可能就能改善比较多,还有就是那个积水的路,这个吐槽起来就一大坨了,整个绍兴像 dayuejin 一样到处都是破路。
    第二个就是来杭州的时候,经过人行横道,远处车道的公交车停下来等我们了,为了少添麻烦总想快点穿过去,但是这时靠近我们的车道(晚上光线较暗,可见度不佳)有一辆从远处来的奥迪 A4 还是 A5 这种的车反而想加速冲过去,如果少看一下可能我已经残了,交规考的靠近人行道要减速好像基本都是个摆设了,杭州也只有公交车因为一些考核指标原因会主动礼让,人其实需要有同理心,虽然可能有些人是开车多于骑车走路的,但是总也不可能永远不穿人行道吧,甚至这些人可能还会在人行道红灯的时候走过去。这个事情不是吐槽公共交通的,只是也有些许关系,想起来还有一件事也是刚才来杭州的时候看到的,等公交的时候看到有辆路虎要加塞,而目标车道刚好是辆大货车,大货车看到按了喇叭,路虎犹豫了下还是挤进去了,可能是对路虎的扛撞性能非常自信吧,反正我是挺后怕的,这种级别的车,被撞了的话估计还是鸡蛋撞石头,吨位惯性在那,这里再延伸下,挺多开豪车的人好像都觉得这路上路权更大一些,谁谁都得让着他,可能实际吃亏的不多,所以越加巩固了这种思维,当真的碰到不管的可能就会明白了,路权这个事情在天朝也基本没啥人重视,也没想说个结论,就到这吧

    +]]>
    + + 生活 + 公交 + + + 生活 + 开车 + 加塞 + 糟心事 + 规则 + 公交 + 路政规划 + 基础设施 + 杭州 + 健康码 + +
    + + 关于读书打卡与分享 + /2021/02/07/%E5%85%B3%E4%BA%8E%E8%AF%BB%E4%B9%A6%E6%89%93%E5%8D%A1%E4%B8%8E%E5%88%86%E4%BA%AB/ + 最近群里大佬发起了一个读书打卡活动,需要每天读一会书,在群里打卡分享感悟,争取一个月能读完一本书,说实话一天十分钟的读书时间倒是问题不大,不过每天都要打卡,而且一个月要读完一本书,其实难度还是有点大的,不过也想试试看。
    之前某某老大给自己立了个 flag,说要读一百本书,这对我来说挺难实现的,一则我也不喜欢书只读一小半,二则感觉对于喜欢看的内容范围还是比较有限制,可能也算是比较矫情,不爱追热门的各类东西,因为往往会有一些跟大众不一致的观点看法,显得格格不入。所以还是这个打卡活动可能会比较适合我,书是人类进步的阶梯。
    到现在是打卡了三天了,读的主要是白岩松的《幸福了吗》,对于白岩松,我们这一代人是比较熟悉,并且整体印象比较不错的一个央视主持人,从《焦点访谈》开始,到疫情期间的各类一线节目,可能对我来说是个三观比较正,敢于说一些真话的主持人,这中间其实是有个空档期,没怎么看电视,也不太关注了,只是在疫情期间的节目,还是一如既往地给人一种可靠的感觉,正好有一次偶然微信读书推荐了白岩松的这本书,就看了一部分,正好这次继续往下看,因为相对来讲不会很晦涩,并且从这位知名央视主持人的角度分享他的过往和想法看法,还是比较有意思的。
    从对汶川地震,08 年奥运等往事的回忆和一些细节的呈现,也让我了解比较多当时所不知道的,特别是汶川地震,那时的我还在读高中,真的是看着电视,作为“猛男”都忍不住泪目了,共和国之殇,多难兴邦,但是这对于当事人来说,都是一场醒不过来的噩梦。
    然后是对于足球的热爱,其实光这个就能掰扯很多,因为我不爱足球,只爱篮球,其中原因有的没的也挺多可以说的,但是看了他的书,才能比较深入的了解一个足球迷,对足球,对中国足球,对世界杯,对阿根廷的感情。
    接下去还是想能继续坚持下去,加油!

    +]]>
    + + 生活 + 读后感 + 白岩松 + 幸福了吗 + + + 读后感 + 读书 + 打卡 + 幸福了吗 + 足球 + +
    + + 分享记录一下一个 git 操作方法 + /2022/02/06/%E5%88%86%E4%BA%AB%E8%AE%B0%E5%BD%95%E4%B8%80%E4%B8%8B%E4%B8%80%E4%B8%AA-git-%E6%93%8D%E4%BD%9C%E6%96%B9%E6%B3%95/ + 前阵子一个同事因为发现某个分支上的代码好像有缺失导致无法正常运行,然后就对比了下把缺失的代码从另一个分支上拷了过来,可能有所欠考虑,不过主要是说下操作过程和最后的处理方法,这位同学的操作是改一些代码commit 一下,这样的 commit 了大概五六次,并且已经 push 到了远端,然后就在想要怎么去处理,在本地可以 reset,已经到远端了,一个很不优雅的操作就是本地 reset 了用 force push,这个当然是不可取的,然后就是 revert 了,但是又已经 commit 了好几次了,网上看了下,好像处理方法还挺成熟的,git revert 命令本质上就是一个逆向的 git cherry-pick 操作。 它将你提交中的变更的以完全相反的方式的应用到一个新创建的提交中,本质上就是撤销或者倒转。可以理解为就是提交一个反向的操作,这里其实我们可以用range revert来进行 git revert, 用法就是

    +
    git revert OLDER_COMMIT^..NEWER_COMMIT
    +

    这样就可以解决上面的问题了,但是还有个问题是这样会根据前面的 commit 数量提交对应数量个 revert commit 会显得比较乱,如果要比较干净的 commit 历史,
    可以看下 git revert 命令说明

    然后就可以用 -n 参数,表示不自动提交

    +
    git revert -n OLDER_COMMIT^..NEWER_COMMIT
    +git commit -m "revert OLDER_COMMIT to NEWER_COMMIT"
    ]]>
    - MQ - RocketMQ - 消息队列 - RocketMQ - 中间件 - RocketMQ + git + 小技巧 + + + git + +
    + + 分享记录一下一个 scp 操作方法 + /2022/02/06/%E5%88%86%E4%BA%AB%E8%AE%B0%E5%BD%95%E4%B8%80%E4%B8%8B%E4%B8%80%E4%B8%AA-scp-%E6%93%8D%E4%BD%9C%E6%96%B9%E6%B3%95/ + scp 是个在服务器之间拷贝文件的一个常用命令,有时候有个场景是比如我们需要拷贝一些带有共同前缀的文件,但是有一个问题是比如我们有使用 zsh 的话,会出现一个报错,

    +
    zsh: no matches found: root@100.100.100.100://root/prefix*
    +

    这里就比较奇怪了,这个前缀的文件肯定是有的,这里其实是由于 zsh 会对 * 进行展开,这个可以在例如 ls 命令在使用中就可以发现 zsh 有这个特性
    需要使用双引号或单引号将路径包起来或者在*之前加反斜杠\来阻止对*展开和转义

    +
    scp root@100.100.100.100://root/prefix* .
    +

    通过使用双引号"进行转义

    +
    scp root@100.100.100.100:"//root/prefix*" .
    +

    或者可以将 shell 从 zsh 切换成 bash

    +]]>
    + + shell + 小技巧 + + + scp + +
    + + 在老丈人家的小工记三 + /2020/09/13/%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E7%9A%84%E5%B0%8F%E5%B7%A5%E8%AE%B0%E4%B8%89/ + 小工记三

    前面这两周周末也都去老丈人家帮忙了,上上周周六先是去了那个在装修的旧房子那,把三楼收拾了下,因为要搬进来住,来不及等二楼装修好,就要把三楼里的东西都整理干净,这个活感觉是比较 easy,原来是就准备把三楼当放东西仓储的地方了,我们乡下大部分三层楼都是这么用的,这次也是没办法,之前搬进来的木头什么的都搬出去,主要是这上面灰尘太多,后面清理鼻孔的时候都是黑色的了,把东西都搬出去以后主要是地还是很脏,就扫了地拖了地,因为是水泥地,灰尘又太多了,拖起来都是会灰尘扬起来,整个脱完了的确干净很多,然而这会就出了个大乌龙,我们清理的是三楼的西边一间,结果老丈人上来说要住东边那间的🤦‍♂️,不过其实西边的也得清理,因为还是要放被子什么的,不算是白费功夫,接着清理东边那间,之前这个房子做过群租房,里面有个高低铺的床,当时觉得可以用在放被子什么的就没扔,只是拆掉了放旁边,我们就把它擦干净了又装好,发现螺丝🔩少了几个,亘古不变的真理,拆了以后装要不就多几个要不就少几个,不是很牢靠,不过用来放放被子省得放地上总还是可以的,对了前面还做了个事情就是铺地毯,其实也不是地毯,就是类似于墙布雨篷布那种,别人不用了送给我们的,三楼水泥地也不会铺瓷砖地板了就放一下,干净好看点,不过大小不合适要裁一下,那把剪刀是真的太难用了,我手都要抽筋了,它就是刀口只有一小个点是能剪下来的,其他都是钝的,后来还是用刀片直接裁,铺好以后,真的感觉也不太一样了,焕然一新的感觉
    差不多中午了就去吃饭了,之前两次是去了一家小饭店,还是还比较干净,但是店里菜不好吃,还死贵,这次去了一家小快餐店,口味好,便宜,味道是真的不错,带鱼跟黄鱼都好吃,一点都不腥,我对这类比较腥的鱼真的是很挑剔的,基本上除了家里做的很少吃外面的,那天抱着试试的态度吃了下,真的还不错,后来丈母娘说好像这家老板是给别人结婚喜事酒席当厨师的,怪不得做的好吃,其实本来是有一点小抗拒,怕不干净什么的,后来发现菜很好吃,而且可能是老丈人跟干活的师傅去吃的比较多,老板很客气,我们吃完饭,还给我们买了葡萄吃,不过这家店有一个槽点,就是饭比较不好吃,有时候会夹生,不过后面聊起来其实是这种小菜馆饭点的通病,烧的太早太多容易多出来浪费,烧的迟了不够吃,而且大的电饭锅比较不容易烧好。
    下午前面还是在处理三楼的,窗户上各种钉子,实在是太多了,我后面在走廊上排了一排🤦‍♂️,有些是直接断了,有些是就撬了出来,感觉我在杭州租房也没有这样子各种钉钉子,挂下衣服什么的也不用这么多吧,比较不能理解,搞得到处都是钉子。那天我爸也去帮忙了,主要是在卫生间里做白缝,其实也是个技术活,印象中好像我小时候自己家里也做过这个事情,但是比较模糊了,后面我们三楼搞完了就去帮我爸了,前面是我老婆二爹在那先刷上白缝,这里叫白缝,有些考究的也叫美缝,就是瓷砖铺完之后的缝,如果不去弄的话,里面水泥的颜色就露出来了,而且容易渗水,所以就要用白水泥加胶水搅拌之后糊在缝上,但是也不是直接糊,先要把缝抠一抠,因为铺瓷砖的还不会仔细到每个缝里的水泥都是一样满,而且也需要一些空间糊上去,不然就太表面的一层很容易被水直接冲掉了,然后这次其实也不是用的白水泥,而是直接现成买来就已经配好的用来填缝的,兑水搅拌均匀就好了,后面就主要是我跟我爸在搞,那个时候真的觉得我实在是太胖了,蹲下去真的没一会就受不了了,膝盖什么的太难受了,后面我跪着刷,然后膝盖又疼,也是比较不容易,不过我爸动作很快,我中间跪累了休息一会,我爸就能搞一大片,后面其实我也没做多少(谦虚一下),总体来讲这次不是很累,就是蹲着跪着腿有点受不了,是应该好好减肥了。

    +]]>
    + + 生活 + 运动 + 跑步 + 干活 + + + 生活 + 小技巧 + 运动 + 减肥 + 跑步 + 干活 + +
    + + 在老丈人家的小工记五 + /2020/10/18/%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E7%9A%84%E5%B0%8F%E5%B7%A5%E8%AE%B0%E4%BA%94/ + 终于回忆起来了,年纪大了写这种东西真的要立马写,不然很容易想不起来,那天应该是 9 月 12 日,也就是上周六,因为我爸也去了,而且娘亲(丈母娘,LD 这么叫,我也就随了她这么叫,当然是背后,当面就叫妈)也在那,早上一到那二爹就给我爸指挥了活,要挖一条院子的出水道,自己想出来的词,因为觉得下水道是竖的,在那稍稍帮了一会会忙,然后我还是比较惯例的跟着 LD 还有娘亲去住的家里,主要是老丈人可能也不太想让我干太累的活,因为上次已经差不多把三楼都整理干净了,然后就是二楼了,二楼说实话我也帮不上什么忙,主要是衣服被子什么的,正好是有张以前小孩子睡过的那种摇篮床,看上去虽然有一些破损,整体还是不错的,所以打算拿过去,我就负责把它拆掉了,比较简单的是只要拧螺丝就行了,但是其实是用了好多好多工具才搞定的,一开始只要螺丝刀就行了,但是因为年代久了,后面的螺帽也有点锈住或者本身就会串着会一起动,所以拿来了个扳手,大部分的其实都被这两个工具给搞定了,但是后期大概还剩下四分之一的时候,有一颗完全锈住,并且螺纹跟之前那些都不一样,但是这个已经是最大的螺丝刀了,也没办法换个大的了,所以又去找来个一字的,因为十字的不是也可以用一字的拧嘛,结果可能是我买的工具箱里的一字螺丝刀太新了,口子那很锋利,直接把螺丝花纹给划掉了,大的小的都划掉,然后真的变成凹进去一个圆柱体了,然后就想能不能隔一层布去拧,然而因为的确是已经变成圆柱体了,布也不太给力,不放弃的我又去找来了个老虎钳,妄图把划掉的螺丝用老虎钳钳住,另一端用扳手拧开螺帽,但是这个螺丝跟螺帽真的是生锈的太严重了,外加上钳不太牢,完全是两边一起转,实在是没办法了,在征得同意之后,直接掰断了,火死了,一颗螺丝折腾得比我拆一张床还久,那天因为早上去的也比较晚了,然后就快吃午饭了,正好想着带一点东西过去,就把一些脸盆,泡脚桶啥的拿过去了,先是去吃了饭,还是在那家快餐店,菜的口味还是依然不错,就是人比较多,我爸旁边都是素菜,都没怎么吃远一点的荤菜,下次要早点去,把荤菜放我爸旁边😄(PS:他们家饭还是依然尴尬,需要等),吃完就开到在修的房子那把东西拿了出来,我爸已经动作很快的打了一小半的地沟了,说实话那玩意真的是很重,我之前把它从三楼拿下来,就觉得这个太重了,这次还要用起来,感觉我的手会分分钟废掉,不过一开始我还是跟着LD去了住的家里,惯例睡了午觉,那天睡得比较踏实,竟然睡了一个小时,醒了想了下,其实LD她们收拾也用不上我(没啥力气活),我还是去帮我爸他们,跟LD说了下就去了在修的老房子那,两位老爹在一起钻地,看着就很累,我连忙上去想换一会他们,因为刚好是钻到混凝土地线,特别难,力道不够就会滑开,用蛮力就是钻进去拔不出来,原理是因为本身浇的时候就是很紧实的,需要边钻边动,那家伙实在是太重了,真的是汗如雨下,基本是三个人轮流来,我是个添乱的,经常卡住,然后把地线,其实就是一条混凝土横梁,里面还有14跟18的钢筋,需要割断,这个割断也是很有技巧,钢筋本身在里面是受到挤压的,直接用切割的,到快断掉的时候就会崩一下,非常危险,还是老丈人比较有经验,要留一点点,然后直接用榔头敲断就好了,本来以为这个是最难的了,结果下面是一块非常大的青基石,而且也是石头跟石头挤一块,边上一点点打钻有点杯水车薪,后来是用那种螺旋的钻,钻四个洞,相对位置大概是个长方形,这样子把中间这个长方形钻出来就比较容易地能拿出来了,后面的也容易搞出来了,后面的其实难度不是特别大了,主要是地沟打好之后得看看高低是不是符合要求的,不能本来是往外排水的反而外面高,这个怎么看就又很有技巧了,一般在地上的只要侧着看一下就好了,考究点就用下水平尺,但是在地下的,不用水平尺,其实可以借助于地沟里正要放进去的水管,放点水进去,看水往哪流就行了,铺好水管后,就剩填埋的活了,不是太麻烦了,那天真的是累到了,打那个混凝土的时候我真的是把我整个人压上去了,不过也挺爽的,有点把平时无处发泄的蛮力发泄出去了。

    +]]>
    + + 生活 + 运动 + 跑步 + 干活 + + + 生活 + 小技巧 + 运动 + 减肥 + 跑步 + 干活 + +
    + + 在老丈人家的小工记四 + /2020/09/26/%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E7%9A%84%E5%B0%8F%E5%B7%A5%E8%AE%B0%E5%9B%9B/ + 小工记四

    第四周去的时候让我们去了现在在住的房子里,去三楼整理东西了,蛮多的东西需要收拾整理,有些需要丢一下,以前往往是把不太要用的东西就放三楼了,但是后面就不会再去收拾整理,LD 跟丈母娘负责收拾,我不太知道哪些还要的,哪些不要了,而且本来也不擅长这种收拾🤦‍♂️,然后就变成她们收拾出来废纸箱,我负责拆掉,压平,这时候终于觉得体重还算是有点作用,总体来说这个事情我其实也不擅长,不擅长的主要是捆起来,可能我总是小题大做,因为纸箱大小不一,如果不做一下分类,然后把大的折小一些的话,直接绑起来,容易拎起来就散掉了,而且一些鞋盒子这种小件的纸盒会比较薄,冰箱这种大件的比较厚,厚的比较不容易变形,需要大力踩踏,而且扎的时候需要用体重压住捆实了之后那样子才是真的捆实的,不然待会又是松松垮垮容易滑出来散架,因为压住了捆好后,下来了之后箱子就会弹开了把绳子崩紧实,感觉又是掌握到生活小技巧了😃,我这里其实比较单调无聊,然后 LD 那可以说非常厉害了,一共理出来 11 把旧电扇,还有好多没用过全新的不锈钢脸盆大大小小的,感觉比店里在卖的还多,还有是有比较多小时候的东西,特别多小时候的衣服,其实这种对我来说最难了,可能需要读一下断舍离,蛮多东西都舍不得扔,但是其实是没啥用了,然后还占地方,这天应该算是比较轻松的一天了,上午主要是把收拾出来要的和不要的搬下楼,然后下午要去把纸板给卖掉。中午还是去小快餐店吃的,在住的家里理东西还有个好处就是中午吃完饭可以小憩一下,因为我个人是非常依赖午休的,不然下午完全没精神,而且心态也会比较烦躁,一方面是客观的的确比较疲惫,另一方面应该主观心理作用也有点影响,就像上班的时候也是觉得不午睡就会很难受,心理作用也有一点,不过总之能睡还是睡一会,真的没办法就心态好点,吃完午饭之后我们就推着小平板车去收废品的地方卖掉了上午我收拾捆起来的纸板,好像卖了一百多,都是直接过地磅了,不用一捆一捆地称,不过有个小插曲,那里另外一个大爷在倒他的三轮车的时候撞了我一下,还好车速慢,屁股上肉垫后,接下来就比较麻烦了,是LD 她们两姐妹从小到大的书,也要去卖掉,小平板车就载不下了,而且着实也不太好推,轮子不太平,导致推着很累,书有好多箱,本来是想去亲戚家借电动三轮车,因为不会开摩托的那种,摩托的那种 LD 邻居家就有,可是到了那发现那个也是很大,而且刹车是用脚踩的那种,俺爹不太放心,就说第二天周日他有空会帮忙去载了卖掉的,然后比较搞笑的来了,丈母娘看错了时间,以为已经快五点了,就让我们顺便在车里带点东西去在修的房子,放到那边三楼去,到了那还跟老丈人说已经这么迟了要赶紧去菜场买菜了,结果我们回来以后才发现看错了一个小时🤦‍♂️。
    前面可以没提,前三周去的我们一般就周六去一天,然后周日因为要早点回杭州,而且可能想让我们周日能休息下,但是这周就因为周日的时候我爸要去帮忙载书,然后 LD 姐姐也会过来收拾东西,我们周日就又去整理收拾了,周日由于俺爹去的很早,我过去的时候书已经木有了,主要是去收拾东西了,把一些有用没用的继续整理,基本上三楼的就处理完毕了,舒了一大口气,毕竟让丈母娘一个人收拾实在是太累了,但是要扔掉的衣服比较棘手,附近知道的青蛙回收桶被推倒了,其他地方也不知道哪里有,我们就先载了一些东西去在修的房子那,然后去找青蛙桶,结果一个小区可以进,但是已经满了,另一个不让进,后来只能让 LD 姐姐带去她们小区扔了,塞了满满一车。因为要赶回杭州的车就没有等我爸一起回来,他还在那帮忙搞卫生间的墙缝。
    虽然这两天不太热,活也不算很吃力,不过我这个体重和易出汗的体质,还是让短袖不知道湿透了多少次,灌了好多水和冰红茶(下午能提提神),回来周一早上称体重也比较喜人,差一点就达到阶段目标,可以想想去哪里吃之前想好的烤肉跟火锅了(估计吃完立马回到解放前)。

    +]]>
    + + 生活 + 运动 + 跑步 + 干活 + + + 生活 + 小技巧 + 运动 + 减肥 + 跑步 + 干活 + +
    + + 寄生虫观后感 + /2020/03/01/%E5%AF%84%E7%94%9F%E8%99%AB%E8%A7%82%E5%90%8E%E6%84%9F/ + 寄生虫这部电影在获得奥斯卡之前就有关注了,豆瓣评分很高,一开始看到这个片名以为是像《铁线虫入侵》那种灾难片,后来看到男主,宋康昊,也是老面孔了,从高中时候在学校操场组织看的《汉江怪物》,有点二的感觉,后来在大学寝室电脑上重新看的时候,室友跟我说是韩国国宝级演员,真人不可貌相,感觉是个呆子的形象。

    +

    但是你说这不是个灾难片,而是个反映社会问题的,就业比较容易往这个方向猜,只是剧情会是怎么样的,一时也没啥头绪,后来不知道哪里看了下一个剧情透露,是一个穷人给富人做家教,然后把自己一家都带进富人家,如果是这样的话可能会把这个怎么带进去作为一个主线,不过事实告诉我,这没那么重要,从第一步朋友的介绍,就显得无比顺利,要去当家教了,作为一个穷成这样的人,瞬间转变成一个衣着得体,言行举止都没让富人家看出破绽的延世大学学生,这真的挺难让人理解,所谓江山易改,本性难移,还有就是这人也正好有那么好能力去辅导,并且诡异的是,多惠也是瞬间就喜欢上了男主,多惠跟将男主介绍给她做家教,也就是多惠原来的家教敏赫,应该也有不少的相处时间,这变了有点大了吧,当然这里也可能因为时长需要,如果说这一点是因为时长,那可能我所有的槽点都是因为这个吧,因为我理解的应该是把家里的人如何一步步地带进富人家,这应该是整个剧情的一个需要更多铺垫去克服这个矛盾点,有时候也想过如果我去当导演,是能拍出个啥,没这个机会,可能有也会是很扯淡的,当然这也不能阻拦我谈谈对这个点的一些看法,毕竟评价一台电冰箱不是说我必须得自己会制冷对吧,这大概是我觉得这个电影的第一个槽点,接下去接二连三的,就是我说的这个最核心的矛盾点,不知道谁说过,这种影视剧应该是源自于生活又高于生活,越是好的作品,越要接近生活,这样子才更能有感同身受。

    +

    接下去的点是金基宇介绍金基婷去给多颂当美术家教,这一步又是我理解的败笔吧,就怎么说呢,没什么铺垫,突然从一个社会底层的穷姑娘,转变成一个气场爆表,把富人家太太唬得一愣一愣的,如果说富太太是比较简单无脑的,那富人自己应该是比较有见识而且是做 IT 的,给自己儿子女儿做家教的,查查底细也很正常吧,但是啥都没有,然后呢,她又开始耍司机的心机了,真的是莫名其妙了,司机真的很惨,窈窕淑女君子好逑,而且这个操作也让我摸不着头脑,这是多腹黑并且有经验才会这么操作,脱内裤真的是让我看得一愣愣的,更看得我一愣一愣的,富人竟然也完全按着这个思路去想了,完全没有别的可能呢,甚至可以去查下行车记录仪或者怎样的,或者有没有毛发体液啥的去检验下,毕竟金基婷也乘坐过这辆车,但是最最让我不懂的还是脱内裤这个操作,究竟是什么样的人才会的呢,值得思考。

    +

    金基泽和忠淑的点也是比较奇怪,首先是金基泽,引起最后那个杀人事件的一个由头,大部分观点都是人为朴社长在之前跟老婆啪啪啪的时候说金基泽的身上有股乘地铁的人的味道,简而言之就是穷人的味道,还有去雯光丈夫身下拿钥匙是对金基泽和雯光丈夫身上的味道的鄙夷,可是这个原因真的站不住脚,即使是同样经济水平,如果身上有比较重的异味,背后讨论下,或者闻到了比较重的味道,有不适的表情和动作很正常吧,像雯光丈夫,在地下室里呆了那么久,身上有异味并且比较重太正常了,就跟在厕所呆久了不会觉得味道大,但是从没味道的地方一进有点味道的厕所就会觉得异样,略尴尬的理由;再说忠淑呢,感觉是太厉害了,能胜任这么一家有钱人的各种挑剔的饮食口味要求的保姆职位,也是让人看懵逼了,看到了不禁想到一个问题,这家人开头是那么地穷,不堪,突然转变成这么地像骗子家族,如果有这么好的骗人能力,应该不会到这种地步吧,如果真的是那么穷,没能力,没志气,又怎么会突然变成这么厉害呢,一家人各司其职,把富人家唬得团团转,而这个前提是,这些人的确能胜任这四个位置,这就是我非常不能理解的点。

    +

    然后说回这个标题,寄生虫,不知道是不是翻译过来不准确,如果真的是叫寄生虫的话,这个寄生虫智商未免也太低了,没有像新冠那样机制,致死率低一点,传染能力强一点,潜伏期也能传染,这个寄生虫第一次受到免疫系统的攻击就自爆了;还有呢,作为一个社会比较低层的打工者,乡下人,对这个审题也是不太审的清,是指这一家人是社会的寄生虫,不思进取,并且死的应该,富人是傻白甜,又有钱又善良,这是给有钱人洗地了还是啥,这个奥斯卡真不知道是怎么得的,总觉得奥斯卡,甚至低一点,豆瓣,得奖的,评分高的都是被一群“精英党”把持的,有黑人主角的,得分高;有同性恋的,得分高;结局惨的,得分高;看不懂的,得分高;就像肖申克的救赎,真不知道是哪里好了,最近看了关于明朝那些事的三杨,杨溥的经历应该比这个厉害吧,可是外国人看不懂,就像外国人不懂中国为什么有反分裂国家法,经历了鸦片战争,八国联军,抗日战争等等,其实跟外国对于黑人的权益的问题,因为有南北战争,所以极度重视这个问题,相应的中国也有自己的历史,请理解。

    +

    简而言之我对寄生虫的评分大概 5~6 分吧。

    +]]>
    + + 生活 + 影评 + 2020 + + + 生活 + 影评 + 寄生虫 + +
    + + 屯菜惊魂记 + /2022/04/24/%E5%B1%AF%E8%8F%9C%E6%83%8A%E9%AD%82%E8%AE%B0/ + 因某国际大都市的给力表现,昨儿旁边行政区启动应急响应,同事早上就在群里说要去超市买菜了,到了超市人还特别多,由于来的就是我们经常去的那家超市,一方面为了安全,另一方面是怕已经抢不到了,就去了另一家比较远的超市,开车怕没车位就骑了小电驴,还下着小雨,结果到了超市差不多 12 点多,超市里出来的人都是推着一整车一整车的物资,有些比较像我,整箱的泡面,好几提纸巾,还有各种吃的,都是整箱整箱的,进了超市发现结账包括自助结账的都排很长的队,到了蔬菜货架附近,差点哼起那首歌“空空如也~”,新鲜蔬菜基本已被抢空,只剩下一些卖相不太好的土豆番薯之类的,也算是意料之外情理之中了,本来以为这家超市稍微离封控区远一些会空一点,结果就是所谓的某大都市封控了等物资,杭州市是屯了物资等封控,新鲜蔬菜没了我们也只能买点其他的,神奇的是水果基本都在,可能困难时期水果不算必需品了?还是水果基本人人都已经储备了很多,不太能理解,虽然水果还在,但是称重的地方也还有好多人排队,我们采取了并行策略,LD 在那排队,遥控指挥我去拿其他物资,拿了点碱水面,黑米,那黑米的时候还闹了个乌龙,因为前面就是散装鸡蛋的堆货的地方,结果我们以为是在那后面排队,结果称重那个在那散步了,我们还在那排队,看到后面排队,那几个挑的人也该提醒下吧,几个鸡蛋挑了半天,看看人家大妈,直接拿了四盘,看了下牛奶货架也比较空,不过还有致优跟优倍,不过不算很实惠,本来想买,只是后来赶着去结账,就给忘了,称好了黑米去看了下肉,结果肉也没了,都在买猪蹄,我们也不太爱吃猪蹄,就买了点鸡胸肉,整体看起来我们买的东西真的有点格格不入,不买泡面(因为 LD 不让买了),也不屯啥米和鸡蛋,其实鸡蛋已经买了,米也买了,其他的本身冰箱小也放不下太多东西,我是觉得还可能在屯一点这那的,LD 觉得太多了,基本的米面油有了,其他调味品什么也有了。后面就是排队结账,我去排的时候刚好前面一个小伙子跟大妈在争执,大妈说我们差不多时间来的,你要排前面就前面,小伙子有点不高兴,觉得她就是插队,哈哈,平时一般这种剧情都是发生在我身上的,这会看着前面的吵起来还是很开心的,终于有跟我一样较真的人了,有时候总觉得我是个很纠结,很较真的人,但是我现在慢慢认可了这种较真,如果没有人指出来这种是插队行为,是不对的,就会有越来越多的人觉得是可以随意插队的,正确的事应该要坚持,很多情况大家总是觉得多一事不如少一事,鸡毛蒜皮的没什么好计较的,正是这种想法,那么多人才不管任何规则,反而搞得像遵守规则都是傻 X 似的。回到屯物资,后面结账排到队了也没来得及买原来想买的花生牛奶什么的,毕竟那么多人排着队,回家后因为没有蔬菜,结果就只能吃干菜汤和饭了

    +]]>
    + + 生活 + + + 生活 + 囤物资 + +
    + + 我是如何走上跑步这条不归路的 + /2020/07/26/%E6%88%91%E6%98%AF%E5%A6%82%E4%BD%95%E8%B5%B0%E4%B8%8A%E8%B7%91%E6%AD%A5%E8%BF%99%E6%9D%A1%E4%B8%8D%E5%BD%92%E8%B7%AF%E7%9A%84/ + 这周因为没有准备技术方面的内容加之之前有想分享下我和跑步的一些事情,我从小学开始就是个体育渣,因为体重大非常胖,小学的时候要做仰卧起坐,基本是一个都起不来,然后那时候跑步也是要我命那种,跟另外一个比较胖的同学在跑步队尾苟延残喘,只有立定跳远还行。

    +

    时光飞逝,我在初中高中的时候因为爱打篮球,以为自己体质已经有了质的变化,所以在体育课跑步的时候妄图跟一位体育非常好的同学一起跑,结果跟的快断气了,最终还是确认了自己是个体育渣,特别是到了大学的第一次体测跑一千米,跑完直接吐了,一则是大学太宅不运动,二则的确是底子不好。那么怎么会去跑步了呢,其实也没什么特殊的原因,就是工作以后因为运动得更少,体质差,而且越来越胖,所以就想运动下,加之跑步也是我觉得成本最低的运动了,刚好那时候17 年租的地方附近小区周围的路车不太多,一圈刚好一公里多,就觉得开始跑跑看,其实想想以前觉得一千米是非常远的,学校塑胶跑道才 400 米,一千米要两圈半,太难了,但是后来在这个小区周围跑的时候好像跑了一圈以后还能再跑一点,最后跑了两圈,可把自己牛坏了,我都能跑两千米了,哈哈,这是个什么概念呢,大学里最让我绝望的两项体育相关的内容就是一千米和十二分钟跑,一千米把我跑吐了,十二分钟跑及格五圈半也能让我跑完花一周时间恢复以及提前一周心理压力爆炸,虽然我那时候跑的不快,但是已经能跑两千米了,瞬间让自己自信心爆炸,并且跑完步出完汗的感觉是非常棒的,毕竟吃奶茶鸡排都能心安理得了,谁叫我跑步了呢😄,其实现在回去看,那时候跑得还算快的,因为还比较瘦,现在要跑得那么快心跳就太快了,关于心跳什么的后面说,开始建立起自信心之后,对跑步这件事就开始不那么排斥跟害怕了,毕竟我能跑两千米了,然后试试三公里,哇,也可以了呢,三公里是什么概念呢,我大学里跑过最多的一次是十二分钟跑五圈半还是六圈,也就是两公里多,不到三公里,几乎是生涯最长了,一时间产生了一些我可能是个被埋没的运动天才的错觉,其实细想下也能明白,只是速度足够慢了就能跑多一点,毕竟提测一千米是要跑进四分钟才及格,自己跑的时候一千米跑六分多钟已经算不慢了(对我自己来说),但是即使是这样还是对把跑步坚持下去这件事有了很大的正面激励作用,并且由于那时候上下班骑车,整个体重控制的比较理想,导致一时间误会跑步就能非常快的减肥(其实这是我跑步历程中比较大的误区之一),因为会在跑步前后称下体重,如果跑个五公里(后面可以跑五公里了),可能体重就能降 0.5 千克,但实际上这只是这五公里跑步身体流失的水分,喝杯水就回来了,那时候能控制体重主要是骑车跟跑步一起的作用,并且工作压力相对来讲比较小,没有过劳肥。

    +

    后面其实跑步慢慢变得一个比较习惯的运动了,从三公里,到五公里,到七公里,再到十公里,十公里差不多对我来说是个坎,一直还不能比较轻松的跑十公里,可能近一两年好了一些(原谅我只是跟自己比较,跟那些大神比差得不知道多远),其实对我来说每次都是个突破,因为其实与他人比较没有特别大意义,比较顶尖的差得太远,比较普通的也不行,都会打击自信心,比较比我差的就更没意义了,所以其实能挑战自己,能把自己的上限提高才是最有意义的,这也是我看着朋友圈里的一些大神的速度除了佩服赞叹之外没什么其他的惭愧或者说嫌弃自己的感觉(阿 Q 精神😄)。

    +

    一直感性地觉得,跑步能解压,跑完浑身汗,有种把身体的负能量都排出去的感觉,也把吃太多的罪恶感排解掉了🤦‍♂️,之前朋友有看一本书,书名差不多叫越跑越接近自己,这个也是我觉得挺准确的一句话,当跑到接近极限了,还想再继续再跑一点,再跑一点就能突破自己上一次的最远记录了,再跑一点就能又一次突破自己了,成人以后,毕业以后,进入社会以后,世事总是难以件件顺遂,磕磕绊绊的往前走,总觉得要崩溃了,但是还是得坚持,再熬一下,再拼一下,可能还是失败,但人生呢,运气好的人和事总是小概率的,唯有面对挫折,还是日拱一卒,来日方长,我们再坚持下,没准下一次,没准再跑一会,就能突破自己,达到新的境界。

    +

    另外个人后期对跑步的一些知识和理解也变得深入一些,比如伤膝盖,其实跑步的确伤膝盖,需要做一些准备和防护,最好的是适合自己的跑鞋和比较好的路(最好的是塑胶跑道了),也要注意热身跟跑后的拉伸(虽然我做的很差),还有就是注意心率,每个人有自己的适宜心率,我这就不冒充科普达人了,可以自行搜索关键字,先说到这吧~

    +]]>
    + + 生活 + 运动 + 跑步 + + + 生活 + 运动 + 减肥 + 跑步 + +
    + + 搬运两个 StackOverflow 上的 Mysql 编码相关的问题解答 + /2022/01/16/%E6%90%AC%E8%BF%90%E4%B8%A4%E4%B8%AA-StackOverflow-%E4%B8%8A%E7%9A%84-Mysql-%E7%BC%96%E7%A0%81%E7%9B%B8%E5%85%B3%E7%9A%84%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94/ + Mysql 字符编码和排序规则

    这个一直是属于一知半解的状态,知道 utf8 跟 utf8mb4 的区别主要是能不能支持 emoji,但是具体后面配置的排序规则是用来干嘛,或者有什么区别,应该使用哪个,所以在 stackoverflow 上找了下,有两个比较不错的解答,就搬过来并且配合机翻做了点修改

    +

    原文

    For those people still arriving at this question in 2020 or later, there are newer options that may be better than both of these. For example, utf8mb4_0900_ai_ci.

    +

    All these collations are for the UTF-8 character encoding. The differences are in how text is sorted and compared.

    +

    _unicode_ci and _general_ci are two different sets of rules for sorting and comparing text according to the way we expect. Newer versions of MySQL introduce new sets of rules, too, such as _0900_ai_ci for equivalent rules based on Unicode 9.0 - and with no equivalent _general_ci variant. People reading this now should probably use one of these newer collations instead of either _unicode_ci or _general_ci. The description of those older collations below is provided for interest only.

    +

    MySQL is currently transitioning away from an older, flawed UTF-8 implementation. For now, you need to use utf8mb4 instead of utf8 for the character encoding part, to ensure you are getting the fixed version. The flawed version remains for backward compatibility, though it is being deprecated.

    +

    Key differences

    +

    utf8mb4_unicode_ci is based on the official Unicode rules for universal sorting and comparison, which sorts accurately in a wide range of languages.

    +

    utf8mb4_general_ci is a simplified set of sorting rules which aims to do as well as it can while taking many short-cuts designed to improve speed. It does not follow the Unicode rules and will result in undesirable sorting or comparison in some situations, such as when using particular languages or characters.

    +

    On modern servers, this performance boost will be all but negligible. It was devised in a time when servers had a tiny fraction of the CPU performance of today’s computers.

    +

    Benefits of utf8mb4_unicode_ci over utf8mb4_general_ci

    +

    utf8mb4_unicode_ci, which uses the Unicode rules for sorting and comparison, employs a fairly complex algorithm for correct sorting in a wide range of languages and when using a wide range of special characters. These rules need to take into account language-specific conventions; not everybody sorts their characters in what we would call ‘alphabetical order’.

    +

    As far as Latin (ie “European”) languages go, there is not much difference between the Unicode sorting and the simplified utf8mb4_general_cisorting in MySQL, but there are still a few differences:

    +

    For examples, the Unicode collation sorts “ß” like “ss”, and “Œ” like “OE” as people using those characters would normally want, whereas utf8mb4_general_cisorts them as single characters (presumably like “s” and “e” respectively).

    +

    Some Unicode characters are defined as ignorable, which means they shouldn’t count toward the sort order and the comparison should move on to the next character instead. utf8mb4_unicode_cihandles these properly.

    +

    In non-latin languages, such as Asian languages or languages with different alphabets, there may be a lot more differences between Unicode sorting and the simplified utf8mb4_general_cisorting. The suitability of utf8mb4_general_ciwill depend heavily on the language used. For some languages, it’ll be quite inadequate.

    +

    What should you use?

    +

    There is almost certainly no reason to use utf8mb4_general_cianymore, as we have left behind the point where CPU speed is low enough that the performance difference would be important. Your database will almost certainly be limited by other bottlenecks than this.

    +

    In the past, some people recommended to use utf8mb4_general_ciexcept when accurate sorting was going to be important enough to justify the performance cost. Today, that performance cost has all but disappeared, and developers are treating internationalization more seriously.

    +

    There’s an argument to be made that if speed is more important to you than accuracy, you may as well not do any sorting at all. It’s trivial to make an algorithm faster if you do not need it to be accurate. So, utf8mb4_general_ciis a compromise that’s probably not needed for speed reasons and probably also not suitable for accuracy reasons.

    +

    One other thing I’ll add is that even if you know your application only supports the English language, it may still need to deal with people’s names, which can often contain characters used in other languages in which it is just as important to sort correctly. Using the Unicode rules for everything helps add peace of mind that the very smart Unicode people have worked very hard to make sorting work properly.

    +

    What the parts mean

    +

    Firstly, ci is for case-insensitive sorting and comparison. This means it’s suitable for textual data, and case is not important. The other types of collation are cs (case-sensitive) for textual data where case is important, and bin, for where the encoding needs to match, bit for bit, which is suitable for fields which are really encoded binary data (including, for example, Base64). Case-sensitive sorting leads to some weird results and case-sensitive comparison can result in duplicate values differing only in letter case, so case-sensitive collations are falling out of favor for textual data - if case is significant to you, then otherwise ignorable punctuation and so on is probably also significant, and a binary collation might be more appropriate.

    +

    Next, unicode or general refers to the specific sorting and comparison rules - in particular, the way text is normalized or compared. There are many different sets of rules for the utf8mb4 character encoding, with unicode and general being two that attempt to work well in all possible languages rather than one specific one. The differences between these two sets of rules are the subject of this answer. Note that unicode uses rules from Unicode 4.0. Recent versions of MySQL add the rulesets unicode_520 using rules from Unicode 5.2, and 0900 (dropping the “unicode_” part) using rules from Unicode 9.0.

    +

    And lastly, utf8mb4 is of course the character encoding used internally. In this answer I’m talking only about Unicode based encodings.

    +

    翻译

    对于那些在 2020 年或之后仍会遇到这个问题的人,有可能比这两个更好的新选项。例如,utf8mb4_0900_ai_ci

    +

    所有这些排序规则都用于 UTF-8 字符编码。不同之处在于文本的排序和比较方式。

    +

    _unicode_ci_general_ci是两组不同的规则,用于按照我们期望的方式对文本进行排序和比较。较新版本的 MySQL 也引入了新的规则集,例如 _0900_ai_ci用于基于 Unicode 9.0 的等效规则 - 并且没有等效的 _general_ci变体。现在阅读本文的人可能应该使用这些较新的排序规则之一,而不是 _unicode_ci_general_ci。下面对那些较旧的排序规则的描述仅供参考。

    +

    MySQL 目前正在从旧的、有缺陷的 UTF-8 实现过渡。现在,您需要使用 utf8mb4 而不是 utf8作为字符编码部分,以确保您获得的是固定版本。有缺陷的版本仍然是为了向后兼容,尽管它已被弃用。

    +

    主要区别

    +

    utf8mb4_unicode_ci基于官方 Unicode 规则进行通用排序和比较,可在多种语言中准确排序。

    +

    utf8mb4_general_ci是一组简化的排序规则,旨在尽其所能,同时采用许多旨在提高速度的捷径。它不遵循 Unicode 规则,并且在某些情况下会导致不希望的排序或比较,例如在使用特定语言或字符时。

    +

    在现代服务器上,这种性能提升几乎可以忽略不计。它是在服务器的 CPU 性能只有当今计算机的一小部分时设计的。

    +

    utf8mb4_unicode_ci 相对于 utf8mb4_general_ci的优势

    +

    utf8mb4_unicode_ci使用 Unicode 规则进行排序和比较,采用相当复杂的算法在多种语言中以及在使用多种特殊字符时进行正确排序。这些规则需要考虑特定语言的约定;不是每个人都按照我们所说的“字母顺序”对他们的字符进行排序。

    +

    就拉丁语(即“欧洲”)语言而言,Unicode 排序和 MySQL 中简化的 utf8mb4_general_ci排序没有太大区别,但仍有一些区别:

    +

    例如,Unicode 排序规则将“ß”排序为“ss”,将“Œ”排序为“OE”,因为使用这些字符的人通常需要这些字符,而 utf8mb4_general_ci将它们排序为单个字符(大概分别像“s”和“e” )。

    +

    一些 Unicode 字符被定义为可忽略,这意味着它们不应该计入排序顺序,并且比较应该转到下一个字符。 utf8mb4_unicode_ci正确处理这些。

    +

    在非拉丁语言中,例如亚洲语言或具有不同字母的语言,Unicode 排序和简化的 utf8mb4_general_ci排序之间可能存在更多差异。 utf8mb4_general_ci的适用性在很大程度上取决于所使用的语言。对于某些语言,这将是非常不充分的。

    +

    你应该用什么?

    +

    几乎可以肯定没有理由再使用 utf8mb4_general_ci,因为我们已经将 CPU 速度低到会严重影响性能表现的时代远抛在脑后了。您的数据库几乎肯定会受到除此之外的其他瓶颈的限制。

    +

    过去,有些人建议使用 utf8mb4_general_ci,除非准确排序足够重要以证明性能成本是合理的。如今,这种性能成本几乎消失了,开发人员正在更加认真地对待国际化。

    +

    有一个论点是,如果速度对您来说比准确性更重要,那么您可能根本不进行任何排序。如果您不需要准确的算法,那么使算法更快是微不足道的。因此,utf8mb4_general_ci是一种折衷方案,出于速度原因可能不需要,也可能出于准确性原因也不适合。

    +

    我要补充的另一件事是,即使您知道您的应用程序仅支持英语,它可能仍需要处理人名,这些人名通常包含其他语言中使用的字符,在这些语言中正确排序同样重要.对所有事情都使用 Unicode 规则有助于让您更加安心,因为非常聪明的 Unicode 人员已经非常努力地工作以使排序正常工作。

    +

    其余各个部分是什么意思

    +

    首先, ci 用于不区分大小写的排序和比较。这意味着它适用于文本数据,大小写并不重要。其他类型的排序规则是 cs(区分大小写),用于区分大小写的文本数据,以及 bin,用于编码需要匹配的地方,逐位匹配,适用于真正编码二进制数据的字段(包括,用于例如,Base64)。区分大小写的排序会导致一些奇怪的结果,区分大小写的比较可能会导致重复值仅在字母大小写上有所不同,因此区分大小写的排序规则对文本数据不受欢迎 - 如果大小写对您很重要,那么标点符号就可以忽略等等可能也很重要,二进制排序规则可能更合适。

    +

    接下来,unicode 或general 指的是具体的排序和比较规则——特别是文本被规范化或比较的方式。 utf8mb4 字符编码有许多不同的规则集,其中 unicode 和 general 是两种,它们试图在所有可能的语言中都很好地工作,而不是在一种特定的语言中。这两组规则之间的差异是此答案的主题。请注意,unicode 使用 Unicode 4.0 中的规则。 MySQL 的最新版本使用 Unicode 5.2 的规则添加规则集 unicode_520,使用 Unicode 9.0 的规则添加 0900(删除“unicode_”部分)。

    +

    最后,utf8mb4 当然是内部使用的字符编码。在这个答案中,我只谈论基于 Unicode 的编码。

    +

    utf8 和 utf8mb4 编码有什么区别

    原文

    UTF-8is a variable-length encoding. In the case of UTF-8, this means that storing one code point requires one to four bytes. However, MySQL’s encoding called “utf8” (alias of “utf8mb3”) only stores a maximum of three bytes per code point.

    +

    So the character set “utf8”/“utf8mb3” cannot store all Unicode code points: it only supports the range 0x000 to 0xFFFF, which is called the “Basic Multilingual Plane“. See also Comparison of Unicode encodings.

    +

    This is what (a previous version of the same page at)the MySQL documentationhas to say about it:

    +
    +

    The character set named utf8[/utf8mb3] uses a maximum of three bytes per character and contains only BMP characters. As of MySQL 5.5.3, the utf8mb4 character set uses a maximum of four bytes per character supports supplemental characters:

    +
      +
    • For a BMP character, utf8[/utf8mb3] and utf8mb4 have identical storage characteristics: same code values, same encoding, same length.
    • +
    • For a supplementary character, utf8[/utf8mb3] cannot store the character at all, while utf8mb4 requires four bytes to store it. Since utf8[/utf8mb3] cannot store the character at all, you do not have any supplementary characters in utf8[/utf8mb3] columns and you need not worry about converting characters or losing data when upgrading utf8[/utf8mb3] data from older versions of MySQL.
    • +
    +
    +

    So if you want your column to support storing characters lying outside the BMP (and you usually want to), such as emoji, use “utf8mb4”. See also What are the most common non-BMP Unicode characters in actual use?.

    +

    译文

    UTF-8 是一种可变长度编码。对于 UTF-8,这意味着存储一个代码点需要一到四个字节。但是,MySQL 的编码称为“utf8”(“utf8mb3”的别名)每个代码点最多只能存储三个字节。

    +

    所以字符集“utf8”/“utf8mb3”不能存储所有的Unicode码位:它只支持0x000到0xFFFF的范围,被称为“基本多语言平面”。另请参阅 Unicode 编码比较

    +

    这就是(同一页面的先前版本)MySQL 文档 不得不说的:

    +
    +

    名为 utf8[/utf8mb3] 的字符集每个字符最多使用三个字节,并且仅包含 BMP 字符。从 MySQL 5.5.3 开始,utf8mb4 字符集每个字符最多使用四个字节,支持补充字符:

    +
      +
    • 对于 BMP 字符,utf8[/utf8mb3] 和 utf8mb4 具有相同的存储特性:相同的代码值、相同的编码、相同的长度。
    • +
    • 对于补充字符,utf8[/utf8mb3] 根本无法存储该字符,而 utf8mb4 需要四个字节来存储它。由于 utf8[/utf8mb3] 根本无法存储字符,因此您在 utf8[/utf8mb3] 列中没有任何补充字符,您不必担心从旧版本升级 utf8[/utf8mb3] 数据时转换字符或丢失数据mysql。
    • +
    +
    +

    因此,如果您希望您的列支持存储位于 BMP 之外的字符(并且您通常希望这样做),例如 emoji,请使用“utf8mb4”。另请参阅

    +

    实际使用中最常见的非 BMP Unicode 字符是什么?

    +]]>
    + + Mysql - MQ - 消息队列 - RocketMQ - 削峰填谷 - 中间件 - DefaultMQPushConsumer - 源码解析 + mysql + 字符集 + 编码 + utf8 + utf8mb4 + utf8mb4_0900_ai_ci + utf8mb4_unicode_ci + utf8mb4_general_ci
    - 聊一下 RocketMQ 的消息存储之 MMAP - /2021/09/04/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8/ - 这是个很大的话题了,可能会分成两部分说,第一部分就是所谓的零拷贝 ( zero-copy ),这一块其实也不新鲜,我对零拷贝的概念主要来自这篇文章,个人感觉写得非常好,在 rocketmq 中,最大的一块存储就是消息存储,也就是 CommitLog ,当然还有 ConsumeQueue 和 IndexFile,以及其他一些文件,CommitLog 的存储是以一个 1G 大小的文件作为存储单位,写完了就再建一个,那么如何提高这 1G 文件的读写效率呢,就是 mmap,传统意义的读写文件,read,write 都需要由系统调用,来回地在用户态跟内核态进行拷贝切换,

    -
    read(file, tmp_buf, len);
    -write(socket, tmp_buf, len);
    - - - -

    vms95Z

    -

    如上面的图显示的,要在用户态跟内核态进行切换,数据还需要在内核缓冲跟用户缓冲之间拷贝多次,

    -
    -
      -
    1. 第一步是调用 read,需要在用户态切换成内核态,DMA模块从磁盘中读取文件,并存储在内核缓冲区,相当于是第一次复制
    2. -
    3. 数据从内核缓冲区被拷贝到用户缓冲区,read 调用返回,伴随着内核态又切换成用户态,完成了第二次复制
    4. -
    5. 然后是write 写入,这里也会伴随着用户态跟内核态的切换,数据从用户缓冲区被复制到内核空间缓冲区,完成了第三次复制,这次有点不一样的是数据不是在内核缓冲区了,会复制到 socket buffer 中。
    6. -
    7. write 系统调用返回,又切换回了用户态,然后数据由 DMA 拷贝到协议引擎。
    8. -
    -
    -

    如此就能看出其实默认的读写操作代价是非常大的,而在 rocketmq 等高性能中间件中都有使用的零拷贝技术,其中 rocketmq 使用的是 mmap

    -

    mmap

    mmap基于 OS 的 mmap 的内存映射技术,通过MMU 映射文件,将文件直接映射到用户态的内存地址,使得对文件的操作不再是 write/read,而转化为直接对内存地址的操作,使随机读写文件和读写内存相似的速度。

    -
    -

    mmap 把文件映射到用户空间里的虚拟内存,省去了从内核缓冲区复制到用户空间的过程,文件中的位置在虚拟内存中有了对应的地址,可以像操作内存一样操作这个文件,这样的文件读写文件方式少了数据从内核缓存到用户空间的拷贝,效率很高。

    -
    -
    tmp_buf = mmap(file, len);
    -write(socket, tmp_buf, len);
    - -

    I68mFx

    -
    -

    第一步:mmap系统调用使得文件内容被DMA引擎复制到内核缓冲区。然后该缓冲区与用户进程共享,在内核和用户内存空间之间不进行任何拷贝。

    -

    第二步:写系统调用使得内核将数据从原来的内核缓冲区复制到与套接字相关的内核缓冲区。

    -

    第三步:第三次拷贝发生在DMA引擎将数据从内核套接字缓冲区传递给协议引擎时。

    -

    通过使用mmap而不是read,我们将内核需要拷贝的数据量减少了一半。当大量的数据被传输时,这将有很好的效果。然而,这种改进并不是没有代价的;在使用mmap+write方法时,有一些隐藏的陷阱。例如当你对一个文件进行内存映射,然后在另一个进程截断同一文件时调用写。你的写系统调用将被总线错误信号SIGBUS打断,因为你执行了一个错误的内存访问。该信号的默认行为是杀死进程并dumpcore–这对网络服务器来说不是最理想的操作。

    -

    有两种方法可以解决这个问题。

    -

    第一种方法是为SIGBUS信号安装一个信号处理程序,然后在处理程序中简单地调用返回。通过这样做,写系统调用会返回它在被打断之前所写的字节数,并将errno设置为成功。让我指出,这将是一个糟糕的解决方案,一个治标不治本的解决方案。因为SIGBUS预示着进程出了严重的问题,所以不鼓励使用这种解决方案。

    -

    第二个解决方案涉及内核的文件租赁(在Windows中称为 “机会锁”)。这是解决这个问题的正确方法。通过在文件描述符上使用租赁,你与内核在一个特定的文件上达成租约。然后你可以向内核请求一个读/写租约。当另一个进程试图截断你正在传输的文件时,内核会向你发送一个实时信号,即RT_SIGNAL_LEASE信号。它告诉你内核即将终止你对该文件的写或读租约。在你的程序访问一个无效的地址和被SIGBUS信号杀死之前,你的写调用会被打断了。写入调用的返回值是中断前写入的字节数,errno将被设置为成功。下面是一些示例代码,显示了如何从内核中获得租约。

    -
    if(fcntl(fd, F_SETSIG, RT_SIGNAL_LEASE) == -1) {
    -    perror("kernel lease set signal");
    -    return -1;
    -}
    -/* l_type can be F_RDLCK F_WRLCK */
    -if(fcntl(fd, F_SETLEASE, l_type)){
    -    perror("kernel lease set type");
    -    return -1;
    -}
    + 周末我在老丈人家打了天小工 + /2020/08/16/%E5%91%A8%E6%9C%AB%E6%88%91%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E6%89%93%E4%BA%86%E5%A4%A9%E5%B0%8F%E5%B7%A5/ + 这周回家提前约好了要去老丈人家帮下忙,因为在翻修下老房子,活不是特别整的那种,所以大部分都是自己干,或者找个大工临时干几天(我们这那种比较专业的泥工匠叫做大工),像我这样去帮忙的,就是干点小工(把给大工帮忙的,干些偏体力活的叫做小工)的活。从大学毕业以后真的蛮少帮家里干活了,以前上学的时候放假还是帮家里淘个米,简单的扫地拖地啥的,当然刚高考完的时候,还去我爸厂里帮忙干了几天的活,实在是比较累,不过现在想着是觉得自己那时候比较牛,而不是特别排斥这个活,相对于现在的工作来说,导致了一系列的职业病,颈椎腰背都很僵硬,眼镜也不好,还有反流,像我爸那种活反而是脑力加体力的比较好的结合。
    这一天的活前半部分主要是在清理厨房,瓷砖上的油污和墙上天花板上即将脱落的石灰或者白色涂料层,这种活特别是瓷砖上的油污,之前在自己家里也干活,还是比较熟悉的,不过前面主要是LD 在干,我主要是先搞墙上和天花板上的,干活还是很需要技巧的,如果直接去铲,那基本我会变成一个灰人,而且吸一鼻子灰,老丈人比较专业,先接上软管用水冲,一冲效果特别好,有些石灰涂料层直接就冲掉了,冲完之后先用带加长杆的刀片铲铲了一圈墙面,说实话因为老房子之前租出去了,所以墙面什么的被糟蹋的比较难看,一层一层的,不过这还算还好,后面主要是天花板上的,这可难倒我了,从小我爸妈是比较把我当小孩管着,爬上爬下的基本都是我爸搞定,但是到了老丈人家也只得硬着头皮上了,爬到跳(一种建筑工地用的架子)上,还有点晃,小心脏扑通扑通跳,而且带加长杆的铲子还是比较重的,铲一会手也有点累,不过坚持着铲完了,上面还是比较平整的,不过下来的时候又把我难住了🤦‍♂️,往下爬的时候有根杆子要跨过去,由于裤子比较紧,强行一把跨过去怕抽筋,所以以一个非常尴尬的姿势停留休息了一会,再跨了过去,幸好事后问 LD,他们都没看到,哈哈哈,然后就是帮忙一起搞瓷砖上的油污,这个太有经验了,不过老丈人更有意思,一会试试啤酒,一会用用沙子,后面在午饭前基本就弄的比较干净了,就坐着等吃饭了,下午午休了会,就继续干活了。
    下午是我这次体验的重点了,因为要清理以前贴的墙纸,真的是个很麻烦的活,只能说贴墙纸的师傅活干得太好了,基本不可能整个撕下来,想用铲子一点点铲下来也不行,太轻了就只铲掉表面一层,太重了就把墙纸跟墙面的石灰啥的整个铲下来了,而且手又累又酸,后来想着是不是继续用水冲一下,对着一小面墙试验了下,效果还不错,但是又发现了个问题,那一面墙又有一块是后面糊上去的,铲掉外层的石灰后不平,然后就是最最重头的,也是让我后遗症持续到第二天的,要把那一块糊上去的水泥敲下来,毛估下大概是敲了80%左右,剩下的我的手已经不会用力了,因为那一块应该是要糊上去的始作俑者,就一块里面凹进去的,我拿着榔头敲到我手已经没法使劲了,而且大下午,感觉没五分钟,我的汗已经糊满脸,眼睛也睁不开,不然就流到眼睛里了,此处获得成就一:用榔头敲墙壁,也是个技术加体力的活,而且需要非常好的技巧,否则手马上就废了,敲下去的反作用力,没一会就不行了,然后是看着老丈人兄弟帮忙拆一个柜子,在我看来是个几天都搞不定的活,他轻轻松松在我敲墙的那会就搞定了,以前总觉得我干的活非常有技术含量,可是这个事情真的也是很有技巧啊,它是个把一间房间分隔开的柜子,从底到顶上,还带着门,我还在旁边帮忙撬一下脚踢,一根木条撬半天,唉,成就二:专业的人就是不一样。
    最后就是成就三了:我之前沾沾自喜的跑了多少步,做了什么锻炼,其实都是渣渣,像这样干一天活,没经历过的,基本大半天就废了,反过来说,如果能经常去这么干一天活,跑步啥的都是渣渣,消耗的能量远远超过跑个十公里啥的。

    ]]>
    - MQ - RocketMQ - 消息队列 + 生活 + 运动 + 跑步 + 干活 - MQ - 消息队列 - RocketMQ + 生活 + 运动 + 减肥 + 跑步 + 干活
    - 聊一下 RocketMQ 的消息存储三 - /2021/10/03/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E4%B8%89/ - ConsumeQueue 其实是定位到一个 topic 下的消息在 CommitLog 下的偏移量,它也是固定大小的

    -
    // ConsumeQueue file size,default is 30W
    -private int mapedFileSizeConsumeQueue = 300000 * ConsumeQueue.CQ_STORE_UNIT_SIZE;
    -
    -public static final int CQ_STORE_UNIT_SIZE = 20;
    - -

    所以文件大小是5.7M 左右

    -

    5udpag

    -

    ConsumeQueue 的构建是通过org.apache.rocketmq.store.DefaultMessageStore.ReputMessageService运行后的 doReput 方法,而启动是的 reputFromOffset 则是通过org.apache.rocketmq.store.DefaultMessageStore#start中下面代码设置并启动

    -
    log.info("[SetReputOffset] maxPhysicalPosInLogicQueue={} clMinOffset={} clMaxOffset={} clConfirmedOffset={}",
    -                maxPhysicalPosInLogicQueue, this.commitLog.getMinOffset(), this.commitLog.getMaxOffset(), this.commitLog.getConfirmOffset());
    -            this.reputMessageService.setReputFromOffset(maxPhysicalPosInLogicQueue);
    -            this.reputMessageService.start();
    - -

    看一下 doReput 的逻辑

    -
    private void doReput() {
    -            if (this.reputFromOffset < DefaultMessageStore.this.commitLog.getMinOffset()) {
    -                log.warn("The reputFromOffset={} is smaller than minPyOffset={}, this usually indicate that the dispatch behind too much and the commitlog has expired.",
    -                    this.reputFromOffset, DefaultMessageStore.this.commitLog.getMinOffset());
    -                this.reputFromOffset = DefaultMessageStore.this.commitLog.getMinOffset();
    -            }
    -            for (boolean doNext = true; this.isCommitLogAvailable() && doNext; ) {
    -
    -                if (DefaultMessageStore.this.getMessageStoreConfig().isDuplicationEnable()
    -                    && this.reputFromOffset >= DefaultMessageStore.this.getConfirmOffset()) {
    -                    break;
    -                }
    -
    -              // 根据偏移量获取消息
    -                SelectMappedBufferResult result = DefaultMessageStore.this.commitLog.getData(reputFromOffset);
    -                if (result != null) {
    -                    try {
    -                        this.reputFromOffset = result.getStartOffset();
    -
    -                        for (int readSize = 0; readSize < result.getSize() && doNext; ) {
    -                          // 消息校验和转换
    -                            DispatchRequest dispatchRequest =
    -                                DefaultMessageStore.this.commitLog.checkMessageAndReturnSize(result.getByteBuffer(), false, false);
    -                            int size = dispatchRequest.getBufferSize() == -1 ? dispatchRequest.getMsgSize() : dispatchRequest.getBufferSize();
    -
    -                            if (dispatchRequest.isSuccess()) {
    -                                if (size > 0) {
    -                                  // 进行分发处理,包括 ConsumeQueue 和 IndexFile
    -                                    DefaultMessageStore.this.doDispatch(dispatchRequest);
    -
    -                                    if (BrokerRole.SLAVE != DefaultMessageStore.this.getMessageStoreConfig().getBrokerRole()
    -                                        && DefaultMessageStore.this.brokerConfig.isLongPollingEnable()) {
    -                                        DefaultMessageStore.this.messageArrivingListener.arriving(dispatchRequest.getTopic(),
    -                                            dispatchRequest.getQueueId(), dispatchRequest.getConsumeQueueOffset() + 1,
    -                                            dispatchRequest.getTagsCode(), dispatchRequest.getStoreTimestamp(),
    -                                            dispatchRequest.getBitMap(), dispatchRequest.getPropertiesMap());
    -                                    }
    -
    -                                    this.reputFromOffset += size;
    -                                    readSize += size;
    -                                    if (DefaultMessageStore.this.getMessageStoreConfig().getBrokerRole() == BrokerRole.SLAVE) {
    -                                        DefaultMessageStore.this.storeStatsService
    -                                            .getSinglePutMessageTopicTimesTotal(dispatchRequest.getTopic()).incrementAndGet();
    -                                        DefaultMessageStore.this.storeStatsService
    -                                            .getSinglePutMessageTopicSizeTotal(dispatchRequest.getTopic())
    -                                            .addAndGet(dispatchRequest.getMsgSize());
    -                                    }
    -                                } else if (size == 0) {
    -                                    this.reputFromOffset = DefaultMessageStore.this.commitLog.rollNextFile(this.reputFromOffset);
    -                                    readSize = result.getSize();
    -                                }
    -                            } else if (!dispatchRequest.isSuccess()) {
    -
    -                                if (size > 0) {
    -                                    log.error("[BUG]read total count not equals msg total size. reputFromOffset={}", reputFromOffset);
    -                                    this.reputFromOffset += size;
    -                                } else {
    -                                    doNext = false;
    -                                    // If user open the dledger pattern or the broker is master node,
    -                                    // it will not ignore the exception and fix the reputFromOffset variable
    -                                    if (DefaultMessageStore.this.getMessageStoreConfig().isEnableDLegerCommitLog() ||
    -                                        DefaultMessageStore.this.brokerConfig.getBrokerId() == MixAll.MASTER_ID) {
    -                                        log.error("[BUG]dispatch message to consume queue error, COMMITLOG OFFSET: {}",
    -                                            this.reputFromOffset);
    -                                        this.reputFromOffset += result.getSize() - readSize;
    -                                    }
    -                                }
    -                            }
    -                        }
    -                    } finally {
    -                        result.release();
    -                    }
    -                } else {
    -                    doNext = false;
    -                }
    -            }
    -        }
    - -

    分发的逻辑看到这

    -
        class CommitLogDispatcherBuildConsumeQueue implements CommitLogDispatcher {
    -
    -        @Override
    -        public void dispatch(DispatchRequest request) {
    -            final int tranType = MessageSysFlag.getTransactionValue(request.getSysFlag());
    -            switch (tranType) {
    -                case MessageSysFlag.TRANSACTION_NOT_TYPE:
    -                case MessageSysFlag.TRANSACTION_COMMIT_TYPE:
    -                    DefaultMessageStore.this.putMessagePositionInfo(request);
    -                    break;
    -                case MessageSysFlag.TRANSACTION_PREPARED_TYPE:
    -                case MessageSysFlag.TRANSACTION_ROLLBACK_TYPE:
    -                    break;
    -            }
    -        }
    -    }
    -public void putMessagePositionInfo(DispatchRequest dispatchRequest) {
    -        ConsumeQueue cq = this.findConsumeQueue(dispatchRequest.getTopic(), dispatchRequest.getQueueId());
    -        cq.putMessagePositionInfoWrapper(dispatchRequest);
    -    }
    - -

    真正存储的是在这

    -
    private boolean putMessagePositionInfo(final long offset, final int size, final long tagsCode,
    -    final long cqOffset) {
    -
    -    if (offset + size <= this.maxPhysicOffset) {
    -        log.warn("Maybe try to build consume queue repeatedly maxPhysicOffset={} phyOffset={}", maxPhysicOffset, offset);
    -        return true;
    -    }
    -
    -    this.byteBufferIndex.flip();
    -    this.byteBufferIndex.limit(CQ_STORE_UNIT_SIZE);
    -    this.byteBufferIndex.putLong(offset);
    -    this.byteBufferIndex.putInt(size);
    -    this.byteBufferIndex.putLong(tagsCode);
    - -

    这里也可以看到 ConsumeQueue 的存储格式,

    -

    AA6Tve

    -

    偏移量,消息大小,跟 tag 的 hashCode

    + 看完了扫黑风暴,聊聊感想 + /2021/10/24/%E7%9C%8B%E5%AE%8C%E4%BA%86%E6%89%AB%E9%BB%91%E9%A3%8E%E6%9A%B4-%E8%81%8A%E8%81%8A%E6%84%9F%E6%83%B3/ + 一直在想这篇怎么写,看了这部剧其实对我的一些观念是有影响的,应该是在 9 月份就看完了,到现在可能才会稍微平静一点,一开始是没有想看这部剧,因为同期有一部差不多同名的电影,被投诉了对湖南埋尸案家属伤害很大,我以为就是投诉的这部电视剧,后来同事跟我说不是,所以就想着看一下,但是没有马上看,因为一直不喜欢追这种比较纠结的剧,当时看人民的名义,就是后面等不了了直接看了小说,所以差不多是等到更完了才看的。

    +

    尝试保持一个比较冷静的状态来聊聊,在看的时候有一点感想就是如果要剧里的坏人排个名,因为明眼看都是孙兴是个穷凶极恶的坏人,干尽了坏事,而且可能是演员表演地好,让人真的恨的牙痒痒,但是更多地还是停留在那些剧情中的表现和他的表情,其实对应的真实案例有更多的,这里尽量不展开,有兴趣可以自行搜索关键字,所以其实我想排个名的话,孙兴的母亲应该是我心目中是造成这个结果的比较大占比的始作俑者,因为是方方面面的,包括对林汉的栽赃迫害,最后串起来是因为他看到了孙兴又出来了,就是那句老话,撒了一个谎以后就要用无数个谎来圆,贺芸为了孙兴,作了第一个恶以后就用了一系列的丧心病狂的操作来保护孙兴,而且这之后所做的事情一件比一件可怕,并且如果不是督导组各种想方设法地去破解谜题,这个事情还可以一直被通过各种操作瞒下去,而孙兴还可以继续地为虎作伥,当然其他的包括高明远以及后面的王政,当然是为了这个操作也提供的各种方式的帮助,甚至是主导了这些操作,但是这里贺芸还是在这个位子上能够通过权力做出非常关键的动作,包括栽赃林汉,并且搞掉了李成阳。其中还有一点是我对剧情设计的质疑,也是我前面提到过一点,因为里面孙兴好像是很爱他的母亲贺芸,似乎想表达的是孙兴作的恶是因为得不到母爱,并且个人感觉如果是一个比较敬爱自己母亲的儿子,似乎应该有所畏惧,对他的行为也会有所限制,不应该变成这样一个无恶不作的恶霸,这也是我一直以来的观点,很多人作恶太多可能是因为没有信仰,不管是信基督耶稣还是信道教佛教,总归有一些制约,当然不是说就绝对不会作恶,只是偏向于有所畏惧敬畏,除了某绿哈。

    +

    而对于其他的人感觉演技都不错,只是最后有一些虎头蛇尾吧,不知道是不是审核的原因,也不细说了怕被请喝茶,还有提一点就是麦佳的这个事情,她其实是里面很惨的一个人,把高明远当成最亲近的人,而其实真相令人感觉不寒而栗,杀父杀母的仇人,对于麦佳这个演员,一直觉得印象深刻,后来才想起来就是在爱情公寓里演被关谷救了要以身相遇的那个女孩,长相其实蛮令人印象深刻的,但好像也一直不温不火,不过也不能说演技很好吧,只是在这里演的任务真的是很可怜了,剧情设计里也应该是个很重要的串联人物,最终被高明远献给了大佬,这里扯开一点,好像有的观点说贺芸之前也是这样的,只是一种推测了。

    +

    看完这部剧其实有很多想说的,但是也为了不被请喝茶,尽量少说了,只想说珍爱生命,还是自己小心吧

    +]]>
    + + 生活 + + + 生活 + 影评 + +
    + + 给小电驴上牌 + /2022/03/20/%E7%BB%99%E5%B0%8F%E7%94%B5%E9%A9%B4%E4%B8%8A%E7%89%8C/ + 三八节活动的时候下决心买了个小电驴,主要是上下班路上现在通勤条件越来越恶劣了,之前都是觉得坐公交就行了,实际路程就比较短,但是现在或者说大概是年前那两个月差不多就开始了,基本是堵一路,个人感觉是天目山路那边在修地铁,而且蚂蚁的几个空间都在那,上班的时间点都差不多,前一个修地铁感觉挺久了,机动车保有量也越来越多,总体是古墩路就越来越堵,还有个原因就是早上上班的点共享单车都被骑走了,有时候整整走一路都没一辆,有时候孤零零地有一辆基本都是破的;走路其实也是一种选择,但是因为要赶着上班,走得太慢就要很久,可能要 45 分钟这样,走得比较快就一身汗挺难受的。所以考虑自行车和电动车,这里还有一点就是不管是乘公交还是骑共享单车,其实都要从楼下走出去蛮远,公司回来也是,也就是这种通勤方式在准备阶段就花了比较多时间,比如总的从下班到到家的时间是半小时,可能在骑共享单车和公交车上的时间都不到十分钟,就比较难受。觉得这种比例太浪费时间,如果能有这种比较点对点的方式,估计能省时省力不少,前面说的骑共享单车的方式其实在之前是比较可行的,但是后来越来越少车,基本都是每周的前几天,周一到周三都是没有车,走路到公司再冷的天都是走出一身的汗,下雨天就更难受,本来下雨天应该是优先选择坐公交,但是一般下雨天堵车会更严重,而且车子到我上车的那个站,下雨天就挤得不行,总体说下来感觉事情都不打,但是几年下来,还是会挺不爽的。

    +

    电驴看的比较草率,主要是考虑续航,然后锂电池外加 48v 和 24AH,这样一般来讲还是价格比较高的,只是原来没预料到这个限速,以为现在的车子都比较快,但是现在的新国标车子都是 25km/h 的限速,然后 15km/h 都是会要提醒,虽然说有一些特殊的解除限速的方法,但是解了也就 35km/h ,差距不是特别大,而且现在的车子都是比较小,也不太能载东西,特别是上下班路程也不远的情况下,其实不是那么需要速度,就像我朋友说的,可能骑车的时间还不如等红绿灯多,所以就还好,也不打算解除限速,只是品牌上也仔细看,后来选了绿源,目前大部分还是雅迪,爱玛,台羚,绿源,小牛等,路上看的话还是雅迪比较多,不过价格也比较贵一点,还有就是小牛了,是比较新兴的品牌,手机 App 什么的做得比较好,而且也比较贵,最后以相对比较便宜的价格买了个锂电 48V24AH 的小车子,后来发现还是有点不方便的点就是没有比较大的筐,也不好装,这样就是下雨天雨衣什么的比较不方便放。

    +

    聊回来主题上牌这个事情,这个事情也是颇费心力,提车的时候店里的让我跟他早上一起去,但是因为不确定时间,也比较远就没跟着去,因为我是线上买的,线下自提,线下的店可能没啥利润可以拿,就不肯帮忙代上牌,朋友说在线下店里买是可以代上的,自己上牌过程也比较曲折,一开始是头盔没到,然后是等开发票,主要的东西就是需要骑着车子去车管所,不能只自己去,然后需要预约,附近比较近的都是提前一周就预约完了号了,要提前在支付宝上进行预约,比较空的就是店里推荐的景区大队,但是随之而来就是比较蛋疼的,这个景区大队太远了,看下骑车距离有十几公里,所以就有点拖延症,但是总归要上的,不然一直不能开是白买了,上牌的材料主要是车辆合格证,发票,然后车子上的浙品码,在车架上和电池上,然后车架号什么的都要跟合格证上完全对应,整体车子要跟合格证上一毛一样,如果有额外的反光镜,后面副座都需要拆掉,脚踏板要装上,到了那其实还比较顺利,就是十几公里外加那天比较冷,吹得头疼。

    ]]>
    - MQ - RocketMQ - 消息队列 + 生活 - MQ - 消息队列 - RocketMQ + 生活
    - 聊一下 RocketMQ 的消息存储二 - /2021/09/12/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E4%BA%8C/ - CommitLog 结构

    CommitLog 是 rocketmq 的服务端,也就是 broker 存储消息的的文件,跟 kafka 一样,也是顺序写入,当然消息是变长的,生成的规则是每个文件的默认1G =1024 * 1024 * 1024,commitlog的文件名fileName,名字长度为20位,左边补零,剩余为起始偏移量;比如00000000000000000000代表了第一个文件,起始偏移量为0,文件大小为1G=1 073 741 824Byte;当这个文件满了,第二个文件名字为00000000001073741824,起始偏移量为1073741824, 消息存储的时候会顺序写入文件,当文件满了则写入下一个文件,代码中的定义

    -
    // CommitLog file size,default is 1G
    -private int mapedFileSizeCommitLog = 1024 * 1024 * 1024;
    - -

    kLahwW

    -

    本地跑个 demo 验证下,也是这样,这里奇妙有几个比较巧妙的点(个人观点),首先文件就刚好是 1G,并且按照大小偏移量去生成下一个文件,这样获取消息的时候按大小算一下就知道在哪个文件里了,

    -

    代码中写入 CommitLog 的逻辑可以从这开始看

    -
    public PutMessageResult putMessage(final MessageExtBrokerInner msg) {
    -        // Set the storage time
    -        msg.setStoreTimestamp(System.currentTimeMillis());
    -        // Set the message body BODY CRC (consider the most appropriate setting
    -        // on the client)
    -        msg.setBodyCRC(UtilAll.crc32(msg.getBody()));
    -        // Back to Results
    -        AppendMessageResult result = null;
    -
    -        StoreStatsService storeStatsService = this.defaultMessageStore.getStoreStatsService();
    -
    -        String topic = msg.getTopic();
    -        int queueId = msg.getQueueId();
    -
    -        final int tranType = MessageSysFlag.getTransactionValue(msg.getSysFlag());
    -        if (tranType == MessageSysFlag.TRANSACTION_NOT_TYPE
    -            || tranType == MessageSysFlag.TRANSACTION_COMMIT_TYPE) {
    -            // Delay Delivery
    -            if (msg.getDelayTimeLevel() > 0) {
    -                if (msg.getDelayTimeLevel() > this.defaultMessageStore.getScheduleMessageService().getMaxDelayLevel()) {
    -                    msg.setDelayTimeLevel(this.defaultMessageStore.getScheduleMessageService().getMaxDelayLevel());
    -                }
    -
    -                topic = ScheduleMessageService.SCHEDULE_TOPIC;
    -                queueId = ScheduleMessageService.delayLevel2QueueId(msg.getDelayTimeLevel());
    -
    -                // Backup real topic, queueId
    -                MessageAccessor.putProperty(msg, MessageConst.PROPERTY_REAL_TOPIC, msg.getTopic());
    -                MessageAccessor.putProperty(msg, MessageConst.PROPERTY_REAL_QUEUE_ID, String.valueOf(msg.getQueueId()));
    -                msg.setPropertiesString(MessageDecoder.messageProperties2String(msg.getProperties()));
    -
    -                msg.setTopic(topic);
    -                msg.setQueueId(queueId);
    -            }
    -        }
    -
    -        long eclipseTimeInLock = 0;
    -        MappedFile unlockMappedFile = null;
    -        MappedFile mappedFile = this.mappedFileQueue.getLastMappedFile();
    -
    -        putMessageLock.lock(); //spin or ReentrantLock ,depending on store config
    -        try {
    -            long beginLockTimestamp = this.defaultMessageStore.getSystemClock().now();
    -            this.beginTimeInLock = beginLockTimestamp;
    -
    -            // Here settings are stored timestamp, in order to ensure an orderly
    -            // global
    -            msg.setStoreTimestamp(beginLockTimestamp);
    -
    -            if (null == mappedFile || mappedFile.isFull()) {
    -                mappedFile = this.mappedFileQueue.getLastMappedFile(0); // Mark: NewFile may be cause noise
    -            }
    -            if (null == mappedFile) {
    -                log.error("create mapped file1 error, topic: " + msg.getTopic() + " clientAddr: " + msg.getBornHostString());
    -                beginTimeInLock = 0;
    -                return new PutMessageResult(PutMessageStatus.CREATE_MAPEDFILE_FAILED, null);
    -            }
    -
    -            result = mappedFile.appendMessage(msg, this.appendMessageCallback);
    -            switch (result.getStatus()) {
    -                case PUT_OK:
    -                    break;
    -                case END_OF_FILE:
    -                    unlockMappedFile = mappedFile;
    -                    // Create a new file, re-write the message
    -                    mappedFile = this.mappedFileQueue.getLastMappedFile(0);
    -                    if (null == mappedFile) {
    -                        // XXX: warn and notify me
    -                        log.error("create mapped file2 error, topic: " + msg.getTopic() + " clientAddr: " + msg.getBornHostString());
    -                        beginTimeInLock = 0;
    -                        return new PutMessageResult(PutMessageStatus.CREATE_MAPEDFILE_FAILED, result);
    -                    }
    -                    result = mappedFile.appendMessage(msg, this.appendMessageCallback);
    -                    break;
    -                case MESSAGE_SIZE_EXCEEDED:
    -                case PROPERTIES_SIZE_EXCEEDED:
    -                    beginTimeInLock = 0;
    -                    return new PutMessageResult(PutMessageStatus.MESSAGE_ILLEGAL, result);
    -                case UNKNOWN_ERROR:
    -                    beginTimeInLock = 0;
    -                    return new PutMessageResult(PutMessageStatus.UNKNOWN_ERROR, result);
    -                default:
    -                    beginTimeInLock = 0;
    -                    return new PutMessageResult(PutMessageStatus.UNKNOWN_ERROR, result);
    -            }
    -
    -            eclipseTimeInLock = this.defaultMessageStore.getSystemClock().now() - beginLockTimestamp;
    -            beginTimeInLock = 0;
    -        } finally {
    -            putMessageLock.unlock();
    -        }
    -
    -        if (eclipseTimeInLock > 500) {
    -            log.warn("[NOTIFYME]putMessage in lock cost time(ms)={}, bodyLength={} AppendMessageResult={}", eclipseTimeInLock, msg.getBody().length, result);
    -        }
    -
    -        if (null != unlockMappedFile && this.defaultMessageStore.getMessageStoreConfig().isWarmMapedFileEnable()) {
    -            this.defaultMessageStore.unlockMappedFile(unlockMappedFile);
    -        }
    -
    -        PutMessageResult putMessageResult = new PutMessageResult(PutMessageStatus.PUT_OK, result);
    -
    -        // Statistics
    -        storeStatsService.getSinglePutMessageTopicTimesTotal(msg.getTopic()).incrementAndGet();
    -        storeStatsService.getSinglePutMessageTopicSizeTotal(topic).addAndGet(result.getWroteBytes());
    -
    -        handleDiskFlush(result, putMessageResult, msg);
    -        handleHA(result, putMessageResult, msg);
    -
    -        return putMessageResult;
    -    }
    - -

    前面也看到在CommitLog 目录下是有大小为 1G 的文件组成,在实现逻辑中,其实是通过 org.apache.rocketmq.store.MappedFileQueue ,内部是存的一个MappedFile的队列,对于写入的场景每次都是通过org.apache.rocketmq.store.MappedFileQueue#getLastMappedFile() 获取最后一个文件,如果还没有创建,或者最后这个文件已经满了,那就调用 org.apache.rocketmq.store.MappedFileQueue#getLastMappedFile(long)

    -
    public MappedFile getLastMappedFile(final long startOffset, boolean needCreate) {
    -        long createOffset = -1;
    -  			// 调用前面的方法,只是从 mappedFileQueue 获取最后一个
    -        MappedFile mappedFileLast = getLastMappedFile();
    -
    -        // 如果为空,计算下创建的偏移量
    -        if (mappedFileLast == null) {
    -            createOffset = startOffset - (startOffset % this.mappedFileSize);
    -        }
    -  
    -				// 如果不为空,但是当前的文件写满了
    -        if (mappedFileLast != null && mappedFileLast.isFull()) {
    -            // 前一个的偏移量加上单个文件的偏移量,也就是 1G
    -            createOffset = mappedFileLast.getFileFromOffset() + this.mappedFileSize;
    -        }
    -
    -        if (createOffset != -1 && needCreate) {
    -            // 根据 createOffset 转换成文件名进行创建
    -            String nextFilePath = this.storePath + File.separator + UtilAll.offset2FileName(createOffset);
    -            String nextNextFilePath = this.storePath + File.separator
    -                + UtilAll.offset2FileName(createOffset + this.mappedFileSize);
    -            MappedFile mappedFile = null;
    -
    -          	// 这里如果allocateMappedFileService 存在,就提交请求
    -            if (this.allocateMappedFileService != null) {
    -                mappedFile = this.allocateMappedFileService.putRequestAndReturnMappedFile(nextFilePath,
    -                    nextNextFilePath, this.mappedFileSize);
    -            } else {
    -                try {
    -                  // 否则就直接创建
    -                    mappedFile = new MappedFile(nextFilePath, this.mappedFileSize);
    -                } catch (IOException e) {
    -                    log.error("create mappedFile exception", e);
    -                }
    -            }
    -
    -            if (mappedFile != null) {
    -                if (this.mappedFiles.isEmpty()) {
    -                    mappedFile.setFirstCreateInQueue(true);
    -                }
    -                this.mappedFiles.add(mappedFile);
    -            }
    -
    -            return mappedFile;
    -        }
    -
    -        return mappedFileLast;
    -    }
    - -

    首先看下直接创建的,

    -
    public MappedFile(final String fileName, final int fileSize) throws IOException {
    -        init(fileName, fileSize);
    +    聊一下 RocketMQ 的 NameServer 源码
    +    /2020/07/05/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84-NameServer-%E6%BA%90%E7%A0%81/
    +    前面介绍了,nameserver相当于dubbo的注册中心,用与管理broker,broker会在启动的时候注册到nameserver,并且会发送心跳给namaserver,nameserver负责保存活跃的broker,包括master和slave,同时保存topic和topic下的队列,以及filter列表,然后为producer和consumer的请求提供服务。

    +

    启动过程

    public static void main(String[] args) {
    +        main0(args);
         }
    -private void init(final String fileName, final int fileSize) throws IOException {
    -        this.fileName = fileName;
    -        this.fileSize = fileSize;
    -        this.file = new File(fileName);
    -        this.fileFromOffset = Long.parseLong(this.file.getName());
    -        boolean ok = false;
     
    -        ensureDirOK(this.file.getParent());
    +    public static NamesrvController main0(String[] args) {
     
             try {
    -          // 通过 RandomAccessFile 创建 fileChannel
    -            this.fileChannel = new RandomAccessFile(this.file, "rw").getChannel();
    -          // 做 mmap 映射
    -            this.mappedByteBuffer = this.fileChannel.map(MapMode.READ_WRITE, 0, fileSize);
    -            TOTAL_MAPPED_VIRTUAL_MEMORY.addAndGet(fileSize);
    -            TOTAL_MAPPED_FILES.incrementAndGet();
    -            ok = true;
    -        } catch (FileNotFoundException e) {
    -            log.error("create file channel " + this.fileName + " Failed. ", e);
    -            throw e;
    -        } catch (IOException e) {
    -            log.error("map file " + this.fileName + " Failed. ", e);
    -            throw e;
    -        } finally {
    -            if (!ok && this.fileChannel != null) {
    -                this.fileChannel.close();
    -            }
    -        }
    -    }
    - -

    如果是提交给AllocateMappedFileService的话就用到了一些异步操作

    -
    public MappedFile putRequestAndReturnMappedFile(String nextFilePath, String nextNextFilePath, int fileSize) {
    -        int canSubmitRequests = 2;
    -        if (this.messageStore.getMessageStoreConfig().isTransientStorePoolEnable()) {
    -            if (this.messageStore.getMessageStoreConfig().isFastFailIfNoBufferInStorePool()
    -                && BrokerRole.SLAVE != this.messageStore.getMessageStoreConfig().getBrokerRole()) { //if broker is slave, don't fast fail even no buffer in pool
    -                canSubmitRequests = this.messageStore.getTransientStorePool().remainBufferNumbs() - this.requestQueue.size();
    -            }
    -        }
    -				// 将请求放在 requestTable 中
    -        AllocateRequest nextReq = new AllocateRequest(nextFilePath, fileSize);
    -        boolean nextPutOK = this.requestTable.putIfAbsent(nextFilePath, nextReq) == null;
    -        // requestTable 使用了 concurrentHashMap,用文件名作为 key,防止并发
    -        if (nextPutOK) {
    -            // 这里判断了是否可以提交到 TransientStorePool,涉及读写分离,后面再细聊
    -            if (canSubmitRequests <= 0) {
    -                log.warn("[NOTIFYME]TransientStorePool is not enough, so create mapped file error, " +
    -                    "RequestQueueSize : {}, StorePoolSize: {}", this.requestQueue.size(), this.messageStore.getTransientStorePool().remainBufferNumbs());
    -                this.requestTable.remove(nextFilePath);
    -                return null;
    -            }
    -          // 塞到阻塞队列中
    -            boolean offerOK = this.requestQueue.offer(nextReq);
    -            if (!offerOK) {
    -                log.warn("never expected here, add a request to preallocate queue failed");
    -            }
    -            canSubmitRequests--;
    +            NamesrvController controller = createNamesrvController(args);
    +            start(controller);
    +            String tip = "The Name Server boot success. serializeType=" + RemotingCommand.getSerializeTypeConfigInThisServer();
    +            log.info(tip);
    +            System.out.printf("%s%n", tip);
    +            return controller;
    +        } catch (Throwable e) {
    +            e.printStackTrace();
    +            System.exit(-1);
             }
     
    -        // 这里的两个提交我猜测是为了多生成一个 CommitLog,
    -        AllocateRequest nextNextReq = new AllocateRequest(nextNextFilePath, fileSize);
    -        boolean nextNextPutOK = this.requestTable.putIfAbsent(nextNextFilePath, nextNextReq) == null;
    -        if (nextNextPutOK) {
    -            if (canSubmitRequests <= 0) {
    -                log.warn("[NOTIFYME]TransientStorePool is not enough, so skip preallocate mapped file, " +
    -                    "RequestQueueSize : {}, StorePoolSize: {}", this.requestQueue.size(), this.messageStore.getTransientStorePool().remainBufferNumbs());
    -                this.requestTable.remove(nextNextFilePath);
    -            } else {
    -                boolean offerOK = this.requestQueue.offer(nextNextReq);
    -                if (!offerOK) {
    -                    log.warn("never expected here, add a request to preallocate queue failed");
    -                }
    -            }
    -        }
    +        return null;
    +    }
    - if (hasException) { - log.warn(this.getServiceName() + " service has exception. so return null"); +

    入口的代码时这样子,其实主要的逻辑在createNamesrvController和start方法,来看下这两个的实现

    +
    public static NamesrvController createNamesrvController(String[] args) throws IOException, JoranException {
    +        System.setProperty(RemotingCommand.REMOTING_VERSION_KEY, Integer.toString(MQVersion.CURRENT_VERSION));
    +        //PackageConflictDetect.detectFastjson();
    +
    +        Options options = ServerUtil.buildCommandlineOptions(new Options());
    +        commandLine = ServerUtil.parseCmdLine("mqnamesrv", args, buildCommandlineOptions(options), new PosixParser());
    +        if (null == commandLine) {
    +            System.exit(-1);
                 return null;
             }
     
    -        AllocateRequest result = this.requestTable.get(nextFilePath);
    -        try {
    -          // 这里就异步等着
    -            if (result != null) {
    -                boolean waitOK = result.getCountDownLatch().await(waitTimeOut, TimeUnit.MILLISECONDS);
    -                if (!waitOK) {
    -                    log.warn("create mmap timeout " + result.getFilePath() + " " + result.getFileSize());
    -                    return null;
    -                } else {
    -                    this.requestTable.remove(nextFilePath);
    -                    return result.getMappedFile();
    -                }
    -            } else {
    -                log.error("find preallocate mmap failed, this never happen");
    +        final NamesrvConfig namesrvConfig = new NamesrvConfig();
    +        final NettyServerConfig nettyServerConfig = new NettyServerConfig();
    +        nettyServerConfig.setListenPort(9876);
    +        if (commandLine.hasOption('c')) {
    +            String file = commandLine.getOptionValue('c');
    +            if (file != null) {
    +                InputStream in = new BufferedInputStream(new FileInputStream(file));
    +                properties = new Properties();
    +                properties.load(in);
    +                MixAll.properties2Object(properties, namesrvConfig);
    +                MixAll.properties2Object(properties, nettyServerConfig);
    +
    +                namesrvConfig.setConfigStorePath(file);
    +
    +                System.out.printf("load config properties file OK, %s%n", file);
    +                in.close();
                 }
    -        } catch (InterruptedException e) {
    -            log.warn(this.getServiceName() + " service has exception. ", e);
             }
     
    -        return null;
    -    }
    - -

    而真正去执行文件操作的就是 AllocateMappedFileService的 run 方法

    -
    public void run() {
    -        log.info(this.getServiceName() + " service started");
    +        if (commandLine.hasOption('p')) {
    +            InternalLogger console = InternalLoggerFactory.getLogger(LoggerName.NAMESRV_CONSOLE_NAME);
    +            MixAll.printObjectProperties(console, namesrvConfig);
    +            MixAll.printObjectProperties(console, nettyServerConfig);
    +            System.exit(0);
    +        }
     
    -        while (!this.isStopped() && this.mmapOperation()) {
    +        MixAll.properties2Object(ServerUtil.commandLine2Properties(commandLine), namesrvConfig);
     
    +        if (null == namesrvConfig.getRocketmqHome()) {
    +            System.out.printf("Please set the %s variable in your environment to match the location of the RocketMQ installation%n", MixAll.ROCKETMQ_HOME_ENV);
    +            System.exit(-2);
             }
    -        log.info(this.getServiceName() + " service end");
    -    }
    -private boolean mmapOperation() {
    -        boolean isSuccess = false;
    -        AllocateRequest req = null;
    -        try {
    -          // 从阻塞队列里获取请求
    -            req = this.requestQueue.take();
    -            AllocateRequest expectedRequest = this.requestTable.get(req.getFilePath());
    -            if (null == expectedRequest) {
    -                log.warn("this mmap request expired, maybe cause timeout " + req.getFilePath() + " "
    -                    + req.getFileSize());
    -                return true;
    -            }
    -            if (expectedRequest != req) {
    -                log.warn("never expected here,  maybe cause timeout " + req.getFilePath() + " "
    -                    + req.getFileSize() + ", req:" + req + ", expectedRequest:" + expectedRequest);
    -                return true;
    -            }
     
    -            if (req.getMappedFile() == null) {
    -                long beginTime = System.currentTimeMillis();
    +        LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
    +        JoranConfigurator configurator = new JoranConfigurator();
    +        configurator.setContext(lc);
    +        lc.reset();
    +        configurator.doConfigure(namesrvConfig.getRocketmqHome() + "/conf/logback_namesrv.xml");
     
    -                MappedFile mappedFile;
    -                if (messageStore.getMessageStoreConfig().isTransientStorePoolEnable()) {
    -                    try {
    -                      // 通过 transientStorePool 创建
    -                        mappedFile = ServiceLoader.load(MappedFile.class).iterator().next();
    -                        mappedFile.init(req.getFilePath(), req.getFileSize(), messageStore.getTransientStorePool());
    -                    } catch (RuntimeException e) {
    -                        log.warn("Use default implementation.");
    -                      // 默认创建
    -                        mappedFile = new MappedFile(req.getFilePath(), req.getFileSize(), messageStore.getTransientStorePool());
    -                    }
    -                } else {
    -                  // 默认创建
    -                    mappedFile = new MappedFile(req.getFilePath(), req.getFileSize());
    -                }
    +        log = InternalLoggerFactory.getLogger(LoggerName.NAMESRV_LOGGER_NAME);
     
    -                long eclipseTime = UtilAll.computeEclipseTimeMilliseconds(beginTime);
    -                if (eclipseTime > 10) {
    -                    int queueSize = this.requestQueue.size();
    -                    log.warn("create mappedFile spent time(ms) " + eclipseTime + " queue size " + queueSize
    -                        + " " + req.getFilePath() + " " + req.getFileSize());
    -                }
    +        MixAll.printObjectProperties(log, namesrvConfig);
    +        MixAll.printObjectProperties(log, nettyServerConfig);
     
    -                // pre write mappedFile
    -                if (mappedFile.getFileSize() >= this.messageStore.getMessageStoreConfig()
    -                    .getMapedFileSizeCommitLog()
    -                    &&
    -                    this.messageStore.getMessageStoreConfig().isWarmMapedFileEnable()) {
    -                    mappedFile.warmMappedFile(this.messageStore.getMessageStoreConfig().getFlushDiskType(),
    -                        this.messageStore.getMessageStoreConfig().getFlushLeastPagesWhenWarmMapedFile());
    -                }
    +        final NamesrvController controller = new NamesrvController(namesrvConfig, nettyServerConfig);
     
    -                req.setMappedFile(mappedFile);
    -                this.hasException = false;
    -                isSuccess = true;
    -            }
    -        } catch (InterruptedException e) {
    -            log.warn(this.getServiceName() + " interrupted, possibly by shutdown.");
    -            this.hasException = true;
    -            return false;
    -        } catch (IOException e) {
    -            log.warn(this.getServiceName() + " service has exception. ", e);
    -            this.hasException = true;
    -            if (null != req) {
    -                requestQueue.offer(req);
    -                try {
    -                    Thread.sleep(1);
    -                } catch (InterruptedException ignored) {
    -                }
    -            }
    -        } finally {
    -            if (req != null && isSuccess)
    -              // 通知前面等待的
    -                req.getCountDownLatch().countDown();
    +        // remember all configs to prevent discard
    +        controller.getConfiguration().registerConfig(properties);
    +
    +        return controller;
    +    }
    + +

    这个方法里其实主要是读取一些配置啥的,不是很复杂,

    +
    public static NamesrvController start(final NamesrvController controller) throws Exception {
    +
    +        if (null == controller) {
    +            throw new IllegalArgumentException("NamesrvController is null");
             }
    -        return true;
    -    }
    + boolean initResult = controller.initialize(); + if (!initResult) { + controller.shutdown(); + System.exit(-3); + } + Runtime.getRuntime().addShutdownHook(new ShutdownHookThread(log, new Callable<Void>() { + @Override + public Void call() throws Exception { + controller.shutdown(); + return null; + } + })); + controller.start(); -]]>
    - - MQ - RocketMQ - 消息队列 - - - MQ - 消息队列 - RocketMQ - - - - 聊一下 RocketMQ 的顺序消息 - /2021/08/29/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E9%A1%BA%E5%BA%8F%E6%B6%88%E6%81%AF/ - rocketmq 里有一种比较特殊的用法,就是顺序消息,比如订单的生命周期里,在创建,支付,签收等状态轮转中,会发出来对应的消息,这里面就比较需要去保证他们的顺序,当然在处理的业务代码也可以做对应的处理,结合消息重投,但是如果这里消息就能保证顺序性了,那么业务代码就能更好的关注业务代码的处理。

    -

    首先有一种情况是全局的有序,比如对于一个 topic 里就得发送线程保证只有一个,内部的 queue 也只有一个,消费线程也只有一个,这样就能比较容易的保证全局顺序性了,但是这里的问题就是完全限制了性能,不是很现实,在真实场景里很多都是比如对于同一个订单,需要去保证状态的轮转是按照预期的顺序来,而不必要全局的有序性。

    -

    对于这类的有序性,需要在发送和接收方都有对应的处理,在发送消息中,需要去指定 selector,即MessageQueueSelector,能够以固定的方式是分配到对应的 MessageQueue

    -

    比如像 RocketMQ 中的示例

    -
    SendResult sendResult = producer.send(msg, new MessageQueueSelector() {
    -                @Override
    -                public MessageQueue select(List<MessageQueue> mqs, Message msg, Object arg) {
    -                    Long id = (Long) arg;  //message queue is selected by #salesOrderID
    -                    long index = id % mqs.size();
    -                    return mqs.get((int) index);
    -                }
    -            }, orderList.get(i).getOrderId());
    + return controller; + }
    -

    而在消费侧有几个点比较重要,首先我们要保证一个 MessageQueue只被一个消费者消费,消费队列存在broker端,要保证 MessageQueue 只被一个消费者消费,那么消费者在进行消息拉取消费时就必须向mq服务器申请队列锁,消费者申请队列锁的代码存在于RebalanceService消息队列负载的实现代码中。

    -
    List<PullRequest> pullRequestList = new ArrayList<PullRequest>();
    -        for (MessageQueue mq : mqSet) {
    -            if (!this.processQueueTable.containsKey(mq)) {
    -              // 判断是否顺序,如果是顺序消费的,则需要加锁
    -                if (isOrder && !this.lock(mq)) {
    -                    log.warn("doRebalance, {}, add a new mq failed, {}, because lock failed", consumerGroup, mq);
    -                    continue;
    -                }
    +

    这个start里主要关注initialize方法,后面就是一个停机的hook,来看下initialize方法

    +
    public boolean initialize() {
     
    -                this.removeDirtyOffset(mq);
    -                ProcessQueue pq = new ProcessQueue();
    -                long nextOffset = this.computePullFromWhere(mq);
    -                if (nextOffset >= 0) {
    -                    ProcessQueue pre = this.processQueueTable.putIfAbsent(mq, pq);
    -                    if (pre != null) {
    -                        log.info("doRebalance, {}, mq already exists, {}", consumerGroup, mq);
    -                    } else {
    -                        log.info("doRebalance, {}, add a new mq, {}", consumerGroup, mq);
    -                        PullRequest pullRequest = new PullRequest();
    -                        pullRequest.setConsumerGroup(consumerGroup);
    -                        pullRequest.setNextOffset(nextOffset);
    -                        pullRequest.setMessageQueue(mq);
    -                        pullRequest.setProcessQueue(pq);
    -                        pullRequestList.add(pullRequest);
    -                        changed = true;
    -                    }
    -                } else {
    -                    log.warn("doRebalance, {}, add new mq failed, {}", consumerGroup, mq);
    -                }
    +        this.kvConfigManager.load();
    +
    +        this.remotingServer = new NettyRemotingServer(this.nettyServerConfig, this.brokerHousekeepingService);
    +
    +        this.remotingExecutor =
    +            Executors.newFixedThreadPool(nettyServerConfig.getServerWorkerThreads(), new ThreadFactoryImpl("RemotingExecutorThread_"));
    +
    +        this.registerProcessor();
    +
    +        this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +
    +            @Override
    +            public void run() {
    +                NamesrvController.this.routeInfoManager.scanNotActiveBroker();
                 }
    -        }
    + }, 5, 10, TimeUnit.SECONDS); -

    在申请到锁之后会创建 pullRequest 进行消息拉取,消息拉取部分的代码实现在PullMessageService中,

    -
    @Override
    -    public void run() {
    -        log.info(this.getServiceName() + " service started");
    +        this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
     
    -        while (!this.isStopped()) {
    +            @Override
    +            public void run() {
    +                NamesrvController.this.kvConfigManager.printAllPeriodically();
    +            }
    +        }, 1, 10, TimeUnit.MINUTES);
    +
    +        if (TlsSystemConfig.tlsMode != TlsMode.DISABLED) {
    +            // Register a listener to reload SslContext
                 try {
    -                PullRequest pullRequest = this.pullRequestQueue.take();
    -                this.pullMessage(pullRequest);
    -            } catch (InterruptedException ignored) {
    +                fileWatchService = new FileWatchService(
    +                    new String[] {
    +                        TlsSystemConfig.tlsServerCertPath,
    +                        TlsSystemConfig.tlsServerKeyPath,
    +                        TlsSystemConfig.tlsServerTrustCertPath
    +                    },
    +                    new FileWatchService.Listener() {
    +                        boolean certChanged, keyChanged = false;
    +                        @Override
    +                        public void onChanged(String path) {
    +                            if (path.equals(TlsSystemConfig.tlsServerTrustCertPath)) {
    +                                log.info("The trust certificate changed, reload the ssl context");
    +                                reloadServerSslContext();
    +                            }
    +                            if (path.equals(TlsSystemConfig.tlsServerCertPath)) {
    +                                certChanged = true;
    +                            }
    +                            if (path.equals(TlsSystemConfig.tlsServerKeyPath)) {
    +                                keyChanged = true;
    +                            }
    +                            if (certChanged && keyChanged) {
    +                                log.info("The certificate and private key changed, reload the ssl context");
    +                                certChanged = keyChanged = false;
    +                                reloadServerSslContext();
    +                            }
    +                        }
    +                        private void reloadServerSslContext() {
    +                            ((NettyRemotingServer) remotingServer).loadSslContext();
    +                        }
    +                    });
                 } catch (Exception e) {
    -                log.error("Pull Message Service Run Method exception", e);
    +                log.warn("FileWatchService created error, can't load the certificate dynamically");
                 }
             }
     
    -        log.info(this.getServiceName() + " service end");
    -    }
    + return true; + }
    -

    消息拉取完后,需要提交到ConsumeMessageService中进行消费,顺序消费的实现为ConsumeMessageOrderlyService,提交消息进行消费的方法为ConsumeMessageOrderlyService#submitConsumeRequest,具体实现如下:

    -
    @Override
    -public void submitConsumeRequest(
    -    final List<MessageExt> msgs,
    -    final ProcessQueue processQueue,
    -    final MessageQueue messageQueue,
    -    final boolean dispathToConsume) {
    -    if (dispathToConsume) {
    -        ConsumeRequest consumeRequest = new ConsumeRequest(processQueue, messageQueue);
    -        this.consumeExecutor.submit(consumeRequest);
    -    }
    -}
    +

    这里的kvConfigManager主要是来加载NameServer的配置参数,存到org.apache.rocketmq.namesrv.kvconfig.KVConfigManager#configTable中,然后是以BrokerHousekeepingService对象为参数初始化NettyRemotingServer对象,BrokerHousekeepingService对象作为该Netty连接中Socket链接的监听器(ChannelEventListener);监听与Broker建立的渠道的状态(空闲、关闭、异常三个状态),并调用BrokerHousekeepingService的相应onChannel方法。其中渠道的空闲、关闭、异常状态均调用RouteInfoManager.onChannelDestory方法处理。这个BrokerHousekeepingService可以字面化地理解为broker的管家服务,这个类内部三个状态方法其实都是调用的org.apache.rocketmq.namesrv.NamesrvController#getRouteInfoManager方法,而这个RouteInfoManager里面的对象有这些

    +
    public class RouteInfoManager {
    +    private static final InternalLogger log = InternalLoggerFactory.getLogger(LoggerName.NAMESRV_LOGGER_NAME);
    +    private final static long BROKER_CHANNEL_EXPIRED_TIME = 1000 * 60 * 2;
    +    private final ReadWriteLock lock = new ReentrantReadWriteLock();
    +  // topic与queue的对应关系
    +    private final HashMap<String/* topic */, List<QueueData>> topicQueueTable;
    +  // Broker名称与broker属性的map
    +    private final HashMap<String/* brokerName */, BrokerData> brokerAddrTable;
    +  // 集群与broker集合的对应关系
    +    private final HashMap<String/* clusterName */, Set<String/* brokerName */>> clusterAddrTable;
    +  // 活跃的broker信息
    +    private final HashMap<String/* brokerAddr */, BrokerLiveInfo> brokerLiveTable;
    +  // Broker地址与过滤器
    +    private final HashMap<String/* brokerAddr */, List<String>/* Filter Server */> filterServerTable;
    -

    构建了一个ConsumeRequest对象,它是个实现了 runnable 接口的类,并提交给了线程池来并行消费,看下顺序消费的ConsumeRequest的run方法实现:

    -
    @Override
    -        public void run() {
    -            if (this.processQueue.isDropped()) {
    -                log.warn("run, the message queue not be able to consume, because it's dropped. {}", this.messageQueue);
    -                return;
    +

    然后接下去就是初始化了一个线程池,然后注册默认的处理类this.registerProcessor();默认都是这个处理器去处理请求 org.apache.rocketmq.namesrv.processor.DefaultRequestProcessor#DefaultRequestProcessor然后是初始化两个定时任务

    +

    第一是每10秒检查一遍Broker的状态的定时任务,调用scanNotActiveBroker方法;遍历brokerLiveTable集合,查看每个broker的最后更新时间(BrokerLiveInfo.lastUpdateTimestamp)是否超过2分钟,若超过则关闭该broker的渠道并调用RouteInfoManager.onChannelDestory方法清理RouteInfoManager类的topicQueueTable、brokerAddrTable、clusterAddrTable、filterServerTable成员变量。

    +
    this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +
    +            @Override
    +            public void run() {
    +                NamesrvController.this.routeInfoManager.scanNotActiveBroker();
                 }
    -						// 获得 Consumer 消息队列锁,即单个线程独占
    -            final Object objLock = messageQueueLock.fetchLockObject(this.messageQueue);
    -            synchronized (objLock) {
    -              // (广播模式) 或者 (集群模式 && Broker消息队列锁有效)
    -                if (MessageModel.BROADCASTING.equals(ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.messageModel())
    -                    || (this.processQueue.isLocked() && !this.processQueue.isLockExpired())) {
    -                    final long beginTime = System.currentTimeMillis();
    -                  // 循环
    -                    for (boolean continueConsume = true; continueConsume; ) {
    -                        if (this.processQueue.isDropped()) {
    -                            log.warn("the message queue not be able to consume, because it's dropped. {}", this.messageQueue);
    -                            break;
    -                        }
    +        }, 5, 10, TimeUnit.SECONDS);
    +public void scanNotActiveBroker() {
    +        Iterator<Entry<String, BrokerLiveInfo>> it = this.brokerLiveTable.entrySet().iterator();
    +        while (it.hasNext()) {
    +            Entry<String, BrokerLiveInfo> next = it.next();
    +            long last = next.getValue().getLastUpdateTimestamp();
    +            if ((last + BROKER_CHANNEL_EXPIRED_TIME) < System.currentTimeMillis()) {
    +                RemotingUtil.closeChannel(next.getValue().getChannel());
    +                it.remove();
    +                log.warn("The broker channel expired, {} {}ms", next.getKey(), BROKER_CHANNEL_EXPIRED_TIME);
    +                this.onChannelDestroy(next.getKey(), next.getValue().getChannel());
    +            }
    +        }
    +    }
     
    -                      // 消息队列分布式锁未锁定,提交延迟获得锁并消费请求
    -                        if (MessageModel.CLUSTERING.equals(ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.messageModel())
    -                            && !this.processQueue.isLocked()) {
    -                            log.warn("the message queue not locked, so consume later, {}", this.messageQueue);
    -                            ConsumeMessageOrderlyService.this.tryLockLaterAndReconsume(this.messageQueue, this.processQueue, 10);
    +    public void onChannelDestroy(String remoteAddr, Channel channel) {
    +        String brokerAddrFound = null;
    +        if (channel != null) {
    +            try {
    +                try {
    +                    this.lock.readLock().lockInterruptibly();
    +                    Iterator<Entry<String, BrokerLiveInfo>> itBrokerLiveTable =
    +                        this.brokerLiveTable.entrySet().iterator();
    +                    while (itBrokerLiveTable.hasNext()) {
    +                        Entry<String, BrokerLiveInfo> entry = itBrokerLiveTable.next();
    +                        if (entry.getValue().getChannel() == channel) {
    +                            brokerAddrFound = entry.getKey();
                                 break;
                             }
    +                    }
    +                } finally {
    +                    this.lock.readLock().unlock();
    +                }
    +            } catch (Exception e) {
    +                log.error("onChannelDestroy Exception", e);
    +            }
    +        }
     
    -                      // 消息队列分布式锁已经过期,提交延迟获得锁并消费请求
    -                        if (MessageModel.CLUSTERING.equals(ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.messageModel())
    -                            && this.processQueue.isLockExpired()) {
    -                            log.warn("the message queue lock expired, so consume later, {}", this.messageQueue);
    -                            ConsumeMessageOrderlyService.this.tryLockLaterAndReconsume(this.messageQueue, this.processQueue, 10);
    -                            break;
    -                        }
    -												// 当前周期消费时间超过连续时长,默认:60s,提交延迟消费请求。默认情况下,每消费1分钟休息10ms。
    -                        long interval = System.currentTimeMillis() - beginTime;
    -                        if (interval > MAX_TIME_CONSUME_CONTINUOUSLY) {
    -                            ConsumeMessageOrderlyService.this.submitConsumeRequestLater(processQueue, messageQueue, 10);
    -                            break;
    -                        }
    -												// 获取消费消息。此处和并发消息请求不同,并发消息请求已经带了消费哪些消息。
    -                        final int consumeBatchSize =
    -                            ConsumeMessageOrderlyService.this.defaultMQPushConsumer.getConsumeMessageBatchMaxSize();
    +        if (null == brokerAddrFound) {
    +            brokerAddrFound = remoteAddr;
    +        } else {
    +            log.info("the broker's channel destroyed, {}, clean it's data structure at once", brokerAddrFound);
    +        }
     
    -                        List<MessageExt> msgs = this.processQueue.takeMessags(consumeBatchSize);
    -                        defaultMQPushConsumerImpl.resetRetryAndNamespace(msgs, defaultMQPushConsumer.getConsumerGroup());
    -                        if (!msgs.isEmpty()) {
    -                            final ConsumeOrderlyContext context = new ConsumeOrderlyContext(this.messageQueue);
    +        if (brokerAddrFound != null && brokerAddrFound.length() > 0) {
     
    -                            ConsumeOrderlyStatus status = null;
    +            try {
    +                try {
    +                    this.lock.writeLock().lockInterruptibly();
    +                    this.brokerLiveTable.remove(brokerAddrFound);
    +                    this.filterServerTable.remove(brokerAddrFound);
    +                    String brokerNameFound = null;
    +                    boolean removeBrokerName = false;
    +                    Iterator<Entry<String, BrokerData>> itBrokerAddrTable =
    +                        this.brokerAddrTable.entrySet().iterator();
    +                    while (itBrokerAddrTable.hasNext() && (null == brokerNameFound)) {
    +                        BrokerData brokerData = itBrokerAddrTable.next().getValue();
     
    -                            ConsumeMessageContext consumeMessageContext = null;
    -                            if (ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.hasHook()) {
    -                                consumeMessageContext = new ConsumeMessageContext();
    -                                consumeMessageContext
    -                                    .setConsumerGroup(ConsumeMessageOrderlyService.this.defaultMQPushConsumer.getConsumerGroup());
    -                                consumeMessageContext.setNamespace(defaultMQPushConsumer.getNamespace());
    -                                consumeMessageContext.setMq(messageQueue);
    -                                consumeMessageContext.setMsgList(msgs);
    -                                consumeMessageContext.setSuccess(false);
    -                                // init the consume context type
    -                                consumeMessageContext.setProps(new HashMap<String, String>());
    -                                ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.executeHookBefore(consumeMessageContext);
    +                        Iterator<Entry<Long, String>> it = brokerData.getBrokerAddrs().entrySet().iterator();
    +                        while (it.hasNext()) {
    +                            Entry<Long, String> entry = it.next();
    +                            Long brokerId = entry.getKey();
    +                            String brokerAddr = entry.getValue();
    +                            if (brokerAddr.equals(brokerAddrFound)) {
    +                                brokerNameFound = brokerData.getBrokerName();
    +                                it.remove();
    +                                log.info("remove brokerAddr[{}, {}] from brokerAddrTable, because channel destroyed",
    +                                    brokerId, brokerAddr);
    +                                break;
                                 }
    -														// 执行消费
    -                            long beginTimestamp = System.currentTimeMillis();
    -                            ConsumeReturnType returnType = ConsumeReturnType.SUCCESS;
    -                            boolean hasException = false;
    -                            try {
    -                                this.processQueue.getLockConsume().lock(); // 锁定处理队列
    -                                if (this.processQueue.isDropped()) {
    -                                    log.warn("consumeMessage, the message queue not be able to consume, because it's dropped. {}",
    -                                        this.messageQueue);
    -                                    break;
    -                                }
    +                        }
     
    -                                status = messageListener.consumeMessage(Collections.unmodifiableList(msgs), context);
    -                            } catch (Throwable e) {
    -                                log.warn("consumeMessage exception: {} Group: {} Msgs: {} MQ: {}",
    -                                    RemotingHelper.exceptionSimpleDesc(e),
    -                                    ConsumeMessageOrderlyService.this.consumerGroup,
    -                                    msgs,
    -                                    messageQueue);
    -                                hasException = true;
    -                            } finally {
    -                                this.processQueue.getLockConsume().unlock();  // 解锁
    -                            }
    +                        if (brokerData.getBrokerAddrs().isEmpty()) {
    +                            removeBrokerName = true;
    +                            itBrokerAddrTable.remove();
    +                            log.info("remove brokerName[{}] from brokerAddrTable, because channel destroyed",
    +                                brokerData.getBrokerName());
    +                        }
    +                    }
     
    -                            if (null == status
    -                                || ConsumeOrderlyStatus.ROLLBACK == status
    -                                || ConsumeOrderlyStatus.SUSPEND_CURRENT_QUEUE_A_MOMENT == status) {
    -                                log.warn("consumeMessage Orderly return not OK, Group: {} Msgs: {} MQ: {}",
    -                                    ConsumeMessageOrderlyService.this.consumerGroup,
    -                                    msgs,
    -                                    messageQueue);
    -                            }
    +                    if (brokerNameFound != null && removeBrokerName) {
    +                        Iterator<Entry<String, Set<String>>> it = this.clusterAddrTable.entrySet().iterator();
    +                        while (it.hasNext()) {
    +                            Entry<String, Set<String>> entry = it.next();
    +                            String clusterName = entry.getKey();
    +                            Set<String> brokerNames = entry.getValue();
    +                            boolean removed = brokerNames.remove(brokerNameFound);
    +                            if (removed) {
    +                                log.info("remove brokerName[{}], clusterName[{}] from clusterAddrTable, because channel destroyed",
    +                                    brokerNameFound, clusterName);
     
    -                            long consumeRT = System.currentTimeMillis() - beginTimestamp;
    -                            if (null == status) {
    -                                if (hasException) {
    -                                    returnType = ConsumeReturnType.EXCEPTION;
    -                                } else {
    -                                    returnType = ConsumeReturnType.RETURNNULL;
    +                                if (brokerNames.isEmpty()) {
    +                                    log.info("remove the clusterName[{}] from clusterAddrTable, because channel destroyed and no broker in this cluster",
    +                                        clusterName);
    +                                    it.remove();
                                     }
    -                            } else if (consumeRT >= defaultMQPushConsumer.getConsumeTimeout() * 60 * 1000) {
    -                                returnType = ConsumeReturnType.TIME_OUT;
    -                            } else if (ConsumeOrderlyStatus.SUSPEND_CURRENT_QUEUE_A_MOMENT == status) {
    -                                returnType = ConsumeReturnType.FAILED;
    -                            } else if (ConsumeOrderlyStatus.SUCCESS == status) {
    -                                returnType = ConsumeReturnType.SUCCESS;
    -                            }
     
    -                            if (ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.hasHook()) {
    -                                consumeMessageContext.getProps().put(MixAll.CONSUME_CONTEXT_TYPE, returnType.name());
    +                                break;
                                 }
    +                        }
    +                    }
     
    -                            if (null == status) {
    -                                status = ConsumeOrderlyStatus.SUSPEND_CURRENT_QUEUE_A_MOMENT;
    -                            }
    +                    if (removeBrokerName) {
    +                        Iterator<Entry<String, List<QueueData>>> itTopicQueueTable =
    +                            this.topicQueueTable.entrySet().iterator();
    +                        while (itTopicQueueTable.hasNext()) {
    +                            Entry<String, List<QueueData>> entry = itTopicQueueTable.next();
    +                            String topic = entry.getKey();
    +                            List<QueueData> queueDataList = entry.getValue();
     
    -                            if (ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.hasHook()) {
    -                                consumeMessageContext.setStatus(status.toString());
    -                                consumeMessageContext
    -                                    .setSuccess(ConsumeOrderlyStatus.SUCCESS == status || ConsumeOrderlyStatus.COMMIT == status);
    -                                ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.executeHookAfter(consumeMessageContext);
    +                            Iterator<QueueData> itQueueData = queueDataList.iterator();
    +                            while (itQueueData.hasNext()) {
    +                                QueueData queueData = itQueueData.next();
    +                                if (queueData.getBrokerName().equals(brokerNameFound)) {
    +                                    itQueueData.remove();
    +                                    log.info("remove topic[{} {}], from topicQueueTable, because channel destroyed",
    +                                        topic, queueData);
    +                                }
                                 }
     
    -                            ConsumeMessageOrderlyService.this.getConsumerStatsManager()
    -                                .incConsumeRT(ConsumeMessageOrderlyService.this.consumerGroup, messageQueue.getTopic(), consumeRT);
    -
    -                            continueConsume = ConsumeMessageOrderlyService.this.processConsumeResult(msgs, status, context, this);
    -                        } else {
    -                            continueConsume = false;
    +                            if (queueDataList.isEmpty()) {
    +                                itTopicQueueTable.remove();
    +                                log.info("remove topic[{}] all queue, from topicQueueTable, because channel destroyed",
    +                                    topic);
    +                            }
                             }
                         }
    -                } else {
    -                    if (this.processQueue.isDropped()) {
    -                        log.warn("the message queue not be able to consume, because it's dropped. {}", this.messageQueue);
    -                        return;
    -                    }
    -
    -                    ConsumeMessageOrderlyService.this.tryLockLaterAndReconsume(this.messageQueue, this.processQueue, 100);
    +                } finally {
    +                    this.lock.writeLock().unlock();
                     }
    +            } catch (Exception e) {
    +                log.error("onChannelDestroy Exception", e);
                 }
    -        }
    + } + }
    -

    获取到锁对象后,使用synchronized尝试申请线程级独占锁。

    -

    如果加锁成功,同一时刻只有一个线程进行消息消费。

    -

    如果加锁失败,会延迟100ms重新尝试向broker端申请锁定messageQueue,锁定成功后重新提交消费请求

    -

    创建消息拉取任务时,消息客户端向broker端申请锁定MessageQueue,使得一个MessageQueue同一个时刻只能被一个消费客户端消费。

    -

    消息消费时,多线程针对同一个消息队列的消费先尝试使用synchronized申请独占锁,加锁成功才能进行消费,使得一个MessageQueue同一个时刻只能被一个消费客户端中一个线程消费。
    这里其实还有很重要的一点是对processQueue的加锁,这里其实是保证了在 rebalance的过程中如果 processQueue 被分配给了另一个 consumer,但是当前已经被我这个 consumer 再消费,但是没提交,就有可能出现被两个消费者消费,所以得进行加锁保证不受 rebalance 影响。

    -]]>
    - - MQ - RocketMQ - 消息队列 - - - MQ - 消息队列 - RocketMQ - -
    - - 聊一下 RocketMQ 的消息存储四 - /2021/10/17/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E5%9B%9B/ - IndexFile 结构 hash 结构能够通过 key 寻找到对应在 CommitLog 中的位置

    -

    IndexFile 的构建则是分发给这个进行处理

    -
    class CommitLogDispatcherBuildIndex implements CommitLogDispatcher {
    +

    第二个是每10分钟打印一次NameServer的配置参数。即KVConfigManager.configTable变量的内容。

    +
    this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
     
    -    @Override
    -    public void dispatch(DispatchRequest request) {
    -        if (DefaultMessageStore.this.messageStoreConfig.isMessageIndexEnable()) {
    -            DefaultMessageStore.this.indexService.buildIndex(request);
    -        }
    -    }
    -}
    -public void buildIndex(DispatchRequest req) {
    -        IndexFile indexFile = retryGetAndCreateIndexFile();
    -        if (indexFile != null) {
    -            long endPhyOffset = indexFile.getEndPhyOffset();
    -            DispatchRequest msg = req;
    -            String topic = msg.getTopic();
    -            String keys = msg.getKeys();
    -            if (msg.getCommitLogOffset() < endPhyOffset) {
    -                return;
    +            @Override
    +            public void run() {
    +                NamesrvController.this.kvConfigManager.printAllPeriodically();
                 }
    +        }, 1, 10, TimeUnit.MINUTES);
    - final int tranType = MessageSysFlag.getTransactionValue(msg.getSysFlag()); - switch (tranType) { - case MessageSysFlag.TRANSACTION_NOT_TYPE: - case MessageSysFlag.TRANSACTION_PREPARED_TYPE: - case MessageSysFlag.TRANSACTION_COMMIT_TYPE: - break; - case MessageSysFlag.TRANSACTION_ROLLBACK_TYPE: - return; - } +

    然后这个初始化就差不多完成了,后面只需要把remotingServer start一下就好了

    +

    处理请求

    直接上代码,其实主体是swtich case去判断

    +
    @Override
    +    public RemotingCommand processRequest(ChannelHandlerContext ctx,
    +        RemotingCommand request) throws RemotingCommandException {
     
    -            if (req.getUniqKey() != null) {
    -                indexFile = putKey(indexFile, msg, buildKey(topic, req.getUniqKey()));
    -                if (indexFile == null) {
    -                    log.error("putKey error commitlog {} uniqkey {}", req.getCommitLogOffset(), req.getUniqKey());
    -                    return;
    -                }
    -            }
    +        if (ctx != null) {
    +            log.debug("receive request, {} {} {}",
    +                request.getCode(),
    +                RemotingHelper.parseChannelRemoteAddr(ctx.channel()),
    +                request);
    +        }
     
    -            if (keys != null && keys.length() > 0) {
    -                String[] keyset = keys.split(MessageConst.KEY_SEPARATOR);
    -                for (int i = 0; i < keyset.length; i++) {
    -                    String key = keyset[i];
    -                    if (key.length() > 0) {
    -                        indexFile = putKey(indexFile, msg, buildKey(topic, key));
    -                        if (indexFile == null) {
    -                            log.error("putKey error commitlog {} uniqkey {}", req.getCommitLogOffset(), req.getUniqKey());
    -                            return;
    -                        }
    -                    }
    +
    +        switch (request.getCode()) {
    +            case RequestCode.PUT_KV_CONFIG:
    +                return this.putKVConfig(ctx, request);
    +            case RequestCode.GET_KV_CONFIG:
    +                return this.getKVConfig(ctx, request);
    +            case RequestCode.DELETE_KV_CONFIG:
    +                return this.deleteKVConfig(ctx, request);
    +            case RequestCode.QUERY_DATA_VERSION:
    +                return queryBrokerTopicConfig(ctx, request);
    +            case RequestCode.REGISTER_BROKER:
    +                Version brokerVersion = MQVersion.value2Version(request.getVersion());
    +                if (brokerVersion.ordinal() >= MQVersion.Version.V3_0_11.ordinal()) {
    +                    return this.registerBrokerWithFilterServer(ctx, request);
    +                } else {
    +                    return this.registerBroker(ctx, request);
                     }
    -            }
    -        } else {
    -            log.error("build index error, stop building index");
    +            case RequestCode.UNREGISTER_BROKER:
    +                return this.unregisterBroker(ctx, request);
    +            case RequestCode.GET_ROUTEINTO_BY_TOPIC:
    +                return this.getRouteInfoByTopic(ctx, request);
    +            case RequestCode.GET_BROKER_CLUSTER_INFO:
    +                return this.getBrokerClusterInfo(ctx, request);
    +            case RequestCode.WIPE_WRITE_PERM_OF_BROKER:
    +                return this.wipeWritePermOfBroker(ctx, request);
    +            case RequestCode.GET_ALL_TOPIC_LIST_FROM_NAMESERVER:
    +                return getAllTopicListFromNameserver(ctx, request);
    +            case RequestCode.DELETE_TOPIC_IN_NAMESRV:
    +                return deleteTopicInNamesrv(ctx, request);
    +            case RequestCode.GET_KVLIST_BY_NAMESPACE:
    +                return this.getKVListByNamespace(ctx, request);
    +            case RequestCode.GET_TOPICS_BY_CLUSTER:
    +                return this.getTopicsByCluster(ctx, request);
    +            case RequestCode.GET_SYSTEM_TOPIC_LIST_FROM_NS:
    +                return this.getSystemTopicListFromNs(ctx, request);
    +            case RequestCode.GET_UNIT_TOPIC_LIST:
    +                return this.getUnitTopicList(ctx, request);
    +            case RequestCode.GET_HAS_UNIT_SUB_TOPIC_LIST:
    +                return this.getHasUnitSubTopicList(ctx, request);
    +            case RequestCode.GET_HAS_UNIT_SUB_UNUNIT_TOPIC_LIST:
    +                return this.getHasUnitSubUnUnitTopicList(ctx, request);
    +            case RequestCode.UPDATE_NAMESRV_CONFIG:
    +                return this.updateConfig(ctx, request);
    +            case RequestCode.GET_NAMESRV_CONFIG:
    +                return this.getConfig(ctx, request);
    +            default:
    +                break;
             }
    -    }
    + return null; + }
    + +

    以broker注册为例,

    +
    case RequestCode.REGISTER_BROKER:
    +                Version brokerVersion = MQVersion.value2Version(request.getVersion());
    +                if (brokerVersion.ordinal() >= MQVersion.Version.V3_0_11.ordinal()) {
    +                    return this.registerBrokerWithFilterServer(ctx, request);
    +                } else {
    +                    return this.registerBroker(ctx, request);
    +                }
    + +

    做了个简单的版本管理,我们看下前面一个的代码

    +
    public RemotingCommand registerBrokerWithFilterServer(ChannelHandlerContext ctx, RemotingCommand request)
    +    throws RemotingCommandException {
    +    final RemotingCommand response = RemotingCommand.createResponseCommand(RegisterBrokerResponseHeader.class);
    +    final RegisterBrokerResponseHeader responseHeader = (RegisterBrokerResponseHeader) response.readCustomHeader();
    +    final RegisterBrokerRequestHeader requestHeader =
    +        (RegisterBrokerRequestHeader) request.decodeCommandCustomHeader(RegisterBrokerRequestHeader.class);
    +
    +    if (!checksum(ctx, request, requestHeader)) {
    +        response.setCode(ResponseCode.SYSTEM_ERROR);
    +        response.setRemark("crc32 not match");
    +        return response;
    +    }
    +
    +    RegisterBrokerBody registerBrokerBody = new RegisterBrokerBody();
    +
    +    if (request.getBody() != null) {
    +        try {
    +            registerBrokerBody = RegisterBrokerBody.decode(request.getBody(), requestHeader.isCompressed());
    +        } catch (Exception e) {
    +            throw new RemotingCommandException("Failed to decode RegisterBrokerBody", e);
    +        }
    +    } else {
    +        registerBrokerBody.getTopicConfigSerializeWrapper().getDataVersion().setCounter(new AtomicLong(0));
    +        registerBrokerBody.getTopicConfigSerializeWrapper().getDataVersion().setTimestamp(0);
    +    }
    +
    +    RegisterBrokerResult result = this.namesrvController.getRouteInfoManager().registerBroker(
    +        requestHeader.getClusterName(),
    +        requestHeader.getBrokerAddr(),
    +        requestHeader.getBrokerName(),
    +        requestHeader.getBrokerId(),
    +        requestHeader.getHaServerAddr(),
    +        registerBrokerBody.getTopicConfigSerializeWrapper(),
    +        registerBrokerBody.getFilterServerList(),
    +        ctx.channel());
     
    -

    配置的数量

    -
    private boolean messageIndexEnable = true;
    -private int maxHashSlotNum = 5000000;
    -private int maxIndexNum = 5000000 * 4;
    + responseHeader.setHaServerAddr(result.getHaServerAddr()); + responseHeader.setMasterAddr(result.getMasterAddr()); -

    最核心的其实是 IndexFile 的结构和如何写入

    -
    public boolean putKey(final String key, final long phyOffset, final long storeTimestamp) {
    -        if (this.indexHeader.getIndexCount() < this.indexNum) {
    -          // 获取 key 的 hash
    -            int keyHash = indexKeyHashMethod(key);
    -          // 计算属于哪个 slot
    -            int slotPos = keyHash % this.hashSlotNum;
    -          // 计算 slot 位置 因为结构是有个 indexHead,主要是分为三段 header,slot 和 index
    -            int absSlotPos = IndexHeader.INDEX_HEADER_SIZE + slotPos * hashSlotSize;
    +    byte[] jsonValue = this.namesrvController.getKvConfigManager().getKVListByNamespace(NamesrvUtil.NAMESPACE_ORDER_TOPIC_CONFIG);
    +    response.setBody(jsonValue);
     
    -            FileLock fileLock = null;
    +    response.setCode(ResponseCode.SUCCESS);
    +    response.setRemark(null);
    +    return response;
    +}
    +

    可以看到主要的逻辑还是在org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#registerBroker这个方法里

    +
    public RegisterBrokerResult registerBroker(
    +        final String clusterName,
    +        final String brokerAddr,
    +        final String brokerName,
    +        final long brokerId,
    +        final String haServerAddr,
    +        final TopicConfigSerializeWrapper topicConfigWrapper,
    +        final List<String> filterServerList,
    +        final Channel channel) {
    +        RegisterBrokerResult result = new RegisterBrokerResult();
    +        try {
                 try {
    +                this.lock.writeLock().lockInterruptibly();
     
    -                // fileLock = this.fileChannel.lock(absSlotPos, hashSlotSize,
    -                // false);
    -                int slotValue = this.mappedByteBuffer.getInt(absSlotPos);
    -                if (slotValue <= invalidIndex || slotValue > this.indexHeader.getIndexCount()) {
    -                    slotValue = invalidIndex;
    +              // 更新这个clusterAddrTable
    +                Set<String> brokerNames = this.clusterAddrTable.get(clusterName);
    +                if (null == brokerNames) {
    +                    brokerNames = new HashSet<String>();
    +                    this.clusterAddrTable.put(clusterName, brokerNames);
                     }
    +                brokerNames.add(brokerName);
     
    -                long timeDiff = storeTimestamp - this.indexHeader.getBeginTimestamp();
    -
    -                timeDiff = timeDiff / 1000;
    +                boolean registerFirst = false;
     
    -                if (this.indexHeader.getBeginTimestamp() <= 0) {
    -                    timeDiff = 0;
    -                } else if (timeDiff > Integer.MAX_VALUE) {
    -                    timeDiff = Integer.MAX_VALUE;
    -                } else if (timeDiff < 0) {
    -                    timeDiff = 0;
    +              // 更新brokerAddrTable
    +                BrokerData brokerData = this.brokerAddrTable.get(brokerName);
    +                if (null == brokerData) {
    +                    registerFirst = true;
    +                    brokerData = new BrokerData(clusterName, brokerName, new HashMap<Long, String>());
    +                    this.brokerAddrTable.put(brokerName, brokerData);
    +                }
    +                Map<Long, String> brokerAddrsMap = brokerData.getBrokerAddrs();
    +                //Switch slave to master: first remove <1, IP:PORT> in namesrv, then add <0, IP:PORT>
    +                //The same IP:PORT must only have one record in brokerAddrTable
    +                Iterator<Entry<Long, String>> it = brokerAddrsMap.entrySet().iterator();
    +                while (it.hasNext()) {
    +                    Entry<Long, String> item = it.next();
    +                    if (null != brokerAddr && brokerAddr.equals(item.getValue()) && brokerId != item.getKey()) {
    +                        it.remove();
    +                    }
                     }
     
    -              // 计算索引存放位置,头部 + slot 数量 * slot 大小 + 已有的 index 数量 + index 大小
    -                int absIndexPos =
    -                    IndexHeader.INDEX_HEADER_SIZE + this.hashSlotNum * hashSlotSize
    -                        + this.indexHeader.getIndexCount() * indexSize;
    -							
    -                this.mappedByteBuffer.putInt(absIndexPos, keyHash);
    -                this.mappedByteBuffer.putLong(absIndexPos + 4, phyOffset);
    -                this.mappedByteBuffer.putInt(absIndexPos + 4 + 8, (int) timeDiff);
    -                this.mappedByteBuffer.putInt(absIndexPos + 4 + 8 + 4, slotValue);
    +                String oldAddr = brokerData.getBrokerAddrs().put(brokerId, brokerAddr);
    +                registerFirst = registerFirst || (null == oldAddr);
     
    -              // 存放的是数量位移,不是绝对位置
    -                this.mappedByteBuffer.putInt(absSlotPos, this.indexHeader.getIndexCount());
    +              // 更新了org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#topicQueueTable中的数据
    +                if (null != topicConfigWrapper
    +                    && MixAll.MASTER_ID == brokerId) {
    +                    if (this.isBrokerTopicConfigChanged(brokerAddr, topicConfigWrapper.getDataVersion())
    +                        || registerFirst) {
    +                        ConcurrentMap<String, TopicConfig> tcTable =
    +                            topicConfigWrapper.getTopicConfigTable();
    +                        if (tcTable != null) {
    +                            for (Map.Entry<String, TopicConfig> entry : tcTable.entrySet()) {
    +                                this.createAndUpdateQueueData(brokerName, entry.getValue());
    +                            }
    +                        }
    +                    }
    +                }
     
    -                if (this.indexHeader.getIndexCount() <= 1) {
    -                    this.indexHeader.setBeginPhyOffset(phyOffset);
    -                    this.indexHeader.setBeginTimestamp(storeTimestamp);
    +              // 更新活跃broker信息
    +                BrokerLiveInfo prevBrokerLiveInfo = this.brokerLiveTable.put(brokerAddr,
    +                    new BrokerLiveInfo(
    +                        System.currentTimeMillis(),
    +                        topicConfigWrapper.getDataVersion(),
    +                        channel,
    +                        haServerAddr));
    +                if (null == prevBrokerLiveInfo) {
    +                    log.info("new broker registered, {} HAServer: {}", brokerAddr, haServerAddr);
                     }
     
    -                this.indexHeader.incHashSlotCount();
    -                this.indexHeader.incIndexCount();
    -                this.indexHeader.setEndPhyOffset(phyOffset);
    -                this.indexHeader.setEndTimestamp(storeTimestamp);
    +              // 处理filter
    +                if (filterServerList != null) {
    +                    if (filterServerList.isEmpty()) {
    +                        this.filterServerTable.remove(brokerAddr);
    +                    } else {
    +                        this.filterServerTable.put(brokerAddr, filterServerList);
    +                    }
    +                }
     
    -                return true;
    -            } catch (Exception e) {
    -                log.error("putKey exception, Key: " + key + " KeyHashCode: " + key.hashCode(), e);
    -            } finally {
    -                if (fileLock != null) {
    -                    try {
    -                        fileLock.release();
    -                    } catch (IOException e) {
    -                        log.error("Failed to release the lock", e);
    +              // 当当前broker非master时返回master信息
    +                if (MixAll.MASTER_ID != brokerId) {
    +                    String masterAddr = brokerData.getBrokerAddrs().get(MixAll.MASTER_ID);
    +                    if (masterAddr != null) {
    +                        BrokerLiveInfo brokerLiveInfo = this.brokerLiveTable.get(masterAddr);
    +                        if (brokerLiveInfo != null) {
    +                            result.setHaServerAddr(brokerLiveInfo.getHaServerAddr());
    +                            result.setMasterAddr(masterAddr);
    +                        }
                         }
                     }
    +            } finally {
    +                this.lock.writeLock().unlock();
                 }
    -        } else {
    -            log.warn("Over index file capacity: index count = " + this.indexHeader.getIndexCount()
    -                + "; index max num = " + this.indexNum);
    +        } catch (Exception e) {
    +            log.error("registerBroker Exception", e);
             }
     
    -        return false;
    -    }
    + return result; + }
    -

    具体可以看一下这个简略的示意图

    +

    这个是注册 broker 的逻辑,再看下根据 topic 获取 broker 信息和 topic 信息,org.apache.rocketmq.namesrv.processor.DefaultRequestProcessor#getRouteInfoByTopic 主要是这个方法的逻辑

    +
    public RemotingCommand getRouteInfoByTopic(ChannelHandlerContext ctx,
    +        RemotingCommand request) throws RemotingCommandException {
    +        final RemotingCommand response = RemotingCommand.createResponseCommand(null);
    +        final GetRouteInfoRequestHeader requestHeader =
    +            (GetRouteInfoRequestHeader) request.decodeCommandCustomHeader(GetRouteInfoRequestHeader.class);
    +
    +        TopicRouteData topicRouteData = this.namesrvController.getRouteInfoManager().pickupTopicRouteData(requestHeader.getTopic());
    +
    +        if (topicRouteData != null) {
    +            if (this.namesrvController.getNamesrvConfig().isOrderMessageEnable()) {
    +                String orderTopicConf =
    +                    this.namesrvController.getKvConfigManager().getKVConfig(NamesrvUtil.NAMESPACE_ORDER_TOPIC_CONFIG,
    +                        requestHeader.getTopic());
    +                topicRouteData.setOrderTopicConf(orderTopicConf);
    +            }
    +
    +            byte[] content = topicRouteData.encode();
    +            response.setBody(content);
    +            response.setCode(ResponseCode.SUCCESS);
    +            response.setRemark(null);
    +            return response;
    +        }
    +
    +        response.setCode(ResponseCode.TOPIC_NOT_EXIST);
    +        response.setRemark("No topic route info in name server for the topic: " + requestHeader.getTopic()
    +            + FAQUrl.suggestTodo(FAQUrl.APPLY_TOPIC_URL));
    +        return response;
    +    }
    + +

    首先调用org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#pickupTopicRouteDataorg.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#topicQueueTable获取到org.apache.rocketmq.common.protocol.route.QueueData这里面存了 brokerName,再通过org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#brokerAddrTable里获取到 broker 的地址信息等,然后再获取 orderMessage 的配置。

    +

    简要分析了下 RocketMQ 的 NameServer 的代码,比较粗粒度。

    ]]>
    MQ RocketMQ 消息队列 + RocketMQ + 中间件 + RocketMQ MQ 消息队列 RocketMQ + 削峰填谷 + 中间件 + NameServer + 源码解析
    - 聊一下 SpringBoot 中使用的 cglib 作为动态代理中的一个注意点 - /2021/09/19/%E8%81%8A%E4%B8%80%E4%B8%8B-SpringBoot-%E4%B8%AD%E4%BD%BF%E7%94%A8%E7%9A%84-cglib-%E4%BD%9C%E4%B8%BA%E5%8A%A8%E6%80%81%E4%BB%A3%E7%90%86%E4%B8%AD%E7%9A%84%E4%B8%80%E4%B8%AA%E6%B3%A8%E6%84%8F%E7%82%B9/ - 这个话题是由一次组内同学分享引出来的,首先在 springboot 2.x 开始默认使用了 cglib 作为 aop 的实现,这里也稍微讲一下,在一个 1.x 的老项目里,可以看到AopAutoConfiguration 是这样的

    -
    @Configuration
    -@ConditionalOnClass({ EnableAspectJAutoProxy.class, Aspect.class, Advice.class })
    -@ConditionalOnProperty(prefix = "spring.aop", name = "auto", havingValue = "true", matchIfMissing = true)
    -public class AopAutoConfiguration {
    -
    -	@Configuration
    -	@EnableAspectJAutoProxy(proxyTargetClass = false)
    -	@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "false", matchIfMissing = true)
    -	public static class JdkDynamicAutoProxyConfiguration {
    -	}
    -
    -	@Configuration
    -	@EnableAspectJAutoProxy(proxyTargetClass = true)
    -	@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "true", matchIfMissing = false)
    -	public static class CglibAutoProxyConfiguration {
    -	}
    -
    -}
    - -

    而在 2.x 中变成了这样

    -
    @Configuration(proxyBeanMethods = false)
    -@ConditionalOnProperty(prefix = "spring.aop", name = "auto", havingValue = "true", matchIfMissing = true)
    -public class AopAutoConfiguration {
    -
    -	@Configuration(proxyBeanMethods = false)
    -	@ConditionalOnClass(Advice.class)
    -	static class AspectJAutoProxyingConfiguration {
    -
    -		@Configuration(proxyBeanMethods = false)
    -		@EnableAspectJAutoProxy(proxyTargetClass = false)
    -		@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "false")
    -		static class JdkDynamicAutoProxyConfiguration {
    -
    -		}
    -
    -		@Configuration(proxyBeanMethods = false)
    -		@EnableAspectJAutoProxy(proxyTargetClass = true)
    -		@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "true",
    -				matchIfMissing = true)
    -		static class CglibAutoProxyConfiguration {
    -
    -		}
    -
    -	}
    - -

    为何会加载 AopAutoConfiguration 在前面的文章聊聊 SpringBoot 自动装配里已经介绍过,有兴趣的可以看下,可以发现 springboot 在 2.x 版本开始使用 cglib 作为默认的动态代理实现。

    -

    然后就是出现的问题了,代码是这样的,一个简单的基于 springboot 的带有数据库的插入,对插入代码加了事务注解,

    -
    @Mapper
    -public interface StudentMapper {
    -		// 就是插入一条数据
    -    @Insert("insert into student(name, age)" + "values ('nick', '18')")
    -    public Long insert();
    -}
    +    聊一下 RocketMQ 的消息存储三
    +    /2021/10/03/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E4%B8%89/
    +    ConsumeQueue 其实是定位到一个 topic 下的消息在 CommitLog 下的偏移量,它也是固定大小的

    +
    // ConsumeQueue file size,default is 30W
    +private int mapedFileSizeConsumeQueue = 300000 * ConsumeQueue.CQ_STORE_UNIT_SIZE;
     
    -@Component
    -public class StudentManager {
    +public static final int CQ_STORE_UNIT_SIZE = 20;
    - @Resource - private StudentMapper studentMapper; - - public Long createStudent() { - return studentMapper.insert(); - } -} +

    所以文件大小是5.7M 左右

    +

    5udpag

    +

    ConsumeQueue 的构建是通过org.apache.rocketmq.store.DefaultMessageStore.ReputMessageService运行后的 doReput 方法,而启动是的 reputFromOffset 则是通过org.apache.rocketmq.store.DefaultMessageStore#start中下面代码设置并启动

    +
    log.info("[SetReputOffset] maxPhysicalPosInLogicQueue={} clMinOffset={} clMaxOffset={} clConfirmedOffset={}",
    +                maxPhysicalPosInLogicQueue, this.commitLog.getMinOffset(), this.commitLog.getMaxOffset(), this.commitLog.getConfirmOffset());
    +            this.reputMessageService.setReputFromOffset(maxPhysicalPosInLogicQueue);
    +            this.reputMessageService.start();
    -@Component -public class StudentServiceImpl implements StudentService { +

    看一下 doReput 的逻辑

    +
    private void doReput() {
    +            if (this.reputFromOffset < DefaultMessageStore.this.commitLog.getMinOffset()) {
    +                log.warn("The reputFromOffset={} is smaller than minPyOffset={}, this usually indicate that the dispatch behind too much and the commitlog has expired.",
    +                    this.reputFromOffset, DefaultMessageStore.this.commitLog.getMinOffset());
    +                this.reputFromOffset = DefaultMessageStore.this.commitLog.getMinOffset();
    +            }
    +            for (boolean doNext = true; this.isCommitLogAvailable() && doNext; ) {
     
    -    @Resource
    -    private StudentManager studentManager;
    +                if (DefaultMessageStore.this.getMessageStoreConfig().isDuplicationEnable()
    +                    && this.reputFromOffset >= DefaultMessageStore.this.getConfirmOffset()) {
    +                    break;
    +                }
     
    -    // 自己引用
    -    @Resource
    -    private StudentServiceImpl studentService;
    +              // 根据偏移量获取消息
    +                SelectMappedBufferResult result = DefaultMessageStore.this.commitLog.getData(reputFromOffset);
    +                if (result != null) {
    +                    try {
    +                        this.reputFromOffset = result.getStartOffset();
     
    -    @Override
    -    @Transactional
    -    public Long createStudent() {
    -        Long id = studentManager.createStudent();
    -        Long id2 = studentService.createStudent2();
    -        return 1L;
    -    }
    +                        for (int readSize = 0; readSize < result.getSize() && doNext; ) {
    +                          // 消息校验和转换
    +                            DispatchRequest dispatchRequest =
    +                                DefaultMessageStore.this.commitLog.checkMessageAndReturnSize(result.getByteBuffer(), false, false);
    +                            int size = dispatchRequest.getBufferSize() == -1 ? dispatchRequest.getMsgSize() : dispatchRequest.getBufferSize();
     
    -    @Transactional
    -    private Long createStudent2() {
    -//        Integer t = Integer.valueOf("aaa");
    -        return studentManager.createStudent();
    -    }
    -}
    + if (dispatchRequest.isSuccess()) { + if (size > 0) { + // 进行分发处理,包括 ConsumeQueue 和 IndexFile + DefaultMessageStore.this.doDispatch(dispatchRequest); -

    第一个公有方法 createStudent 首先调用了 manager 层的创建方法,然后再通过引入的 studentService 调用了createStudent2,我们先跑一下看看会出现啥情况,果不其然报错了,正是这个报错让我纠结了很久

    -

    EdR7oB

    -

    报了个空指针,而且是在 createStudent2 已经被调用到了,在它的内部,报的 studentManager 是 null,首先 cglib 作为动态代理它是通过继承的方式来实现的,相当于是会在调用目标对象的代理方法时调用 cglib 生成的子类,具体的代理切面逻辑在子类实现,然后在调用目标对象的目标方法,但是继承的方式对于 final 和私有方法其实是没法进行代理的,因为没法继承,所以我最开始的想法是应该通过 studentService 调用 createStudent2 的时候就报错了,也就是不会进入这个方法内部,后面才发现犯了个特别二的错误,继承的方式去调用父类的私有方法,对于 Java 来说是可以调用到的,父类的私有方法并不由子类的InstanceKlass维护,只能通过子类的InstanceKlass找到Java类对应的_super,这样间接地访问。也就是说子类其实是可以访问的,那为啥访问了会报空指针呢,这里报的是studentManager 是空的,可以往依赖注入方面去想,如果忽略依赖注入,我这个studentManager 的确是 null,那是不是就没有被依赖注入呢,但是为啥前面那个可以呢

    -

    这个问题着实查了很久,不废话来看代码

    -
    @Override
    -		protected Object invokeJoinpoint() throws Throwable {
    -			if (this.methodProxy != null) {
    -        // 这里的 target 就是被代理的 bean
    -				return this.methodProxy.invoke(this.target, this.arguments);
    -			}
    -			else {
    -				return super.invokeJoinpoint();
    -			}
    -		}
    + if (BrokerRole.SLAVE != DefaultMessageStore.this.getMessageStoreConfig().getBrokerRole() + && DefaultMessageStore.this.brokerConfig.isLongPollingEnable()) { + DefaultMessageStore.this.messageArrivingListener.arriving(dispatchRequest.getTopic(), + dispatchRequest.getQueueId(), dispatchRequest.getConsumeQueueOffset() + 1, + dispatchRequest.getTagsCode(), dispatchRequest.getStoreTimestamp(), + dispatchRequest.getBitMap(), dispatchRequest.getPropertiesMap()); + } + this.reputFromOffset += size; + readSize += size; + if (DefaultMessageStore.this.getMessageStoreConfig().getBrokerRole() == BrokerRole.SLAVE) { + DefaultMessageStore.this.storeStatsService + .getSinglePutMessageTopicTimesTotal(dispatchRequest.getTopic()).incrementAndGet(); + DefaultMessageStore.this.storeStatsService + .getSinglePutMessageTopicSizeTotal(dispatchRequest.getTopic()) + .addAndGet(dispatchRequest.getMsgSize()); + } + } else if (size == 0) { + this.reputFromOffset = DefaultMessageStore.this.commitLog.rollNextFile(this.reputFromOffset); + readSize = result.getSize(); + } + } else if (!dispatchRequest.isSuccess()) { + if (size > 0) { + log.error("[BUG]read total count not equals msg total size. reputFromOffset={}", reputFromOffset); + this.reputFromOffset += size; + } else { + doNext = false; + // If user open the dledger pattern or the broker is master node, + // it will not ignore the exception and fix the reputFromOffset variable + if (DefaultMessageStore.this.getMessageStoreConfig().isEnableDLegerCommitLog() || + DefaultMessageStore.this.brokerConfig.getBrokerId() == MixAll.MASTER_ID) { + log.error("[BUG]dispatch message to consume queue error, COMMITLOG OFFSET: {}", + this.reputFromOffset); + this.reputFromOffset += result.getSize() - readSize; + } + } + } + } + } finally { + result.release(); + } + } else { + doNext = false; + } + } + }
    -

    这个是org.springframework.aop.framework.CglibAopProxy.CglibMethodInvocation的代码,其实它在这里不是直接调用 super 也就是父类的方法,而是通过 methodProxy 调用 target 目标对象的方法,也就是原始的 studentService bean 的方法,这样子 spring 管理的已经做好依赖注入的 bean 就能正常起作用,否则就会出现上面的问题,因为 cglib 其实是通过继承来实现,通过将调用转移到子类上加入代理逻辑,我们在简单使用的时候会直接 invokeSuper() 调用父类的方法,但是在这里 spring 的场景里需要去支持 spring 的功能逻辑,所以上面的问题就可以开始来解释了,因为 createStudent 是公共方法,cglib 可以对其进行继承代理,但是在执行逻辑的时候其实是通过调用目标对象,也就是 spring 管理的被代理的目标对象的 bean 调用的 createStudent,而对于下面的 createStudent2 方法因为是私有方法,不会走代理逻辑,也就不会有调用回目标对象的逻辑,只是通过继承关系,在子类中没有这个方法,所以会通过子类的InstanceKlass找到这个类对应的_super,然后调用父类的这个私有方法,这里要搞清楚一个点,从这个代理类直接找到其父类然后调用这个私有方法,这个类是由 cglib 生成的,不是被 spring 管理起来经过依赖注入的 bean,所以是没有 studentManager 这个依赖的,也就出现了前面的问题

    -

    而在前面提到的cglib通过methodProxy调用到目标对象,目标对象是在什么时候设置的呢,其实是在bean的生命周期中,org.springframework.beans.factory.config.BeanPostProcessor#postProcessAfterInitialization这个接口的在bean的初始化过程中,会调用实现了这个接口的方法,

    -
    @Override
    -public Object postProcessAfterInitialization(@Nullable Object bean, String beanName) {
    -	if (bean != null) {
    -		Object cacheKey = getCacheKey(bean.getClass(), beanName);
    -		if (this.earlyProxyReferences.remove(cacheKey) != bean) {
    -			return wrapIfNecessary(bean, beanName, cacheKey);
    -		}
    -	}
    -	return bean;
    -}
    +

    分发的逻辑看到这

    +
        class CommitLogDispatcherBuildConsumeQueue implements CommitLogDispatcher {
     
    -

    具体的逻辑在 org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator#wrapIfNecessary这个方法里

    -
    protected Object getCacheKey(Class<?> beanClass, @Nullable String beanName) {
    -		if (StringUtils.hasLength(beanName)) {
    -			return (FactoryBean.class.isAssignableFrom(beanClass) ?
    -					BeanFactory.FACTORY_BEAN_PREFIX + beanName : beanName);
    -		}
    -		else {
    -			return beanClass;
    -		}
    -	}
    +        @Override
    +        public void dispatch(DispatchRequest request) {
    +            final int tranType = MessageSysFlag.getTransactionValue(request.getSysFlag());
    +            switch (tranType) {
    +                case MessageSysFlag.TRANSACTION_NOT_TYPE:
    +                case MessageSysFlag.TRANSACTION_COMMIT_TYPE:
    +                    DefaultMessageStore.this.putMessagePositionInfo(request);
    +                    break;
    +                case MessageSysFlag.TRANSACTION_PREPARED_TYPE:
    +                case MessageSysFlag.TRANSACTION_ROLLBACK_TYPE:
    +                    break;
    +            }
    +        }
    +    }
    +public void putMessagePositionInfo(DispatchRequest dispatchRequest) {
    +        ConsumeQueue cq = this.findConsumeQueue(dispatchRequest.getTopic(), dispatchRequest.getQueueId());
    +        cq.putMessagePositionInfoWrapper(dispatchRequest);
    +    }
    - /** - * Wrap the given bean if necessary, i.e. if it is eligible for being proxied. - * @param bean the raw bean instance - * @param beanName the name of the bean - * @param cacheKey the cache key for metadata access - * @return a proxy wrapping the bean, or the raw bean instance as-is - */ - protected Object wrapIfNecessary(Object bean, String beanName, Object cacheKey) { - if (StringUtils.hasLength(beanName) && this.targetSourcedBeans.contains(beanName)) { - return bean; - } - if (Boolean.FALSE.equals(this.advisedBeans.get(cacheKey))) { - return bean; - } - if (isInfrastructureClass(bean.getClass()) || shouldSkip(bean.getClass(), beanName)) { - this.advisedBeans.put(cacheKey, Boolean.FALSE); - return bean; - } +

    真正存储的是在这

    +
    private boolean putMessagePositionInfo(final long offset, final int size, final long tagsCode,
    +    final long cqOffset) {
     
    -		// Create proxy if we have advice.
    -		Object[] specificInterceptors = getAdvicesAndAdvisorsForBean(bean.getClass(), beanName, null);
    -		if (specificInterceptors != DO_NOT_PROXY) {
    -			this.advisedBeans.put(cacheKey, Boolean.TRUE);
    -			Object proxy = createProxy(
    -					bean.getClass(), beanName, specificInterceptors, new SingletonTargetSource(bean));
    -			this.proxyTypes.put(cacheKey, proxy.getClass());
    -			return proxy;
    -		}
    +    if (offset + size <= this.maxPhysicOffset) {
    +        log.warn("Maybe try to build consume queue repeatedly maxPhysicOffset={} phyOffset={}", maxPhysicOffset, offset);
    +        return true;
    +    }
     
    -		this.advisedBeans.put(cacheKey, Boolean.FALSE);
    -		return bean;
    -	}
    + this.byteBufferIndex.flip(); + this.byteBufferIndex.limit(CQ_STORE_UNIT_SIZE); + this.byteBufferIndex.putLong(offset); + this.byteBufferIndex.putInt(size); + this.byteBufferIndex.putLong(tagsCode);
    -

    然后在 org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator#createProxy 中创建了代理类

    +

    这里也可以看到 ConsumeQueue 的存储格式,

    +

    AA6Tve

    +

    偏移量,消息大小,跟 tag 的 hashCode

    ]]>
    - Java - SpringBoot + MQ + RocketMQ + 消息队列 - Java - Spring - SpringBoot - cglib - 事务 + MQ + 消息队列 + RocketMQ
    - 聊一下 SpringBoot 中动态切换数据源的方法 - /2021/09/26/%E8%81%8A%E4%B8%80%E4%B8%8B-SpringBoot-%E4%B8%AD%E5%8A%A8%E6%80%81%E5%88%87%E6%8D%A2%E6%95%B0%E6%8D%AE%E6%BA%90%E7%9A%84%E6%96%B9%E6%B3%95/ - 其实这个表示有点不太对,应该是 Druid 动态切换数据源的方法,只是应用在了 springboot 框架中,准备代码准备了半天,之前在一次数据库迁移中使用了,发现 Druid 还是很强大的,用来做动态数据源切换很方便。

    -

    首先这里的场景跟我原来用的有点点区别,在项目中使用的是通过配置中心控制数据源切换,统一切换,而这里的例子多加了个可以根据接口注解配置

    -

    第一部分是最核心的,如何基于 Spring JDBC 和 Druid 来实现数据源切换,是继承了org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource 这个类,他的determineCurrentLookupKey方法会被调用来获得用来决定选择那个数据源的对象,也就是 lookupKey,也可以通过这个类看到就是通过这个 lookupKey 来路由找到数据源。

    -
    public class DynamicDataSource extends AbstractRoutingDataSource {
    +    聊一下 RocketMQ 的消息存储二
    +    /2021/09/12/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E4%BA%8C/
    +    CommitLog 结构

    CommitLog 是 rocketmq 的服务端,也就是 broker 存储消息的的文件,跟 kafka 一样,也是顺序写入,当然消息是变长的,生成的规则是每个文件的默认1G =1024 * 1024 * 1024,commitlog的文件名fileName,名字长度为20位,左边补零,剩余为起始偏移量;比如00000000000000000000代表了第一个文件,起始偏移量为0,文件大小为1G=1 073 741 824Byte;当这个文件满了,第二个文件名字为00000000001073741824,起始偏移量为1073741824, 消息存储的时候会顺序写入文件,当文件满了则写入下一个文件,代码中的定义

    +
    // CommitLog file size,default is 1G
    +private int mapedFileSizeCommitLog = 1024 * 1024 * 1024;
    + +

    kLahwW

    +

    本地跑个 demo 验证下,也是这样,这里奇妙有几个比较巧妙的点(个人观点),首先文件就刚好是 1G,并且按照大小偏移量去生成下一个文件,这样获取消息的时候按大小算一下就知道在哪个文件里了,

    +

    代码中写入 CommitLog 的逻辑可以从这开始看

    +
    public PutMessageResult putMessage(final MessageExtBrokerInner msg) {
    +        // Set the storage time
    +        msg.setStoreTimestamp(System.currentTimeMillis());
    +        // Set the message body BODY CRC (consider the most appropriate setting
    +        // on the client)
    +        msg.setBodyCRC(UtilAll.crc32(msg.getBody()));
    +        // Back to Results
    +        AppendMessageResult result = null;
    +
    +        StoreStatsService storeStatsService = this.defaultMessageStore.getStoreStatsService();
    +
    +        String topic = msg.getTopic();
    +        int queueId = msg.getQueueId();
    +
    +        final int tranType = MessageSysFlag.getTransactionValue(msg.getSysFlag());
    +        if (tranType == MessageSysFlag.TRANSACTION_NOT_TYPE
    +            || tranType == MessageSysFlag.TRANSACTION_COMMIT_TYPE) {
    +            // Delay Delivery
    +            if (msg.getDelayTimeLevel() > 0) {
    +                if (msg.getDelayTimeLevel() > this.defaultMessageStore.getScheduleMessageService().getMaxDelayLevel()) {
    +                    msg.setDelayTimeLevel(this.defaultMessageStore.getScheduleMessageService().getMaxDelayLevel());
    +                }
     
    -    @Override
    -    protected Object determineCurrentLookupKey() {
    -        if (DatabaseContextHolder.getDatabaseType() != null) {
    -            return DatabaseContextHolder.getDatabaseType().getName();
    +                topic = ScheduleMessageService.SCHEDULE_TOPIC;
    +                queueId = ScheduleMessageService.delayLevel2QueueId(msg.getDelayTimeLevel());
    +
    +                // Backup real topic, queueId
    +                MessageAccessor.putProperty(msg, MessageConst.PROPERTY_REAL_TOPIC, msg.getTopic());
    +                MessageAccessor.putProperty(msg, MessageConst.PROPERTY_REAL_QUEUE_ID, String.valueOf(msg.getQueueId()));
    +                msg.setPropertiesString(MessageDecoder.messageProperties2String(msg.getProperties()));
    +
    +                msg.setTopic(topic);
    +                msg.setQueueId(queueId);
    +            }
             }
    -        return DatabaseType.MASTER1.getName();
    -    }
    -}
    -

    而如何使用这个 lookupKey 呢,就涉及到我们的 DataSource 配置了,原来就是我们可以直接通过spring 的 jdbc 配置数据源,像这样

    -

    -

    现在我们要使用 Druid 作为数据源了,然后配置 DynamicDataSource 的参数,通过 key 来选择对应的 DataSource,也就是下面配的 master1 和 master2

    -
    <bean id="master1" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
    -          destroy-method="close"
    -          p:driverClassName="com.mysql.cj.jdbc.Driver"
    -          p:url="${master1.demo.datasource.url}"
    -          p:username="${master1.demo.datasource.username}"
    -          p:password="${master1.demo.datasource.password}"
    -          p:initialSize="5"
    -          p:minIdle="1"
    -          p:maxActive="10"
    -          p:maxWait="60000"
    -          p:timeBetweenEvictionRunsMillis="60000"
    -          p:minEvictableIdleTimeMillis="300000"
    -          p:validationQuery="SELECT 'x'"
    -          p:testWhileIdle="true"
    -          p:testOnBorrow="false"
    -          p:testOnReturn="false"
    -          p:poolPreparedStatements="false"
    -          p:maxPoolPreparedStatementPerConnectionSize="20"
    -          p:connectionProperties="config.decrypt=true"
    -          p:filters="stat,config"/>
    +        long eclipseTimeInLock = 0;
    +        MappedFile unlockMappedFile = null;
    +        MappedFile mappedFile = this.mappedFileQueue.getLastMappedFile();
     
    -    <bean id="master2" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
    -          destroy-method="close"
    -          p:driverClassName="com.mysql.cj.jdbc.Driver"
    -          p:url="${master2.demo.datasource.url}"
    -          p:username="${master2.demo.datasource.username}"
    -          p:password="${master2.demo.datasource.password}"
    -          p:initialSize="5"
    -          p:minIdle="1"
    -          p:maxActive="10"
    -          p:maxWait="60000"
    -          p:timeBetweenEvictionRunsMillis="60000"
    -          p:minEvictableIdleTimeMillis="300000"
    -          p:validationQuery="SELECT 'x'"
    -          p:testWhileIdle="true"
    -          p:testOnBorrow="false"
    -          p:testOnReturn="false"
    -          p:poolPreparedStatements="false"
    -          p:maxPoolPreparedStatementPerConnectionSize="20"
    -          p:connectionProperties="config.decrypt=true"
    -          p:filters="stat,config"/>
    +        putMessageLock.lock(); //spin or ReentrantLock ,depending on store config
    +        try {
    +            long beginLockTimestamp = this.defaultMessageStore.getSystemClock().now();
    +            this.beginTimeInLock = beginLockTimestamp;
     
    -    <bean id="dataSource" class="com.nicksxs.springdemo.config.DynamicDataSource">
    -        <property name="targetDataSources">
    -            <map key-type="java.lang.String">
    -                <!-- master -->
    -                <entry key="master1" value-ref="master1"/>
    -                <!-- slave -->
    -                <entry key="master2" value-ref="master2"/>
    -            </map>
    -        </property>
    -        <property name="defaultTargetDataSource" ref="master1"/>
    -    </bean>
    + // Here settings are stored timestamp, in order to ensure an orderly + // global + msg.setStoreTimestamp(beginLockTimestamp); -

    现在就要回到头上,介绍下这个DatabaseContextHolder,这里使用了 ThreadLocal 存放这个 DatabaseType,为啥要用这个是因为前面说的我们想要让接口层面去配置不同的数据源,要把持相互隔离不受影响,就使用了 ThreadLocal,关于它也可以看我前面写的一篇文章聊聊传说中的 ThreadLocal,而 DatabaseType 就是个简单的枚举

    -
    public class DatabaseContextHolder {
    -    public static final ThreadLocal<DatabaseType> databaseTypeThreadLocal = new ThreadLocal<>();
    +            if (null == mappedFile || mappedFile.isFull()) {
    +                mappedFile = this.mappedFileQueue.getLastMappedFile(0); // Mark: NewFile may be cause noise
    +            }
    +            if (null == mappedFile) {
    +                log.error("create mapped file1 error, topic: " + msg.getTopic() + " clientAddr: " + msg.getBornHostString());
    +                beginTimeInLock = 0;
    +                return new PutMessageResult(PutMessageStatus.CREATE_MAPEDFILE_FAILED, null);
    +            }
     
    -    public static DatabaseType getDatabaseType() {
    -        return databaseTypeThreadLocal.get();
    -    }
    +            result = mappedFile.appendMessage(msg, this.appendMessageCallback);
    +            switch (result.getStatus()) {
    +                case PUT_OK:
    +                    break;
    +                case END_OF_FILE:
    +                    unlockMappedFile = mappedFile;
    +                    // Create a new file, re-write the message
    +                    mappedFile = this.mappedFileQueue.getLastMappedFile(0);
    +                    if (null == mappedFile) {
    +                        // XXX: warn and notify me
    +                        log.error("create mapped file2 error, topic: " + msg.getTopic() + " clientAddr: " + msg.getBornHostString());
    +                        beginTimeInLock = 0;
    +                        return new PutMessageResult(PutMessageStatus.CREATE_MAPEDFILE_FAILED, result);
    +                    }
    +                    result = mappedFile.appendMessage(msg, this.appendMessageCallback);
    +                    break;
    +                case MESSAGE_SIZE_EXCEEDED:
    +                case PROPERTIES_SIZE_EXCEEDED:
    +                    beginTimeInLock = 0;
    +                    return new PutMessageResult(PutMessageStatus.MESSAGE_ILLEGAL, result);
    +                case UNKNOWN_ERROR:
    +                    beginTimeInLock = 0;
    +                    return new PutMessageResult(PutMessageStatus.UNKNOWN_ERROR, result);
    +                default:
    +                    beginTimeInLock = 0;
    +                    return new PutMessageResult(PutMessageStatus.UNKNOWN_ERROR, result);
    +            }
     
    -    public static void putDatabaseType(DatabaseType databaseType) {
    -        databaseTypeThreadLocal.set(databaseType);
    -    }
    +            eclipseTimeInLock = this.defaultMessageStore.getSystemClock().now() - beginLockTimestamp;
    +            beginTimeInLock = 0;
    +        } finally {
    +            putMessageLock.unlock();
    +        }
     
    -    public static void clearDatabaseType() {
    -        databaseTypeThreadLocal.remove();
    -    }
    -}
    -public enum DatabaseType {
    -    MASTER1("master1", "1"),
    -    MASTER2("master2", "2");
    +        if (eclipseTimeInLock > 500) {
    +            log.warn("[NOTIFYME]putMessage in lock cost time(ms)={}, bodyLength={} AppendMessageResult={}", eclipseTimeInLock, msg.getBody().length, result);
    +        }
     
    -    private final String name;
    -    private final String value;
    +        if (null != unlockMappedFile && this.defaultMessageStore.getMessageStoreConfig().isWarmMapedFileEnable()) {
    +            this.defaultMessageStore.unlockMappedFile(unlockMappedFile);
    +        }
     
    -    DatabaseType(String name, String value) {
    -        this.name = name;
    -        this.value = value;
    -    }
    +        PutMessageResult putMessageResult = new PutMessageResult(PutMessageStatus.PUT_OK, result);
     
    -    public String getName() {
    -        return name;
    -    }
    +        // Statistics
    +        storeStatsService.getSinglePutMessageTopicTimesTotal(msg.getTopic()).incrementAndGet();
    +        storeStatsService.getSinglePutMessageTopicSizeTotal(topic).addAndGet(result.getWroteBytes());
     
    -    public String getValue() {
    -        return value;
    -    }
    +        handleDiskFlush(result, putMessageResult, msg);
    +        handleHA(result, putMessageResult, msg);
     
    -    public static DatabaseType getDatabaseType(String name) {
    -        if (MASTER2.name.equals(name)) {
    -            return MASTER2;
    +        return putMessageResult;
    +    }
    + +

    前面也看到在CommitLog 目录下是有大小为 1G 的文件组成,在实现逻辑中,其实是通过 org.apache.rocketmq.store.MappedFileQueue ,内部是存的一个MappedFile的队列,对于写入的场景每次都是通过org.apache.rocketmq.store.MappedFileQueue#getLastMappedFile() 获取最后一个文件,如果还没有创建,或者最后这个文件已经满了,那就调用 org.apache.rocketmq.store.MappedFileQueue#getLastMappedFile(long)

    +
    public MappedFile getLastMappedFile(final long startOffset, boolean needCreate) {
    +        long createOffset = -1;
    +  			// 调用前面的方法,只是从 mappedFileQueue 获取最后一个
    +        MappedFile mappedFileLast = getLastMappedFile();
    +
    +        // 如果为空,计算下创建的偏移量
    +        if (mappedFileLast == null) {
    +            createOffset = startOffset - (startOffset % this.mappedFileSize);
    +        }
    +  
    +				// 如果不为空,但是当前的文件写满了
    +        if (mappedFileLast != null && mappedFileLast.isFull()) {
    +            // 前一个的偏移量加上单个文件的偏移量,也就是 1G
    +            createOffset = mappedFileLast.getFileFromOffset() + this.mappedFileSize;
             }
    -        return MASTER1;
    -    }
    -}
    -

    这边可以看到就是通过动态地通过putDatabaseType设置lookupKey来进行数据源切换,要通过接口注解配置来进行设置的话,我们就需要一个注解

    -
    @Retention(RetentionPolicy.RUNTIME)
    -@Target(ElementType.METHOD)
    -public @interface DataSource {
    -    String value();
    -}
    + if (createOffset != -1 && needCreate) { + // 根据 createOffset 转换成文件名进行创建 + String nextFilePath = this.storePath + File.separator + UtilAll.offset2FileName(createOffset); + String nextNextFilePath = this.storePath + File.separator + + UtilAll.offset2FileName(createOffset + this.mappedFileSize); + MappedFile mappedFile = null; -

    这个注解可以配置在我的接口方法上,比如这样

    -
    public interface StudentService {
    +          	// 这里如果allocateMappedFileService 存在,就提交请求
    +            if (this.allocateMappedFileService != null) {
    +                mappedFile = this.allocateMappedFileService.putRequestAndReturnMappedFile(nextFilePath,
    +                    nextNextFilePath, this.mappedFileSize);
    +            } else {
    +                try {
    +                  // 否则就直接创建
    +                    mappedFile = new MappedFile(nextFilePath, this.mappedFileSize);
    +                } catch (IOException e) {
    +                    log.error("create mappedFile exception", e);
    +                }
    +            }
     
    -    @DataSource("master1")
    -    public Student queryOne();
    +            if (mappedFile != null) {
    +                if (this.mappedFiles.isEmpty()) {
    +                    mappedFile.setFirstCreateInQueue(true);
    +                }
    +                this.mappedFiles.add(mappedFile);
    +            }
     
    -    @DataSource("master2")
    -    public Student queryAnother();
    +            return mappedFile;
    +        }
     
    -}
    + return mappedFileLast; + }
    -

    通过切面来进行数据源的设置

    -
    @Aspect
    -@Component
    -@Order(-1)
    -public class DataSourceAspect {
    +

    首先看下直接创建的,

    +
    public MappedFile(final String fileName, final int fileSize) throws IOException {
    +        init(fileName, fileSize);
    +    }
    +private void init(final String fileName, final int fileSize) throws IOException {
    +        this.fileName = fileName;
    +        this.fileSize = fileSize;
    +        this.file = new File(fileName);
    +        this.fileFromOffset = Long.parseLong(this.file.getName());
    +        boolean ok = false;
    +
    +        ensureDirOK(this.file.getParent());
    +
    +        try {
    +          // 通过 RandomAccessFile 创建 fileChannel
    +            this.fileChannel = new RandomAccessFile(this.file, "rw").getChannel();
    +          // 做 mmap 映射
    +            this.mappedByteBuffer = this.fileChannel.map(MapMode.READ_WRITE, 0, fileSize);
    +            TOTAL_MAPPED_VIRTUAL_MEMORY.addAndGet(fileSize);
    +            TOTAL_MAPPED_FILES.incrementAndGet();
    +            ok = true;
    +        } catch (FileNotFoundException e) {
    +            log.error("create file channel " + this.fileName + " Failed. ", e);
    +            throw e;
    +        } catch (IOException e) {
    +            log.error("map file " + this.fileName + " Failed. ", e);
    +            throw e;
    +        } finally {
    +            if (!ok && this.fileChannel != null) {
    +                this.fileChannel.close();
    +            }
    +        }
    +    }
    - @Pointcut("execution(* com.nicksxs.springdemo.service..*.*(..))") - public void pointCut() { +

    如果是提交给AllocateMappedFileService的话就用到了一些异步操作

    +
    public MappedFile putRequestAndReturnMappedFile(String nextFilePath, String nextNextFilePath, int fileSize) {
    +        int canSubmitRequests = 2;
    +        if (this.messageStore.getMessageStoreConfig().isTransientStorePoolEnable()) {
    +            if (this.messageStore.getMessageStoreConfig().isFastFailIfNoBufferInStorePool()
    +                && BrokerRole.SLAVE != this.messageStore.getMessageStoreConfig().getBrokerRole()) { //if broker is slave, don't fast fail even no buffer in pool
    +                canSubmitRequests = this.messageStore.getTransientStorePool().remainBufferNumbs() - this.requestQueue.size();
    +            }
    +        }
    +				// 将请求放在 requestTable 中
    +        AllocateRequest nextReq = new AllocateRequest(nextFilePath, fileSize);
    +        boolean nextPutOK = this.requestTable.putIfAbsent(nextFilePath, nextReq) == null;
    +        // requestTable 使用了 concurrentHashMap,用文件名作为 key,防止并发
    +        if (nextPutOK) {
    +            // 这里判断了是否可以提交到 TransientStorePool,涉及读写分离,后面再细聊
    +            if (canSubmitRequests <= 0) {
    +                log.warn("[NOTIFYME]TransientStorePool is not enough, so create mapped file error, " +
    +                    "RequestQueueSize : {}, StorePoolSize: {}", this.requestQueue.size(), this.messageStore.getTransientStorePool().remainBufferNumbs());
    +                this.requestTable.remove(nextFilePath);
    +                return null;
    +            }
    +          // 塞到阻塞队列中
    +            boolean offerOK = this.requestQueue.offer(nextReq);
    +            if (!offerOK) {
    +                log.warn("never expected here, add a request to preallocate queue failed");
    +            }
    +            canSubmitRequests--;
    +        }
     
    -    }
    +        // 这里的两个提交我猜测是为了多生成一个 CommitLog,
    +        AllocateRequest nextNextReq = new AllocateRequest(nextNextFilePath, fileSize);
    +        boolean nextNextPutOK = this.requestTable.putIfAbsent(nextNextFilePath, nextNextReq) == null;
    +        if (nextNextPutOK) {
    +            if (canSubmitRequests <= 0) {
    +                log.warn("[NOTIFYME]TransientStorePool is not enough, so skip preallocate mapped file, " +
    +                    "RequestQueueSize : {}, StorePoolSize: {}", this.requestQueue.size(), this.messageStore.getTransientStorePool().remainBufferNumbs());
    +                this.requestTable.remove(nextNextFilePath);
    +            } else {
    +                boolean offerOK = this.requestQueue.offer(nextNextReq);
    +                if (!offerOK) {
    +                    log.warn("never expected here, add a request to preallocate queue failed");
    +                }
    +            }
    +        }
     
    +        if (hasException) {
    +            log.warn(this.getServiceName() + " service has exception. so return null");
    +            return null;
    +        }
     
    -    @Before("pointCut()")
    -    public void before(JoinPoint point)
    -    {
    -        Object target = point.getTarget();
    -        System.out.println(target.toString());
    -        String method = point.getSignature().getName();
    -        System.out.println(method);
    -        Class<?>[] classz = target.getClass().getInterfaces();
    -        Class<?>[] parameterTypes = ((MethodSignature) point.getSignature())
    -                .getMethod().getParameterTypes();
    +        AllocateRequest result = this.requestTable.get(nextFilePath);
             try {
    -            Method m = classz[0].getMethod(method, parameterTypes);
    -            System.out.println("method"+ m.getName());
    -            if (m.isAnnotationPresent(DataSource.class)) {
    -                DataSource data = m.getAnnotation(DataSource.class);
    -                System.out.println("dataSource:"+data.value());
    -                DatabaseContextHolder.putDatabaseType(DatabaseType.getDatabaseType(data.value()));
    +          // 这里就异步等着
    +            if (result != null) {
    +                boolean waitOK = result.getCountDownLatch().await(waitTimeOut, TimeUnit.MILLISECONDS);
    +                if (!waitOK) {
    +                    log.warn("create mmap timeout " + result.getFilePath() + " " + result.getFileSize());
    +                    return null;
    +                } else {
    +                    this.requestTable.remove(nextFilePath);
    +                    return result.getMappedFile();
    +                }
    +            } else {
    +                log.error("find preallocate mmap failed, this never happen");
                 }
    -
    -        } catch (Exception e) {
    -            e.printStackTrace();
    +        } catch (InterruptedException e) {
    +            log.warn(this.getServiceName() + " service has exception. ", e);
             }
    -    }
    -
    -    @After("pointCut()")
    -    public void after() {
    -				DatabaseContextHolder.clearDatabaseType();
    -    }
    -}
    - -

    通过接口判断是否带有注解跟是注解的值,DatabaseType 的配置不太好,不过先忽略了,然后在切点后进行清理

    -

    这是我 master1 的数据,

    -

    -

    master2 的数据

    -

    -

    然后跑一下简单的 demo,

    -
    @Override
    -public void run(String...args) {
    -	LOGGER.info("run here");
    -	System.out.println(studentService.queryOne());
    -	System.out.println(studentService.queryAnother());
     
    -}
    + return null; + }
    -

    看一下运行结果

    -

    -

    其实这个方法应用场景不止可以用来迁移数据库,还能实现精细化的读写数据源分离之类的,算是做个简单记录和分享。

    -]]>
    - - Java - SpringBoot - - - Java - Spring - SpringBoot - Druid - 数据源动态切换 - -
    - - 聊一下 SpringBoot 设置非 web 应用的方法 - /2022/07/31/%E8%81%8A%E4%B8%80%E4%B8%8B-SpringBoot-%E8%AE%BE%E7%BD%AE%E9%9D%9E-web-%E5%BA%94%E7%94%A8%E7%9A%84%E6%96%B9%E6%B3%95/ - 寻找原因

    这次碰到一个比较奇怪的问题,应该统一发布脚本统一给应用启动参数传了个 -Dserver.port=xxxx,其实这个端口会作为 dubbo 的服务端口,并且应用也不提供 web 服务,但是在启动的时候会报embedded servlet container failed to start. port xxxx was already in use就觉得有点奇怪,仔细看了启动参数猜测可能是这个问题,有可能是依赖的二方三方包带了 spring-web 的包,然后基于 springboot 的 auto configuration 会把这个自己加载,就在本地复现了下这个问题,结果的确是这个问题。

    -

    解决方案

    老版本 设置 spring 不带 web 功能

    比较老的 springboot 版本,可以使用

    -
    SpringApplication app = new SpringApplication(XXXXXApplication.class);
    -app.setWebEnvironment(false);
    -app.run(args);
    -

    新版本

    新版本的 springboot (>= 2.0.0)可以在 properties 里配置

    -
    spring.main.web-application-type=none
    -

    或者

    -
    SpringApplication app = new SpringApplication(XXXXXApplication.class);
    -app.setWebApplicationType(WebApplicationType.NONE);
    -

    这个枚举里还有其他两种配置

    -
    public enum WebApplicationType {
    +

    而真正去执行文件操作的就是 AllocateMappedFileService的 run 方法

    +
    public void run() {
    +        log.info(this.getServiceName() + " service started");
    +
    +        while (!this.isStopped() && this.mmapOperation()) {
    +
    +        }
    +        log.info(this.getServiceName() + " service end");
    +    }
    +private boolean mmapOperation() {
    +        boolean isSuccess = false;
    +        AllocateRequest req = null;
    +        try {
    +          // 从阻塞队列里获取请求
    +            req = this.requestQueue.take();
    +            AllocateRequest expectedRequest = this.requestTable.get(req.getFilePath());
    +            if (null == expectedRequest) {
    +                log.warn("this mmap request expired, maybe cause timeout " + req.getFilePath() + " "
    +                    + req.getFileSize());
    +                return true;
    +            }
    +            if (expectedRequest != req) {
    +                log.warn("never expected here,  maybe cause timeout " + req.getFilePath() + " "
    +                    + req.getFileSize() + ", req:" + req + ", expectedRequest:" + expectedRequest);
    +                return true;
    +            }
    +
    +            if (req.getMappedFile() == null) {
    +                long beginTime = System.currentTimeMillis();
    +
    +                MappedFile mappedFile;
    +                if (messageStore.getMessageStoreConfig().isTransientStorePoolEnable()) {
    +                    try {
    +                      // 通过 transientStorePool 创建
    +                        mappedFile = ServiceLoader.load(MappedFile.class).iterator().next();
    +                        mappedFile.init(req.getFilePath(), req.getFileSize(), messageStore.getTransientStorePool());
    +                    } catch (RuntimeException e) {
    +                        log.warn("Use default implementation.");
    +                      // 默认创建
    +                        mappedFile = new MappedFile(req.getFilePath(), req.getFileSize(), messageStore.getTransientStorePool());
    +                    }
    +                } else {
    +                  // 默认创建
    +                    mappedFile = new MappedFile(req.getFilePath(), req.getFileSize());
    +                }
    +
    +                long eclipseTime = UtilAll.computeEclipseTimeMilliseconds(beginTime);
    +                if (eclipseTime > 10) {
    +                    int queueSize = this.requestQueue.size();
    +                    log.warn("create mappedFile spent time(ms) " + eclipseTime + " queue size " + queueSize
    +                        + " " + req.getFilePath() + " " + req.getFileSize());
    +                }
    +
    +                // pre write mappedFile
    +                if (mappedFile.getFileSize() >= this.messageStore.getMessageStoreConfig()
    +                    .getMapedFileSizeCommitLog()
    +                    &&
    +                    this.messageStore.getMessageStoreConfig().isWarmMapedFileEnable()) {
    +                    mappedFile.warmMappedFile(this.messageStore.getMessageStoreConfig().getFlushDiskType(),
    +                        this.messageStore.getMessageStoreConfig().getFlushLeastPagesWhenWarmMapedFile());
    +                }
    +
    +                req.setMappedFile(mappedFile);
    +                this.hasException = false;
    +                isSuccess = true;
    +            }
    +        } catch (InterruptedException e) {
    +            log.warn(this.getServiceName() + " interrupted, possibly by shutdown.");
    +            this.hasException = true;
    +            return false;
    +        } catch (IOException e) {
    +            log.warn(this.getServiceName() + " service has exception. ", e);
    +            this.hasException = true;
    +            if (null != req) {
    +                requestQueue.offer(req);
    +                try {
    +                    Thread.sleep(1);
    +                } catch (InterruptedException ignored) {
    +                }
    +            }
    +        } finally {
    +            if (req != null && isSuccess)
    +              // 通知前面等待的
    +                req.getCountDownLatch().countDown();
    +        }
    +        return true;
    +    }
    - /** - * The application should not run as a web application and should not start an - * embedded web server. - */ - NONE, - /** - * The application should run as a servlet-based web application and should start an - * embedded servlet web server. - */ - SERVLET, - /** - * The application should run as a reactive web application and should start an - * embedded reactive web server. - */ - REACTIVE -}
    -

    相当于是把none 的类型和包括 servlet 和 reactive 放进了枚举类进行控制。

    -]]>
    - - Java - SpringBoot - - - Java - Spring - SpringBoot - 自动装配 - AutoConfiguration - -
    - - 聊一下关于怎么陪伴学习 - /2022/11/06/%E8%81%8A%E4%B8%80%E4%B8%8B%E5%85%B3%E4%BA%8E%E6%80%8E%E4%B9%88%E9%99%AA%E4%BC%B4%E5%AD%A6%E4%B9%A0/ - 这是一次开车过程中结合网上的一些微博想到的,开车是之前LD买了车后,陪领导练车,其实在一开始练车的时候,我们已经是找了相对很空的封闭路段,路上基本很少有车,偶尔有一辆车,但是LD还是很害怕,车速还只有十几的时候,还很远的对面来车的时候就觉得很慌了,这个时候如果以常理肯定会说这样子完全不用怕,如果克服恐惧真的这么容易的话,问题就不会那么纠结了,人生是很难完全感同身受的,唯有降低预设的基准让事情从头理清楚,害怕了我们就先休息,有车了我们就停下,先适应完全没车的情况,变得更慢一点,如果这时候着急一点,反而会起到反效果,比如只是说不要怕,接着开,甚至有点厌烦了,那基本这个练车也不太成得了了,而正好是有耐心的一起慢慢练习,还有就是第二件是切身体会,就是当道路本来是两条道,但是封了一条的时候,这时候开车如果是像我这样的新手,如果开车时左右边看着的话,车肯定开不好,因为那样会一直左右调整,反而更容易控制不好左右的距离,蹭到旁边的隔离栏,正确的方式应该是专注于正前方的路,这样才能保证左右边距离尽可能均匀,而不是顾左失右或者顾右失左,所以很多陪伴学习需要注意的是方式和耐心,能够识别到关键点那是最好的,但是有时候更需要的是耐心,纯靠耐心不一定能解决问题,但是可能会找到问题关键点。

    -]]>
    - - 生活 - - - 生活 - -
    - - 聊在东京奥运会闭幕式这天-二 - /2021/08/19/%E8%81%8A%E5%9C%A8%E4%B8%9C%E4%BA%AC%E5%A5%A5%E8%BF%90%E4%BC%9A%E9%97%AD%E5%B9%95%E5%BC%8F%E8%BF%99%E5%A4%A9-%E4%BA%8C/ - 前面主要还是说了乒乓球的,因为整体还是乒乓球的比赛赛程比较长,比较激烈,扣人心弦,记得那会在公司没法看视频直播,就偶尔看看奥运会官网的比分,还几场马龙樊振东,陈梦被赢了一局就吓尿了,已经被混双那场留下了阴影,其实后面去看看16 年的比赛什么的,中国队虽然拿了这么多冠军,但是自改成 11 分制以来,其实都没办法那么完全彻底地碾压,而且像张继科,樊振东,陈梦都多少有些慢热,现在看来是马龙比较全面,不过看过了马龙,刘国梁,许昕等的一些过往经历,都是起起伏伏,即使是张怡宁这样的大魔王,也经历过逢王楠不赢的阶段,心态无法调整好。

    -

    其实最开始是举重项目,侯志慧是女子 49 公斤级的冠军,这场比赛是全场都看,其实看中国队的举重比赛跟跳水有点像,每一轮都需要到最后才能等到中国队,跳水其实每轮都有,举重会按照自己报的试举重量进行排名,重量大的会在后面举,抓举和挺举各三次试举机会,有时候会看着比较焦虑,一直等不来,怕一上来就没试举成功,而且中国队一般试举重量就是很大的,容易一次试举不成功就马上下一次,连着举其实压力会非常大,说实话真的是外行看热闹,每次都是多懂一点点,这次由于实在是比较无聊,所以看的会比较专心点,对于对应的规则知识点也会多了解一点,同时对于举重,没想到我们国家的这些运动员有这么强,最后八块金牌拿了七块,有一块拿到银牌也是有点因为教练的策略问题,这里其实也稍微知道一点,因为报上去的试举重量是谁小谁先举,并且我们国家都是实力非常强的,所以都会报大一些,并且如果这个项目有实力相近的选手,会比竞对多报一公斤,这样子如果前面竞争对手没举成功,我们把握就很大了,最坏的情况即使对手试举成功了,我们还有机会搏一把,比如谌利军这样的,只是说说感想,举重运动员真的是个比较单纯的群体,而且训练是非常痛苦枯燥的,非常容易受伤,像挺举就有点会压迫呼吸通道,看到好几个都是脸憋得通红,甚至直接因为压迫气道而没法完成后面的挺举,像之前 16 年的举重比赛,有个运动员没成功夺冠就非常愧疚地哭着说对不起祖国,没有获得冠军,这是怎么样的一种歉疚,怎么样的一种纯粹的感情呢,相对应地来说,我又要举男足,男篮的例子了,很多人在那嘲笑我这样对男足男篮愤愤不平的人,说可能我这样的人都没交个税(从缴纳个税的数量比例来算有可能),只是这里有两个打脸的事情,我足额缴纳个税,接近 20%的薪资都缴了个税,并且我买的所有东西都缴了增值税,如果让我这样缴纳了个税,缴纳了增值税的有个人的投票权,我一定会投票不让男足男篮使用我缴纳我的税金,用我们的缴纳的税,打出这么烂的表现,想乒乓球混双,拿个亚军都会被喷,那可是世界第二了,而且是就输了那么一场,足球篮球呢,我觉得是一方面成绩差,因为比赛真的有状态跟心态的影响,偶尔有一场失误非常正常,NBA 被黑八的有这么多强队,但是如果像男足男篮,成绩是越来越差,用范志毅的话来说就是脸都不要了,还有就是精气神,要在比赛中打出胜负欲,保持这种争胜心,才有机会再进步,前火箭队主教练鲁迪·汤姆贾诺维奇的话,“永远不要低估冠军的决心”,即使我现在打不过你,我会在下一次,下下次打败你,竞技体育永远要有这种精神,可以接受一时的失败,但是要保持永远争胜的心。

    -

    第一块金牌是杨倩拿下的,中国队拿奥运会首金也是有政治任务的,而恰恰杨倩这个金牌也有点碰巧是对手最后一枪失误了,当然竞技体育,特别是射击,真的是容不得一点点失误,像前面几届的美国神通埃蒙斯,失之毫厘差之千里,但是这个具体评价就比较少,唯一一点让我比较出戏的就是杨倩真的非常像王刚的徒弟漆二娃,哈哈,微博上也有挺多人觉得像,射击还是个比较可以接受年纪稍大的运动员,需要经验和稳定性,相对来说爆发力体力稍好一点,像庞伟这样的,混合团体10米气手枪金牌,36 岁可能其他项目已经是年龄很大了,不过前面说的举重的吕小军军神也是年纪蛮大了,但是非常强,而且在油管上简直就是个神,相对来说射击是关注比较少,杨倩的也只是看了后面拿到冠军这个结果,有些因为时间或者电视上没放,但是成绩还是不错的,没多少喷点。

    -

    第二篇先到这,纯主观,轻喷。

    -]]>
    - - 生活 - 运动 - - - 生活 - 运动 - 东京奥运会 - 举重 - 射击 - -
    - - 聊在东京奥运会闭幕式这天 - /2021/08/08/%E8%81%8A%E5%9C%A8%E4%B8%9C%E4%BA%AC%E5%A5%A5%E8%BF%90%E4%BC%9A%E9%97%AD%E5%B9%95%E5%BC%8F%E8%BF%99%E5%A4%A9/ - 这届奥运会有可能是我除了 08 年之外关注度最高的一届奥运会,原因可能是因为最近也没什么电影综艺啥的比较好看,前面看跑男倒还行,不是说多好,也就图一乐,最开始看向往的生活觉得也挺不错的,后面变成了统一来了就看黄磊做饭,然后夸黄磊做饭好吃,然后无聊的说这种生活多么多么美好,单调无聊,差不多弃了,这里面还包括大华不在了,大华其实个人还是有点呱噪的,但是挺能搞气氛,并且也有才华,彭彭跟子枫人是不讨厌,但是撑不起来,所以也导致了前面说的结果,都变成了黄磊彩虹屁现场,虽然偶尔怀疑他是否做得好吃,但是整体还是承认的,可对于一个这么多季了的综艺来说,这样也有点单调了。

    -

    还有奥运会像乒乓球,篮球,跳水这几个都是比较喜欢的项目,篮球🏀是从初中开始就也有在自己在玩的,虽然因为身高啊体质基本没什么天赋,但也算是热爱驱动,差不多到了大学因为比较懒才放下了,初中高中还是有很多时间花在上面,不像别人经常打球跑跑跳跳还能长高,我反而一直都没长个子,也因为这个其实蛮遗憾的,后面想想可能是初中的时候远走他乡去住宿读初中,伙食营养跟不上导致的,可能也是自己的一厢情愿吧,总觉得应该还能再长点个,这一点以后我自己的小孩我应该会特别注意这段时间他/她的营养摄入了;然后像乒乓球🏓的话其实小时候是比较讨厌的,因为家里人,父母都没有这类爱好习惯,我也完全不会,但是小学那会班里的“恶霸”就以公平之名要我们男生每个人都排队打几个,我这种不会的反而又要被嘲笑,这个小时候的阴影让我有了比较不好的印象,对它🏓的改观是在工作以后,前司跟一个同样不会的同事经常在饭点会打打,而且那会因为这个其实身体得到了锻炼,感觉是个不错的健身方式,然后又是中国的优势项目,小时候跟着我爸看孔令辉,那时候完全不懂,印象就觉得老瓦很牛,后面其实也没那么关注,上一届好像看了马龙的比赛;跳水也是中国的优势项目,而且也比较简单,不是说真的很简单,就是我们外行观众看着就看看水花大小图一乐。

    -

    这次的观赛过程其实主要还是在乒乓球上面,现在都有点怪我的乌鸦嘴,混双我一直就不太放心(关我什么事,我也不专业),然后一直觉得混双是不是不太稳,结果那天看的时候也是因为央视一套跟五套都没放,我家的有线电视又是没有五加体育,然后用电脑投屏就很卡,看得也很不爽,同时那天因为看的时候已经是 2:0还是再后面点了,一方面是不懂每队只有一次暂停,另一方面不知道已经用过暂停了,所以就特别怀疑马林是不是只会无脑鼓掌,感觉作为教练,并且是前冠军,应该也能在擦汗间隙,或者局间休息调整的时候多给些战略战术的指导,类似于后面男团小胖打奥恰洛夫,像解说都看出来了,其实奥恰那会的反手特别顺,打得特别凶,那就不能让他能特别顺手的上反手位,这当然是外行比较粗浅的看法,在混双过程中其实除了这个,还有让人很不爽的就是我们的许昕跟刘诗雯有种拿不出破釜沉舟的勇气的感觉,在气势上完全被对面两位日本乒乓球最讨厌的两位对手压制着,我都要输了,我就每一颗都要不让你好过,因为真的不是说没有实力,对面水谷隼也不是多么多么强的,可能上一届男团许昕输给他还留着阴影,但是以许昕 19 年男单世界第一的实力,目前也排在世界前三,输一场不应该成为这种阻力,有一些失误也很可惜,后面孙颖莎真的打得很解气,第二局一度以为又要被翻盘了,结果来了个大逆转,女团的时候也是,感觉在心态上孙颖莎还是很值得肯定的,少年老成这个词很适合,看其他的视频也觉得莎莎萌萌哒,陈梦总感觉还欠一点王者霸气,王曼昱还是可以的,反手很凶,我觉得其实这一届日本女乒就是打得非常凶,即使像平野这种看着很弱的妹子,打的球可一点都不弱,也是这种凶狠的打法,有点要压制中国的感觉,这方面我觉得是需要改善的,打这种要不就是实力上的完全碾压,要不就是我实力虽然比较没强多少,但是你狠我打得比你还狠,越保守越要输,我不太成熟的想法是这样的,还有就是面对逆境,这个就要说到男队的了,樊振东跟马龙在半决赛的时候,特别是男团的第二盘,樊振东打奥恰很好地表现了这个心态,当然樊振东我不是特别了解,据说他是比较善于打相持,比较善于焦灼的情况,不过整体看下来樊振东还是有一些欠缺,就是面对情况的快速转变应对,这一点也是马龙特别强的,虽然看起来马龙真的是年纪大了点,没有 16 年那会满头发胶,油光锃亮的大背头和满脸胶原蛋白的意气风发,大范围运动能力也弱了一点,但是经验和能力的全面性也让他最终能再次站上巅峰,还是非常佩服的,这里提一下张继科,虽然可能天赋上是张继科更强点,但是男乒一直都是有强者出现,能为国家队付出这么多并且一直坚持的可不是人人都可以,即使现在同台竞技马龙打不过张继科我还是更喜欢马龙。再来说说我们的对手,主要分三部分,德国男乒,里面有波尔(我刚听到的时候在想怎么又出来个叫波尔的,是不是像举重的石智勇一样,又来一个同名的,结果是同一个,已经四十岁了),这真是个让人敬佩的对手,实力强,经验丰富,虽然男单有点可惜,但是帮助男团获得银牌,真的是起到了定海神针的作用;奥恰洛夫,以前完全不认识,或者说看过也忘了,这次是真的有点意外,竟然有这么个马龙护法,其实他也坦言非常想赢一次马龙,并且在半决赛也非常接近赢得比赛,是个实力非常强的对手,就是男团半决赛输给张本智和有点可惜,有点被打蒙的感觉,佛朗西斯卡的话也是实力不错的选手,就是可能被奥恰跟波尔的光芒掩盖了,跟波尔在男团第一盘男双的比赛中打败日本那对男双也是非常给力的,说实话,最后打国乒的时候的确是国乒实力更胜一筹,但是即使德国赢了我也是充满尊敬,拼的就是硬实力,就像第二盘奥恰打樊振东,反手是真的很强,反过来看奥恰可能也不是很善于快速调整,樊振东打出来自己的节奏,主攻奥恰的中路,他好像没什么好办法解决。再来说我最讨厌的日本,嗯,小日本,张本智和、水谷隼、伊藤美诚,一一评价下(我是外行,绝对主观评价),张本智和,父母也是中国人,原来叫张智和,改日本籍后加了个本,被微博网友笑称日本尖叫鸡,男单输给了斯洛文尼亚选手,男团里是赢了两场,但是在我看来其实实力上可能比不上全力的奥恰,主要是特别能叫,会干扰对手,如果觉得这种也是种能力我也无话可说,要是有那种吼声能直接把对手震聋的,都不需要打比赛了,我简单记了下,赢一颗球,他要叫八声,用 LD 的话来说烦都烦死了,心态是在面对一些困境顺境的应对调整适应能力,而不是对这种噪音的适应能力,至少我是这么看的,所以我很期待樊振东能好好地虐虐他,因为其他像林昀儒真的是非常优秀的新选手,所谓的国乒克星估计也是小日本自己说说的,国乒其实有很多对手,马龙跟樊振东在男单半决赛碰到的这两个几乎都差点把他们掀翻了,所以还是练好自己的实力再来吹吧,免得打脸;水谷隼的话真的是长相就是特别地讨厌,还搞出那套不打比赛的姿态,男团里被波尔干掉就是很好的例子,波尔虽然真的很强,但毕竟 40 岁了,跟伊藤美诚一起说了吧,伊藤实力说实话是有的,混双中很大一部分的赢面来自于她,刘诗雯做了手术状态不好,许昕失误稍多,但是这种赢球了就感觉我赢了你一辈子一场没输的感觉,还有那种不知道怎么形容的笑,实力强的正常打比赛的我都佩服,像女团决赛里,平野跟石川佳纯的打法其实也很凶狠,但是都是正常的比赛,即使中国队两位实力不济输了也很正常,这种就真的需要像孙颖莎这样的小魔王无视各种魔法攻击,无视你各种花里胡哨的打法的人好好教训一下,混双输了以后了解了下她,感觉实力真的不错,是个大威胁,但是其实我们孙颖莎也是经历了九个月的继续成长,像张怡宁也评价了她,可能后面就没什么空间了,当然如果由张怡宁来打她就更适合了,净整这些有的没的,就打得你没脾气。

    -

    乒乓球的说的有点多,就分篇说了,第一篇先到这。

    ]]>
    - 生活 - 运动 + MQ + RocketMQ + 消息队列 - 生活 - 运动 - 东京奥运会 - 乒乓球 - 跳水 + MQ + 消息队列 + RocketMQ
    - 聊聊 Dubbo 的 SPI 续之自适应拓展 - /2020/06/06/%E8%81%8A%E8%81%8A-Dubbo-%E7%9A%84-SPI-%E7%BB%AD%E4%B9%8B%E8%87%AA%E9%80%82%E5%BA%94%E6%8B%93%E5%B1%95/ - Adaptive

    这个应该是 Dubbo SPI 里最玄妙的东西了,一开始没懂,自适应扩展点加载,
    dubbo://123.123.123.123:1234/com.nicksxs.demo.service.HelloWorldService?anyhost=true&application=demo&default.loadbalance=random&default.service.filter=LoggerFilter&dubbo=2.5.3&interface=com.nicksxs.demo.service.HelloWorldService&logger=slf4j&methods=method1,method2,method3,method4&pid=4292&retries=0&side=provider&threadpool=fixed&threads=200&timeout=2000&timestamp=1590647155886
    那我从比较能理解的角度或者说思路去讲讲我的理解,因为直接将原理如果脱离了使用,对于我这样的理解能力比较差的可能会比较吃力,从使用场景开始讲可能会比较舒服了,这里可以看到参数里有蛮多的,举个例子,比如这个 threadpool = fixed,说明线程池使用的是 fixed 对应的实现,也就是下图的这个

    这样子似乎没啥问题了,反正就是用dubbo 的 spi 加载嘛,好像没啥问题,其实问题还是存在的,或者说不太优雅,比如要先判断我这个 fixed 对应的实现类是哪个,这里可能就有个 if-else 判断了,但是 dubbo 的开发人员似乎不太想这么做这个事情,

    -

    譬如我们在引用一个服务时,在ReferenceConfig 中的

    -
    private static final Protocol refprotocol = ExtensionLoader.getExtensionLoader(Protocol.class).getAdaptiveExtension();
    + 聊一下 RocketMQ 的消息存储四 + /2021/10/17/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E5%9B%9B/ + IndexFile 结构 hash 结构能够通过 key 寻找到对应在 CommitLog 中的位置

    +

    IndexFile 的构建则是分发给这个进行处理

    +
    class CommitLogDispatcherBuildIndex implements CommitLogDispatcher {
     
    -

    就获取了自适应拓展,

    -
    public T getAdaptiveExtension() {
    -        Object instance = cachedAdaptiveInstance.get();
    -        if (instance == null) {
    -            if (createAdaptiveInstanceError == null) {
    -                synchronized (cachedAdaptiveInstance) {
    -                    instance = cachedAdaptiveInstance.get();
    -                    if (instance == null) {
    -                        try {
    -                            instance = createAdaptiveExtension();
    -                            cachedAdaptiveInstance.set(instance);
    -                        } catch (Throwable t) {
    -                            createAdaptiveInstanceError = t;
    -                            throw new IllegalStateException("fail to create adaptive instance: " + t.toString(), t);
    -                        }
    -                    }
    -                }
    -            } else {
    -                throw new IllegalStateException("fail to create adaptive instance: " + createAdaptiveInstanceError.toString(), createAdaptiveInstanceError);
    -            }
    +    @Override
    +    public void dispatch(DispatchRequest request) {
    +        if (DefaultMessageStore.this.messageStoreConfig.isMessageIndexEnable()) {
    +            DefaultMessageStore.this.indexService.buildIndex(request);
             }
    +    }
    +}
    +public void buildIndex(DispatchRequest req) {
    +        IndexFile indexFile = retryGetAndCreateIndexFile();
    +        if (indexFile != null) {
    +            long endPhyOffset = indexFile.getEndPhyOffset();
    +            DispatchRequest msg = req;
    +            String topic = msg.getTopic();
    +            String keys = msg.getKeys();
    +            if (msg.getCommitLogOffset() < endPhyOffset) {
    +                return;
    +            }
     
    -        return (T) instance;
    -    }
    + final int tranType = MessageSysFlag.getTransactionValue(msg.getSysFlag()); + switch (tranType) { + case MessageSysFlag.TRANSACTION_NOT_TYPE: + case MessageSysFlag.TRANSACTION_PREPARED_TYPE: + case MessageSysFlag.TRANSACTION_COMMIT_TYPE: + break; + case MessageSysFlag.TRANSACTION_ROLLBACK_TYPE: + return; + } -

    这里也使用了 DCL,来锁cachedAdaptiveInstance,当缓存中没有时就去创建自适应拓展

    -
    private T createAdaptiveExtension() {
    -        try {
    -          // 获取自适应拓展类然后实例化
    -            return injectExtension((T) getAdaptiveExtensionClass().newInstance());
    -        } catch (Exception e) {
    -            throw new IllegalStateException("Can not create adaptive extension " + type + ", cause: " + e.getMessage(), e);
    -        }
    -    }
    +            if (req.getUniqKey() != null) {
    +                indexFile = putKey(indexFile, msg, buildKey(topic, req.getUniqKey()));
    +                if (indexFile == null) {
    +                    log.error("putKey error commitlog {} uniqkey {}", req.getCommitLogOffset(), req.getUniqKey());
    +                    return;
    +                }
    +            }
     
    -private Class<?> getAdaptiveExtensionClass() {
    -  			// 这里会获取拓展类,如果没有自适应的拓展类,那么就需要调用createAdaptiveExtensionClass
    -        getExtensionClasses();
    -        if (cachedAdaptiveClass != null) {
    -            return cachedAdaptiveClass;
    +            if (keys != null && keys.length() > 0) {
    +                String[] keyset = keys.split(MessageConst.KEY_SEPARATOR);
    +                for (int i = 0; i < keyset.length; i++) {
    +                    String key = keyset[i];
    +                    if (key.length() > 0) {
    +                        indexFile = putKey(indexFile, msg, buildKey(topic, key));
    +                        if (indexFile == null) {
    +                            log.error("putKey error commitlog {} uniqkey {}", req.getCommitLogOffset(), req.getUniqKey());
    +                            return;
    +                        }
    +                    }
    +                }
    +            }
    +        } else {
    +            log.error("build index error, stop building index");
             }
    -        return cachedAdaptiveClass = createAdaptiveExtensionClass();
    -    }
    -private Class<?> createAdaptiveExtensionClass() {
    -  			// 这里去生成了自适应拓展的代码,具体生成逻辑比较复杂先不展开讲
    -        String code = createAdaptiveExtensionClassCode();
    -        ClassLoader classLoader = findClassLoader();
    -        com.alibaba.dubbo.common.compiler.Compiler compiler = ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.common.compiler.Compiler.class).getAdaptiveExtension();
    -        return compiler.compile(code, classLoader);
    -    }
    - -

    生成的代码像这样

    -
    package com.alibaba.dubbo.rpc;
    +    }
    -import com.alibaba.dubbo.common.extension.ExtensionLoader; +

    配置的数量

    +
    private boolean messageIndexEnable = true;
    +private int maxHashSlotNum = 5000000;
    +private int maxIndexNum = 5000000 * 4;
    +

    最核心的其实是 IndexFile 的结构和如何写入

    +
    public boolean putKey(final String key, final long phyOffset, final long storeTimestamp) {
    +        if (this.indexHeader.getIndexCount() < this.indexNum) {
    +          // 获取 key 的 hash
    +            int keyHash = indexKeyHashMethod(key);
    +          // 计算属于哪个 slot
    +            int slotPos = keyHash % this.hashSlotNum;
    +          // 计算 slot 位置 因为结构是有个 indexHead,主要是分为三段 header,slot 和 index
    +            int absSlotPos = IndexHeader.INDEX_HEADER_SIZE + slotPos * hashSlotSize;
     
    -public class Protocol$Adaptive implements com.alibaba.dubbo.rpc.Protocol {
    -    public void destroy() {
    -        throw new UnsupportedOperationException(
    -            "method public abstract void com.alibaba.dubbo.rpc.Protocol.destroy() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
    -    }
    +            FileLock fileLock = null;
     
    -    public int getDefaultPort() {
    -        throw new UnsupportedOperationException(
    -            "method public abstract int com.alibaba.dubbo.rpc.Protocol.getDefaultPort() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
    -    }
    +            try {
     
    -    public com.alibaba.dubbo.rpc.Exporter export(
    -        com.alibaba.dubbo.rpc.Invoker arg0)
    -        throws com.alibaba.dubbo.rpc.RpcException {
    -        if (arg0 == null) {
    -            throw new IllegalArgumentException(
    -                "com.alibaba.dubbo.rpc.Invoker argument == null");
    -        }
    +                // fileLock = this.fileChannel.lock(absSlotPos, hashSlotSize,
    +                // false);
    +                int slotValue = this.mappedByteBuffer.getInt(absSlotPos);
    +                if (slotValue <= invalidIndex || slotValue > this.indexHeader.getIndexCount()) {
    +                    slotValue = invalidIndex;
    +                }
     
    -        if (arg0.getUrl() == null) {
    -            throw new IllegalArgumentException(
    -                "com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");
    -        }
    +                long timeDiff = storeTimestamp - this.indexHeader.getBeginTimestamp();
     
    -        com.alibaba.dubbo.common.URL url = arg0.getUrl();
    -        String extName = ((url.getProtocol() == null) ? "dubbo"
    -                                                      : url.getProtocol());
    +                timeDiff = timeDiff / 1000;
     
    -        if (extName == null) {
    -            throw new IllegalStateException(
    -                "Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" +
    -                url.toString() + ") use keys([protocol])");
    -        }
    +                if (this.indexHeader.getBeginTimestamp() <= 0) {
    +                    timeDiff = 0;
    +                } else if (timeDiff > Integer.MAX_VALUE) {
    +                    timeDiff = Integer.MAX_VALUE;
    +                } else if (timeDiff < 0) {
    +                    timeDiff = 0;
    +                }
     
    -        com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol) ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class)
    -                                                                                                   .getExtension(extName);
    +              // 计算索引存放位置,头部 + slot 数量 * slot 大小 + 已有的 index 数量 + index 大小
    +                int absIndexPos =
    +                    IndexHeader.INDEX_HEADER_SIZE + this.hashSlotNum * hashSlotSize
    +                        + this.indexHeader.getIndexCount() * indexSize;
    +							
    +                this.mappedByteBuffer.putInt(absIndexPos, keyHash);
    +                this.mappedByteBuffer.putLong(absIndexPos + 4, phyOffset);
    +                this.mappedByteBuffer.putInt(absIndexPos + 4 + 8, (int) timeDiff);
    +                this.mappedByteBuffer.putInt(absIndexPos + 4 + 8 + 4, slotValue);
     
    -        return extension.export(arg0);
    -    }
    +              // 存放的是数量位移,不是绝对位置
    +                this.mappedByteBuffer.putInt(absSlotPos, this.indexHeader.getIndexCount());
     
    -    public com.alibaba.dubbo.rpc.Invoker refer(java.lang.Class arg0,
    -        com.alibaba.dubbo.common.URL arg1)
    -        throws com.alibaba.dubbo.rpc.RpcException {
    -        if (arg1 == null) {
    -            throw new IllegalArgumentException("url == null");
    -        }
    +                if (this.indexHeader.getIndexCount() <= 1) {
    +                    this.indexHeader.setBeginPhyOffset(phyOffset);
    +                    this.indexHeader.setBeginTimestamp(storeTimestamp);
    +                }
     
    -        com.alibaba.dubbo.common.URL url = arg1;
    -      // 其实前面所说的逻辑就在这里呈现了
    -        String extName = ((url.getProtocol() == null) ? "dubbo"
    -                                                      : url.getProtocol());
    +                this.indexHeader.incHashSlotCount();
    +                this.indexHeader.incIndexCount();
    +                this.indexHeader.setEndPhyOffset(phyOffset);
    +                this.indexHeader.setEndTimestamp(storeTimestamp);
     
    -        if (extName == null) {
    -            throw new IllegalStateException(
    -                "Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" +
    -                url.toString() + ") use keys([protocol])");
    +                return true;
    +            } catch (Exception e) {
    +                log.error("putKey exception, Key: " + key + " KeyHashCode: " + key.hashCode(), e);
    +            } finally {
    +                if (fileLock != null) {
    +                    try {
    +                        fileLock.release();
    +                    } catch (IOException e) {
    +                        log.error("Failed to release the lock", e);
    +                    }
    +                }
    +            }
    +        } else {
    +            log.warn("Over index file capacity: index count = " + this.indexHeader.getIndexCount()
    +                + "; index max num = " + this.indexNum);
             }
    -				// 在这就是实际的通过dubbo 的 spi 去加载实际对应的扩展
    -        com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol) ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class)
    -                                                                                                   .getExtension(extName);
     
    -        return extension.refer(arg0, arg1);
    -    }
    -}
    -
    + return false; + }
    + +

    具体可以看一下这个简略的示意图

    ]]>
    - Java - Dubbo - RPC - SPI - Dubbo - SPI - Adaptive + MQ + RocketMQ + 消息队列 - Java - Dubbo - RPC - SPI - Adaptive - 自适应拓展 + MQ + 消息队列 + RocketMQ
    - 聊聊 Dubbo 的 SPI - /2020/05/31/%E8%81%8A%E8%81%8A-Dubbo-%E7%9A%84-SPI/ - SPI全称是Service Provider Interface,咋眼看跟api是不是有点相似,api是application interface,这两个其实在某些方面有类似的地方,也有蛮大的区别,比如我们基于 dubbo 的微服务,一般我们可以提供服务,然后非泛化调用的话,我们可以把 api 包提供给应用调用方,他们根据接口签名传对应参数并配置好对应的服务发现如 zk 等就可以调用我们的服务了,然后 spi 会有点类似但是是反过来的关系,相当于是一种规范,比如我约定完成这个功能需要两个有两个接口,一个是连接的,一个是断开的,其实就可以用 jdbc 的驱动举例,比较老套了,然后各个厂家去做具体的实现吧,到时候根据我接口的全限定名的文件来加载实际的实现类,然后运行的时候调用对应实现类的方法就完了

    -

    3sKdpg

    -

    看上面的图,java.sql.Driver就是 spi,对应在classpath 的 META-INF/services 目录下的这个文件,里边的内容就是具体的实现类

    -

    1590735097909

    -

    简单介绍了 Java的 SPI,再来说说 dubbo 的,dubbo 中为啥要用 SPI 呢,主要是为了框架的可扩展性和性能方面的考虑,比如协议层 dubbo 默认使用 dubbo 协议,同时也支持很多其他协议,也支持用户自己实现协议,那么跟 Java 的 SPI 会有什么区别呢,我们也来看个文件

    -

    bqxWMp

    -

    是不是看着很想,又有点不一样,在 Java 的 SPI 配置文件里每一行只有一个实现类的全限定名,在 Dubbo的 SPI配置文件中是 key=value 的形式,我们只需要对应的 key 就能加载对应的实现,

    -
    /**
    -     * 返回指定名字的扩展。如果指定名字的扩展不存在,则抛异常 {@link IllegalStateException}.
    -     *
    -     * @param name
    -     * @return
    -     */
    -	@SuppressWarnings("unchecked")
    -	public T getExtension(String name) {
    -		if (name == null || name.length() == 0)
    -		    throw new IllegalArgumentException("Extension name == null");
    -		if ("true".equals(name)) {
    -		    return getDefaultExtension();
    -		}
    -		Holder<Object> holder = cachedInstances.get(name);
    -		if (holder == null) {
    -		    cachedInstances.putIfAbsent(name, new Holder<Object>());
    -		    holder = cachedInstances.get(name);
    -		}
    -		Object instance = holder.get();
    -		if (instance == null) {
    -		    synchronized (holder) {
    -	            instance = holder.get();
    -	            if (instance == null) {
    -	                instance = createExtension(name);
    -	                holder.set(instance);
    -	            }
    -	        }
    -		}
    -		return (T) instance;
    -	}
    -

    这里其实就可以看出来第二个不同点了,就是这个cachedInstances,第一个是不用像 Java 原生的 SPI 那样去遍历加载对应的服务类,只需要通过 key 去寻找,并且寻找的时候会先从缓存的对象里去取,还有就是注意下这里的 DCL(double check lock)

    -
    @SuppressWarnings("unchecked")
    -    private T createExtension(String name) {
    -        Class<?> clazz = getExtensionClasses().get(name);
    -        if (clazz == null) {
    -            throw findException(name);
    -        }
    -        try {
    -            T instance = (T) EXTENSION_INSTANCES.get(clazz);
    -            if (instance == null) {
    -                EXTENSION_INSTANCES.putIfAbsent(clazz, (T) clazz.newInstance());
    -                instance = (T) EXTENSION_INSTANCES.get(clazz);
    -            }
    -            injectExtension(instance);
    -            Set<Class<?>> wrapperClasses = cachedWrapperClasses;
    -            if (wrapperClasses != null && wrapperClasses.size() > 0) {
    -                for (Class<?> wrapperClass : wrapperClasses) {
    -                    instance = injectExtension((T) wrapperClass.getConstructor(type).newInstance(instance));
    +    聊一下 RocketMQ 的顺序消息
    +    /2021/08/29/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E9%A1%BA%E5%BA%8F%E6%B6%88%E6%81%AF/
    +    rocketmq 里有一种比较特殊的用法,就是顺序消息,比如订单的生命周期里,在创建,支付,签收等状态轮转中,会发出来对应的消息,这里面就比较需要去保证他们的顺序,当然在处理的业务代码也可以做对应的处理,结合消息重投,但是如果这里消息就能保证顺序性了,那么业务代码就能更好的关注业务代码的处理。

    +

    首先有一种情况是全局的有序,比如对于一个 topic 里就得发送线程保证只有一个,内部的 queue 也只有一个,消费线程也只有一个,这样就能比较容易的保证全局顺序性了,但是这里的问题就是完全限制了性能,不是很现实,在真实场景里很多都是比如对于同一个订单,需要去保证状态的轮转是按照预期的顺序来,而不必要全局的有序性。

    +

    对于这类的有序性,需要在发送和接收方都有对应的处理,在发送消息中,需要去指定 selector,即MessageQueueSelector,能够以固定的方式是分配到对应的 MessageQueue

    +

    比如像 RocketMQ 中的示例

    +
    SendResult sendResult = producer.send(msg, new MessageQueueSelector() {
    +                @Override
    +                public MessageQueue select(List<MessageQueue> mqs, Message msg, Object arg) {
    +                    Long id = (Long) arg;  //message queue is selected by #salesOrderID
    +                    long index = id % mqs.size();
    +                    return mqs.get((int) index);
    +                }
    +            }, orderList.get(i).getOrderId());
    + +

    而在消费侧有几个点比较重要,首先我们要保证一个 MessageQueue只被一个消费者消费,消费队列存在broker端,要保证 MessageQueue 只被一个消费者消费,那么消费者在进行消息拉取消费时就必须向mq服务器申请队列锁,消费者申请队列锁的代码存在于RebalanceService消息队列负载的实现代码中。

    +
    List<PullRequest> pullRequestList = new ArrayList<PullRequest>();
    +        for (MessageQueue mq : mqSet) {
    +            if (!this.processQueueTable.containsKey(mq)) {
    +              // 判断是否顺序,如果是顺序消费的,则需要加锁
    +                if (isOrder && !this.lock(mq)) {
    +                    log.warn("doRebalance, {}, add a new mq failed, {}, because lock failed", consumerGroup, mq);
    +                    continue;
    +                }
    +
    +                this.removeDirtyOffset(mq);
    +                ProcessQueue pq = new ProcessQueue();
    +                long nextOffset = this.computePullFromWhere(mq);
    +                if (nextOffset >= 0) {
    +                    ProcessQueue pre = this.processQueueTable.putIfAbsent(mq, pq);
    +                    if (pre != null) {
    +                        log.info("doRebalance, {}, mq already exists, {}", consumerGroup, mq);
    +                    } else {
    +                        log.info("doRebalance, {}, add a new mq, {}", consumerGroup, mq);
    +                        PullRequest pullRequest = new PullRequest();
    +                        pullRequest.setConsumerGroup(consumerGroup);
    +                        pullRequest.setNextOffset(nextOffset);
    +                        pullRequest.setMessageQueue(mq);
    +                        pullRequest.setProcessQueue(pq);
    +                        pullRequestList.add(pullRequest);
    +                        changed = true;
    +                    }
    +                } else {
    +                    log.warn("doRebalance, {}, add new mq failed, {}", consumerGroup, mq);
                     }
                 }
    -            return instance;
    -        } catch (Throwable t) {
    -            throw new IllegalStateException("Extension instance(name: " + name + ", class: " +
    -                    type + ")  could not be instantiated: " + t.getMessage(), t);
    +        }
    + +

    在申请到锁之后会创建 pullRequest 进行消息拉取,消息拉取部分的代码实现在PullMessageService中,

    +
    @Override
    +    public void run() {
    +        log.info(this.getServiceName() + " service started");
    +
    +        while (!this.isStopped()) {
    +            try {
    +                PullRequest pullRequest = this.pullRequestQueue.take();
    +                this.pullMessage(pullRequest);
    +            } catch (InterruptedException ignored) {
    +            } catch (Exception e) {
    +                log.error("Pull Message Service Run Method exception", e);
    +            }
             }
    -    }
    -

    然后就是创建扩展了,这里如果 wrapperClasses 就会遍历生成wrapper实例,并做 setter 依赖注入,但是这里cachedWrapperClasses的来源还是有点搞不清楚,得再看下 com.alibaba.dubbo.common.extension.ExtensionLoader#loadFile的具体逻辑
    又看了遍新的代码,这个函数被抽出来了

    -
    /**
    -    * test if clazz is a wrapper class
    -    * <p>
    -    * which has Constructor with given class type as its only argument
    -    */
    -   private boolean isWrapperClass(Class<?> clazz) {
    -       try {
    -           clazz.getConstructor(type);
    -           return true;
    -       } catch (NoSuchMethodException e) {
    -           return false;
    -       }
    -   }
    -

    是否是 wrapperClass 其实就看构造函数的。

    -]]>
    - - Java - Dubbo - RPC - SPI - Dubbo - SPI - - - Java - Dubbo - RPC - SPI - - - - 聊聊 Dubbo 的容错机制 - /2020/11/22/%E8%81%8A%E8%81%8A-Dubbo-%E7%9A%84%E5%AE%B9%E9%94%99%E6%9C%BA%E5%88%B6/ - 之前看了 dubbo 的一些代码,在学习过程中,主要关注那些比较“高级”的内容,SPI,自适应扩展等,却忘了一些作为一个 rpc 框架最核心需要的部分,比如如何通信,序列化,网络,容错机制等等,因为其实这个最核心的就是远程调用,自适应扩展其实就是让代码可扩展性,可读性,更优雅等,写的搓一点其实也问题不大,但是一个合适的通信协议,序列化方法,如何容错等却是真正保证是一个 rpc 框架最重要的要素。
    首先来看这张图
    cluster
    在集群调用失败时,Dubbo 提供了多种容错方案,缺省为 failover 重试。
    各节点关系:

    -
      -
    • 这里的 InvokerProvider 的一个可调用 Service 的抽象,Invoker 封装了 Provider 地址及 Service 接口信息
    • -
    • Directory 代表多个 Invoker,可以把它看成 List<Invoker> ,但与 List 不同的是,它的值可能是动态变化的,比如注册中心推送变更
    • -
    • ClusterDirectory 中的多个 Invoker 伪装成一个 Invoker,对上层透明,伪装过程包含了容错逻辑,调用失败后,重试另一个
    • -
    • Router 负责从多个 Invoker 中按路由规则选出子集,比如读写分离,应用隔离等
    • -
    • LoadBalance 负责从多个 Invoker 中选出具体的一个用于本次调用,选的过程包含了负载均衡算法,调用失败后,需要重选
    • -
    -

    集群容错模式

    Failover Cluster

    失败自动切换,当出现失败,重试其它服务器 1。通常用于读操作,但重试会带来更长延迟。可通过 retries=”2” 来设置重试次数(不含第一次)。

    -

    重试次数配置如下:

    -

    <dubbo:service retries=”2” />
    这里重点看下 Failover Cluster集群模式的实现

    -
    public class FailoverCluster implements Cluster {
     
    -    public final static String NAME = "failover";
    +        log.info(this.getServiceName() + " service end");
    +    }
    + +

    消息拉取完后,需要提交到ConsumeMessageService中进行消费,顺序消费的实现为ConsumeMessageOrderlyService,提交消息进行消费的方法为ConsumeMessageOrderlyService#submitConsumeRequest,具体实现如下:

    +
    @Override
    +public void submitConsumeRequest(
    +    final List<MessageExt> msgs,
    +    final ProcessQueue processQueue,
    +    final MessageQueue messageQueue,
    +    final boolean dispathToConsume) {
    +    if (dispathToConsume) {
    +        ConsumeRequest consumeRequest = new ConsumeRequest(processQueue, messageQueue);
    +        this.consumeExecutor.submit(consumeRequest);
    +    }
    +}
    + +

    构建了一个ConsumeRequest对象,它是个实现了 runnable 接口的类,并提交给了线程池来并行消费,看下顺序消费的ConsumeRequest的run方法实现:

    +
    @Override
    +        public void run() {
    +            if (this.processQueue.isDropped()) {
    +                log.warn("run, the message queue not be able to consume, because it's dropped. {}", this.messageQueue);
    +                return;
    +            }
    +						// 获得 Consumer 消息队列锁,即单个线程独占
    +            final Object objLock = messageQueueLock.fetchLockObject(this.messageQueue);
    +            synchronized (objLock) {
    +              // (广播模式) 或者 (集群模式 && Broker消息队列锁有效)
    +                if (MessageModel.BROADCASTING.equals(ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.messageModel())
    +                    || (this.processQueue.isLocked() && !this.processQueue.isLockExpired())) {
    +                    final long beginTime = System.currentTimeMillis();
    +                  // 循环
    +                    for (boolean continueConsume = true; continueConsume; ) {
    +                        if (this.processQueue.isDropped()) {
    +                            log.warn("the message queue not be able to consume, because it's dropped. {}", this.messageQueue);
    +                            break;
    +                        }
    +
    +                      // 消息队列分布式锁未锁定,提交延迟获得锁并消费请求
    +                        if (MessageModel.CLUSTERING.equals(ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.messageModel())
    +                            && !this.processQueue.isLocked()) {
    +                            log.warn("the message queue not locked, so consume later, {}", this.messageQueue);
    +                            ConsumeMessageOrderlyService.this.tryLockLaterAndReconsume(this.messageQueue, this.processQueue, 10);
    +                            break;
    +                        }
    +
    +                      // 消息队列分布式锁已经过期,提交延迟获得锁并消费请求
    +                        if (MessageModel.CLUSTERING.equals(ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.messageModel())
    +                            && this.processQueue.isLockExpired()) {
    +                            log.warn("the message queue lock expired, so consume later, {}", this.messageQueue);
    +                            ConsumeMessageOrderlyService.this.tryLockLaterAndReconsume(this.messageQueue, this.processQueue, 10);
    +                            break;
    +                        }
    +												// 当前周期消费时间超过连续时长,默认:60s,提交延迟消费请求。默认情况下,每消费1分钟休息10ms。
    +                        long interval = System.currentTimeMillis() - beginTime;
    +                        if (interval > MAX_TIME_CONSUME_CONTINUOUSLY) {
    +                            ConsumeMessageOrderlyService.this.submitConsumeRequestLater(processQueue, messageQueue, 10);
    +                            break;
    +                        }
    +												// 获取消费消息。此处和并发消息请求不同,并发消息请求已经带了消费哪些消息。
    +                        final int consumeBatchSize =
    +                            ConsumeMessageOrderlyService.this.defaultMQPushConsumer.getConsumeMessageBatchMaxSize();
     
    -    public <T> Invoker<T> join(Directory<T> directory) throws RpcException {
    -        return new FailoverClusterInvoker<T>(directory);
    -    }
    +                        List<MessageExt> msgs = this.processQueue.takeMessags(consumeBatchSize);
    +                        defaultMQPushConsumerImpl.resetRetryAndNamespace(msgs, defaultMQPushConsumer.getConsumerGroup());
    +                        if (!msgs.isEmpty()) {
    +                            final ConsumeOrderlyContext context = new ConsumeOrderlyContext(this.messageQueue);
     
    -}
    -

    这个代码就非常简单,重点需要看FailoverClusterInvoker里的代码,FailoverClusterInvoker继承了AbstractClusterInvoker类,其中invoke 方法是在抽象类里实现的

    -
    @Override
    -public Result invoke(final Invocation invocation) throws RpcException {
    -    checkWhetherDestroyed();
    -    // binding attachments into invocation.
    -    // 绑定 attachments 到 invocation 中.
    -    Map<String, Object> contextAttachments = RpcContext.getContext().getObjectAttachments();
    -    if (contextAttachments != null && contextAttachments.size() != 0) {
    -        ((RpcInvocation) invocation).addObjectAttachments(contextAttachments);
    -    }
    -    // 列举 Invoker
    -    List<Invoker<T>> invokers = list(invocation);
    -    // 加载 LoadBalance 负载均衡器
    -    LoadBalance loadbalance = initLoadBalance(invokers, invocation);
    -    RpcUtils.attachInvocationIdIfAsync(getUrl(), invocation);
    -    // 调用 实际的 doInvoke 进行后续操作
    -    return doInvoke(invocation, invokers, loadbalance);
    -}
    -// 这是个抽象方法,实际是由子类实现的
    - protected abstract Result doInvoke(Invocation invocation, List<Invoker<T>> invokers,
    -                                       LoadBalance loadbalance) throws RpcException;
    -

    然后重点就是FailoverClusterInvoker中的doInvoke方法了,其实它里面也就这么一个方法

    -
    @Override
    -    @SuppressWarnings({"unchecked", "rawtypes"})
    -    public Result doInvoke(Invocation invocation, final List<Invoker<T>> invokers, LoadBalance loadbalance) throws RpcException {
    -        List<Invoker<T>> copyInvokers = invokers;
    -        checkInvokers(copyInvokers, invocation);
    -        String methodName = RpcUtils.getMethodName(invocation);
    -        // 获取重试次数,这里默认是 2 次,还有可以注意下后面的+1
    -        int len = getUrl().getMethodParameter(methodName, RETRIES_KEY, DEFAULT_RETRIES) + 1;
    -        if (len <= 0) {
    -            len = 1;
    -        }
    -        // retry loop.
    -        RpcException le = null; // last exception.
    -        List<Invoker<T>> invoked = new ArrayList<Invoker<T>>(copyInvokers.size()); // invoked invokers.
    -        Set<String> providers = new HashSet<String>(len);
    -        // 循环调用,失败重试
    -        for (int i = 0; i < len; i++) {
    -            //Reselect before retry to avoid a change of candidate `invokers`.
    -            //NOTE: if `invokers` changed, then `invoked` also lose accuracy.
    -            if (i > 0) {
    -                checkWhetherDestroyed();
    -                // 在进行重试前重新列举 Invoker,这样做的好处是,如果某个服务挂了,
    -                // 通过调用 list 可得到最新可用的 Invoker 列表
    -                copyInvokers = list(invocation);
    -                // check again
    -                // 对 copyinvokers 进行判空检查
    -                checkInvokers(copyInvokers, invocation);
    -            }
    -            // 通过负载均衡来选择 invoker
    -            Invoker<T> invoker = select(loadbalance, invocation, copyInvokers, invoked);
    -            // 将其添加到 invoker 到 invoked 列表中
    -            invoked.add(invoker);
    -            // 设置上下文
    -            RpcContext.getContext().setInvokers((List) invoked);
    -            try {
    -                // 正式调用
    -                Result result = invoker.invoke(invocation);
    -                if (le != null && logger.isWarnEnabled()) {
    -                    logger.warn("Although retry the method " + methodName
    -                            + " in the service " + getInterface().getName()
    -                            + " was successful by the provider " + invoker.getUrl().getAddress()
    -                            + ", but there have been failed providers " + providers
    -                            + " (" + providers.size() + "/" + copyInvokers.size()
    -                            + ") from the registry " + directory.getUrl().getAddress()
    -                            + " on the consumer " + NetUtils.getLocalHost()
    -                            + " using the dubbo version " + Version.getVersion() + ". Last error is: "
    -                            + le.getMessage(), le);
    -                }
    -                return result;
    -            } catch (RpcException e) {
    -                if (e.isBiz()) { // biz exception.
    -                    throw e;
    -                }
    -                le = e;
    -            } catch (Throwable e) {
    -                le = new RpcException(e.getMessage(), e);
    -            } finally {
    -                providers.add(invoker.getUrl().getAddress());
    -            }
    -        }
    -        throw new RpcException(le.getCode(), "Failed to invoke the method "
    -                + methodName + " in the service " + getInterface().getName()
    -                + ". Tried " + len + " times of the providers " + providers
    -                + " (" + providers.size() + "/" + copyInvokers.size()
    -                + ") from the registry " + directory.getUrl().getAddress()
    -                + " on the consumer " + NetUtils.getLocalHost() + " using the dubbo version "
    -                + Version.getVersion() + ". Last error is: "
    -                + le.getMessage(), le.getCause() != null ? le.getCause() : le);
    -    }
    + ConsumeOrderlyStatus status = null; + + ConsumeMessageContext consumeMessageContext = null; + if (ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.hasHook()) { + consumeMessageContext = new ConsumeMessageContext(); + consumeMessageContext + .setConsumerGroup(ConsumeMessageOrderlyService.this.defaultMQPushConsumer.getConsumerGroup()); + consumeMessageContext.setNamespace(defaultMQPushConsumer.getNamespace()); + consumeMessageContext.setMq(messageQueue); + consumeMessageContext.setMsgList(msgs); + consumeMessageContext.setSuccess(false); + // init the consume context type + consumeMessageContext.setProps(new HashMap<String, String>()); + ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.executeHookBefore(consumeMessageContext); + } + // 执行消费 + long beginTimestamp = System.currentTimeMillis(); + ConsumeReturnType returnType = ConsumeReturnType.SUCCESS; + boolean hasException = false; + try { + this.processQueue.getLockConsume().lock(); // 锁定处理队列 + if (this.processQueue.isDropped()) { + log.warn("consumeMessage, the message queue not be able to consume, because it's dropped. {}", + this.messageQueue); + break; + } + + status = messageListener.consumeMessage(Collections.unmodifiableList(msgs), context); + } catch (Throwable e) { + log.warn("consumeMessage exception: {} Group: {} Msgs: {} MQ: {}", + RemotingHelper.exceptionSimpleDesc(e), + ConsumeMessageOrderlyService.this.consumerGroup, + msgs, + messageQueue); + hasException = true; + } finally { + this.processQueue.getLockConsume().unlock(); // 解锁 + } + if (null == status + || ConsumeOrderlyStatus.ROLLBACK == status + || ConsumeOrderlyStatus.SUSPEND_CURRENT_QUEUE_A_MOMENT == status) { + log.warn("consumeMessage Orderly return not OK, Group: {} Msgs: {} MQ: {}", + ConsumeMessageOrderlyService.this.consumerGroup, + msgs, + messageQueue); + } -

    Failfast Cluster

    快速失败,只发起一次调用,失败立即报错。通常用于非幂等性的写操作,比如新增记录。

    -

    Failsafe Cluster

    失败安全,出现异常时,直接忽略。通常用于写入审计日志等操作。

    -

    Failback Cluster

    失败自动恢复,后台记录失败请求,定时重发。通常用于消息通知操作。

    -

    Forking Cluster

    并行调用多个服务器,只要一个成功即返回。通常用于实时性要求较高的读操作,但需要浪费更多服务资源。可通过 forks=”2” 来设置最大并行数。

    -

    Broadcast Cluster

    广播调用所有提供者,逐个调用,任意一台报错则报错 2。通常用于通知所有提供者更新缓存或日志等本地资源信息。

    + long consumeRT = System.currentTimeMillis() - beginTimestamp; + if (null == status) { + if (hasException) { + returnType = ConsumeReturnType.EXCEPTION; + } else { + returnType = ConsumeReturnType.RETURNNULL; + } + } else if (consumeRT >= defaultMQPushConsumer.getConsumeTimeout() * 60 * 1000) { + returnType = ConsumeReturnType.TIME_OUT; + } else if (ConsumeOrderlyStatus.SUSPEND_CURRENT_QUEUE_A_MOMENT == status) { + returnType = ConsumeReturnType.FAILED; + } else if (ConsumeOrderlyStatus.SUCCESS == status) { + returnType = ConsumeReturnType.SUCCESS; + } + + if (ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.hasHook()) { + consumeMessageContext.getProps().put(MixAll.CONSUME_CONTEXT_TYPE, returnType.name()); + } + + if (null == status) { + status = ConsumeOrderlyStatus.SUSPEND_CURRENT_QUEUE_A_MOMENT; + } + + if (ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.hasHook()) { + consumeMessageContext.setStatus(status.toString()); + consumeMessageContext + .setSuccess(ConsumeOrderlyStatus.SUCCESS == status || ConsumeOrderlyStatus.COMMIT == status); + ConsumeMessageOrderlyService.this.defaultMQPushConsumerImpl.executeHookAfter(consumeMessageContext); + } + + ConsumeMessageOrderlyService.this.getConsumerStatsManager() + .incConsumeRT(ConsumeMessageOrderlyService.this.consumerGroup, messageQueue.getTopic(), consumeRT); + + continueConsume = ConsumeMessageOrderlyService.this.processConsumeResult(msgs, status, context, this); + } else { + continueConsume = false; + } + } + } else { + if (this.processQueue.isDropped()) { + log.warn("the message queue not be able to consume, because it's dropped. {}", this.messageQueue); + return; + } + + ConsumeMessageOrderlyService.this.tryLockLaterAndReconsume(this.messageQueue, this.processQueue, 100); + } + } + }
    + +

    获取到锁对象后,使用synchronized尝试申请线程级独占锁。

    +

    如果加锁成功,同一时刻只有一个线程进行消息消费。

    +

    如果加锁失败,会延迟100ms重新尝试向broker端申请锁定messageQueue,锁定成功后重新提交消费请求

    +

    创建消息拉取任务时,消息客户端向broker端申请锁定MessageQueue,使得一个MessageQueue同一个时刻只能被一个消费客户端消费。

    +

    消息消费时,多线程针对同一个消息队列的消费先尝试使用synchronized申请独占锁,加锁成功才能进行消费,使得一个MessageQueue同一个时刻只能被一个消费客户端中一个线程消费。
    这里其实还有很重要的一点是对processQueue的加锁,这里其实是保证了在 rebalance的过程中如果 processQueue 被分配给了另一个 consumer,但是当前已经被我这个 consumer 再消费,但是没提交,就有可能出现被两个消费者消费,所以得进行加锁保证不受 rebalance 影响。

    ]]>
    - Java - Dubbo - RPC - Dubbo - 容错机制 + MQ + RocketMQ + 消息队列 - Java - Dubbo - RPC - 容错机制 + MQ + 消息队列 + RocketMQ
    - 聊一下 RocketMQ 的 NameServer 源码 - /2020/07/05/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84-NameServer-%E6%BA%90%E7%A0%81/ - 前面介绍了,nameserver相当于dubbo的注册中心,用与管理broker,broker会在启动的时候注册到nameserver,并且会发送心跳给namaserver,nameserver负责保存活跃的broker,包括master和slave,同时保存topic和topic下的队列,以及filter列表,然后为producer和consumer的请求提供服务。

    -

    启动过程

    public static void main(String[] args) {
    -        main0(args);
    -    }
    +    聊一下 SpringBoot 中使用的 cglib 作为动态代理中的一个注意点
    +    /2021/09/19/%E8%81%8A%E4%B8%80%E4%B8%8B-SpringBoot-%E4%B8%AD%E4%BD%BF%E7%94%A8%E7%9A%84-cglib-%E4%BD%9C%E4%B8%BA%E5%8A%A8%E6%80%81%E4%BB%A3%E7%90%86%E4%B8%AD%E7%9A%84%E4%B8%80%E4%B8%AA%E6%B3%A8%E6%84%8F%E7%82%B9/
    +    这个话题是由一次组内同学分享引出来的,首先在 springboot 2.x 开始默认使用了 cglib 作为 aop 的实现,这里也稍微讲一下,在一个 1.x 的老项目里,可以看到AopAutoConfiguration 是这样的

    +
    @Configuration
    +@ConditionalOnClass({ EnableAspectJAutoProxy.class, Aspect.class, Advice.class })
    +@ConditionalOnProperty(prefix = "spring.aop", name = "auto", havingValue = "true", matchIfMissing = true)
    +public class AopAutoConfiguration {
    +
    +	@Configuration
    +	@EnableAspectJAutoProxy(proxyTargetClass = false)
    +	@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "false", matchIfMissing = true)
    +	public static class JdkDynamicAutoProxyConfiguration {
    +	}
     
    -    public static NamesrvController main0(String[] args) {
    +	@Configuration
    +	@EnableAspectJAutoProxy(proxyTargetClass = true)
    +	@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "true", matchIfMissing = false)
    +	public static class CglibAutoProxyConfiguration {
    +	}
     
    -        try {
    -            NamesrvController controller = createNamesrvController(args);
    -            start(controller);
    -            String tip = "The Name Server boot success. serializeType=" + RemotingCommand.getSerializeTypeConfigInThisServer();
    -            log.info(tip);
    -            System.out.printf("%s%n", tip);
    -            return controller;
    -        } catch (Throwable e) {
    -            e.printStackTrace();
    -            System.exit(-1);
    -        }
    +}
    - return null; - }
    +

    而在 2.x 中变成了这样

    +
    @Configuration(proxyBeanMethods = false)
    +@ConditionalOnProperty(prefix = "spring.aop", name = "auto", havingValue = "true", matchIfMissing = true)
    +public class AopAutoConfiguration {
     
    -

    入口的代码时这样子,其实主要的逻辑在createNamesrvController和start方法,来看下这两个的实现

    -
    public static NamesrvController createNamesrvController(String[] args) throws IOException, JoranException {
    -        System.setProperty(RemotingCommand.REMOTING_VERSION_KEY, Integer.toString(MQVersion.CURRENT_VERSION));
    -        //PackageConflictDetect.detectFastjson();
    +	@Configuration(proxyBeanMethods = false)
    +	@ConditionalOnClass(Advice.class)
    +	static class AspectJAutoProxyingConfiguration {
     
    -        Options options = ServerUtil.buildCommandlineOptions(new Options());
    -        commandLine = ServerUtil.parseCmdLine("mqnamesrv", args, buildCommandlineOptions(options), new PosixParser());
    -        if (null == commandLine) {
    -            System.exit(-1);
    -            return null;
    -        }
    +		@Configuration(proxyBeanMethods = false)
    +		@EnableAspectJAutoProxy(proxyTargetClass = false)
    +		@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "false")
    +		static class JdkDynamicAutoProxyConfiguration {
     
    -        final NamesrvConfig namesrvConfig = new NamesrvConfig();
    -        final NettyServerConfig nettyServerConfig = new NettyServerConfig();
    -        nettyServerConfig.setListenPort(9876);
    -        if (commandLine.hasOption('c')) {
    -            String file = commandLine.getOptionValue('c');
    -            if (file != null) {
    -                InputStream in = new BufferedInputStream(new FileInputStream(file));
    -                properties = new Properties();
    -                properties.load(in);
    -                MixAll.properties2Object(properties, namesrvConfig);
    -                MixAll.properties2Object(properties, nettyServerConfig);
    +		}
     
    -                namesrvConfig.setConfigStorePath(file);
    +		@Configuration(proxyBeanMethods = false)
    +		@EnableAspectJAutoProxy(proxyTargetClass = true)
    +		@ConditionalOnProperty(prefix = "spring.aop", name = "proxy-target-class", havingValue = "true",
    +				matchIfMissing = true)
    +		static class CglibAutoProxyConfiguration {
     
    -                System.out.printf("load config properties file OK, %s%n", file);
    -                in.close();
    -            }
    -        }
    +		}
     
    -        if (commandLine.hasOption('p')) {
    -            InternalLogger console = InternalLoggerFactory.getLogger(LoggerName.NAMESRV_CONSOLE_NAME);
    -            MixAll.printObjectProperties(console, namesrvConfig);
    -            MixAll.printObjectProperties(console, nettyServerConfig);
    -            System.exit(0);
    -        }
    +	}
    - MixAll.properties2Object(ServerUtil.commandLine2Properties(commandLine), namesrvConfig); +

    为何会加载 AopAutoConfiguration 在前面的文章聊聊 SpringBoot 自动装配里已经介绍过,有兴趣的可以看下,可以发现 springboot 在 2.x 版本开始使用 cglib 作为默认的动态代理实现。

    +

    然后就是出现的问题了,代码是这样的,一个简单的基于 springboot 的带有数据库的插入,对插入代码加了事务注解,

    +
    @Mapper
    +public interface StudentMapper {
    +		// 就是插入一条数据
    +    @Insert("insert into student(name, age)" + "values ('nick', '18')")
    +    public Long insert();
    +}
     
    -        if (null == namesrvConfig.getRocketmqHome()) {
    -            System.out.printf("Please set the %s variable in your environment to match the location of the RocketMQ installation%n", MixAll.ROCKETMQ_HOME_ENV);
    -            System.exit(-2);
    -        }
    +@Component
    +public class StudentManager {
     
    -        LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
    -        JoranConfigurator configurator = new JoranConfigurator();
    -        configurator.setContext(lc);
    -        lc.reset();
    -        configurator.doConfigure(namesrvConfig.getRocketmqHome() + "/conf/logback_namesrv.xml");
    +    @Resource
    +    private StudentMapper studentMapper;
    +    
    +    public Long createStudent() {
    +        return studentMapper.insert();
    +    }
    +}
     
    -        log = InternalLoggerFactory.getLogger(LoggerName.NAMESRV_LOGGER_NAME);
    +@Component
    +public class StudentServiceImpl implements StudentService {
     
    -        MixAll.printObjectProperties(log, namesrvConfig);
    -        MixAll.printObjectProperties(log, nettyServerConfig);
    +    @Resource
    +    private StudentManager studentManager;
     
    -        final NamesrvController controller = new NamesrvController(namesrvConfig, nettyServerConfig);
    +    // 自己引用
    +    @Resource
    +    private StudentServiceImpl studentService;
     
    -        // remember all configs to prevent discard
    -        controller.getConfiguration().registerConfig(properties);
    +    @Override
    +    @Transactional
    +    public Long createStudent() {
    +        Long id = studentManager.createStudent();
    +        Long id2 = studentService.createStudent2();
    +        return 1L;
    +    }
     
    -        return controller;
    -    }
    + @Transactional + private Long createStudent2() { +// Integer t = Integer.valueOf("aaa"); + return studentManager.createStudent(); + } +}
    -

    这个方法里其实主要是读取一些配置啥的,不是很复杂,

    -
    public static NamesrvController start(final NamesrvController controller) throws Exception {
    +

    第一个公有方法 createStudent 首先调用了 manager 层的创建方法,然后再通过引入的 studentService 调用了createStudent2,我们先跑一下看看会出现啥情况,果不其然报错了,正是这个报错让我纠结了很久

    +

    EdR7oB

    +

    报了个空指针,而且是在 createStudent2 已经被调用到了,在它的内部,报的 studentManager 是 null,首先 cglib 作为动态代理它是通过继承的方式来实现的,相当于是会在调用目标对象的代理方法时调用 cglib 生成的子类,具体的代理切面逻辑在子类实现,然后在调用目标对象的目标方法,但是继承的方式对于 final 和私有方法其实是没法进行代理的,因为没法继承,所以我最开始的想法是应该通过 studentService 调用 createStudent2 的时候就报错了,也就是不会进入这个方法内部,后面才发现犯了个特别二的错误,继承的方式去调用父类的私有方法,对于 Java 来说是可以调用到的,父类的私有方法并不由子类的InstanceKlass维护,只能通过子类的InstanceKlass找到Java类对应的_super,这样间接地访问。也就是说子类其实是可以访问的,那为啥访问了会报空指针呢,这里报的是studentManager 是空的,可以往依赖注入方面去想,如果忽略依赖注入,我这个studentManager 的确是 null,那是不是就没有被依赖注入呢,但是为啥前面那个可以呢

    +

    这个问题着实查了很久,不废话来看代码

    +
    @Override
    +		protected Object invokeJoinpoint() throws Throwable {
    +			if (this.methodProxy != null) {
    +        // 这里的 target 就是被代理的 bean
    +				return this.methodProxy.invoke(this.target, this.arguments);
    +			}
    +			else {
    +				return super.invokeJoinpoint();
    +			}
    +		}
    - if (null == controller) { - throw new IllegalArgumentException("NamesrvController is null"); - } - boolean initResult = controller.initialize(); - if (!initResult) { - controller.shutdown(); - System.exit(-3); - } - Runtime.getRuntime().addShutdownHook(new ShutdownHookThread(log, new Callable<Void>() { - @Override - public Void call() throws Exception { - controller.shutdown(); - return null; - } - })); +

    这个是org.springframework.aop.framework.CglibAopProxy.CglibMethodInvocation的代码,其实它在这里不是直接调用 super 也就是父类的方法,而是通过 methodProxy 调用 target 目标对象的方法,也就是原始的 studentService bean 的方法,这样子 spring 管理的已经做好依赖注入的 bean 就能正常起作用,否则就会出现上面的问题,因为 cglib 其实是通过继承来实现,通过将调用转移到子类上加入代理逻辑,我们在简单使用的时候会直接 invokeSuper() 调用父类的方法,但是在这里 spring 的场景里需要去支持 spring 的功能逻辑,所以上面的问题就可以开始来解释了,因为 createStudent 是公共方法,cglib 可以对其进行继承代理,但是在执行逻辑的时候其实是通过调用目标对象,也就是 spring 管理的被代理的目标对象的 bean 调用的 createStudent,而对于下面的 createStudent2 方法因为是私有方法,不会走代理逻辑,也就不会有调用回目标对象的逻辑,只是通过继承关系,在子类中没有这个方法,所以会通过子类的InstanceKlass找到这个类对应的_super,然后调用父类的这个私有方法,这里要搞清楚一个点,从这个代理类直接找到其父类然后调用这个私有方法,这个类是由 cglib 生成的,不是被 spring 管理起来经过依赖注入的 bean,所以是没有 studentManager 这个依赖的,也就出现了前面的问题

    +

    而在前面提到的cglib通过methodProxy调用到目标对象,目标对象是在什么时候设置的呢,其实是在bean的生命周期中,org.springframework.beans.factory.config.BeanPostProcessor#postProcessAfterInitialization这个接口的在bean的初始化过程中,会调用实现了这个接口的方法,

    +
    @Override
    +public Object postProcessAfterInitialization(@Nullable Object bean, String beanName) {
    +	if (bean != null) {
    +		Object cacheKey = getCacheKey(bean.getClass(), beanName);
    +		if (this.earlyProxyReferences.remove(cacheKey) != bean) {
    +			return wrapIfNecessary(bean, beanName, cacheKey);
    +		}
    +	}
    +	return bean;
    +}
    - controller.start(); +

    具体的逻辑在 org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator#wrapIfNecessary这个方法里

    +
    protected Object getCacheKey(Class<?> beanClass, @Nullable String beanName) {
    +		if (StringUtils.hasLength(beanName)) {
    +			return (FactoryBean.class.isAssignableFrom(beanClass) ?
    +					BeanFactory.FACTORY_BEAN_PREFIX + beanName : beanName);
    +		}
    +		else {
    +			return beanClass;
    +		}
    +	}
     
    -        return controller;
    -    }
    + /** + * Wrap the given bean if necessary, i.e. if it is eligible for being proxied. + * @param bean the raw bean instance + * @param beanName the name of the bean + * @param cacheKey the cache key for metadata access + * @return a proxy wrapping the bean, or the raw bean instance as-is + */ + protected Object wrapIfNecessary(Object bean, String beanName, Object cacheKey) { + if (StringUtils.hasLength(beanName) && this.targetSourcedBeans.contains(beanName)) { + return bean; + } + if (Boolean.FALSE.equals(this.advisedBeans.get(cacheKey))) { + return bean; + } + if (isInfrastructureClass(bean.getClass()) || shouldSkip(bean.getClass(), beanName)) { + this.advisedBeans.put(cacheKey, Boolean.FALSE); + return bean; + } -

    这个start里主要关注initialize方法,后面就是一个停机的hook,来看下initialize方法

    -
    public boolean initialize() {
    +		// Create proxy if we have advice.
    +		Object[] specificInterceptors = getAdvicesAndAdvisorsForBean(bean.getClass(), beanName, null);
    +		if (specificInterceptors != DO_NOT_PROXY) {
    +			this.advisedBeans.put(cacheKey, Boolean.TRUE);
    +			Object proxy = createProxy(
    +					bean.getClass(), beanName, specificInterceptors, new SingletonTargetSource(bean));
    +			this.proxyTypes.put(cacheKey, proxy.getClass());
    +			return proxy;
    +		}
     
    -        this.kvConfigManager.load();
    +		this.advisedBeans.put(cacheKey, Boolean.FALSE);
    +		return bean;
    +	}
    - this.remotingServer = new NettyRemotingServer(this.nettyServerConfig, this.brokerHousekeepingService); +

    然后在 org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator#createProxy 中创建了代理类

    +]]> + + Java + SpringBoot + + + Java + Spring + SpringBoot + cglib + 事务 + + + + 聊一下 SpringBoot 中动态切换数据源的方法 + /2021/09/26/%E8%81%8A%E4%B8%80%E4%B8%8B-SpringBoot-%E4%B8%AD%E5%8A%A8%E6%80%81%E5%88%87%E6%8D%A2%E6%95%B0%E6%8D%AE%E6%BA%90%E7%9A%84%E6%96%B9%E6%B3%95/ + 其实这个表示有点不太对,应该是 Druid 动态切换数据源的方法,只是应用在了 springboot 框架中,准备代码准备了半天,之前在一次数据库迁移中使用了,发现 Druid 还是很强大的,用来做动态数据源切换很方便。

    +

    首先这里的场景跟我原来用的有点点区别,在项目中使用的是通过配置中心控制数据源切换,统一切换,而这里的例子多加了个可以根据接口注解配置

    +

    第一部分是最核心的,如何基于 Spring JDBC 和 Druid 来实现数据源切换,是继承了org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource 这个类,他的determineCurrentLookupKey方法会被调用来获得用来决定选择那个数据源的对象,也就是 lookupKey,也可以通过这个类看到就是通过这个 lookupKey 来路由找到数据源。

    +
    public class DynamicDataSource extends AbstractRoutingDataSource {
     
    -        this.remotingExecutor =
    -            Executors.newFixedThreadPool(nettyServerConfig.getServerWorkerThreads(), new ThreadFactoryImpl("RemotingExecutorThread_"));
    +    @Override
    +    protected Object determineCurrentLookupKey() {
    +        if (DatabaseContextHolder.getDatabaseType() != null) {
    +            return DatabaseContextHolder.getDatabaseType().getName();
    +        }
    +        return DatabaseType.MASTER1.getName();
    +    }
    +}
    - this.registerProcessor(); +

    而如何使用这个 lookupKey 呢,就涉及到我们的 DataSource 配置了,原来就是我们可以直接通过spring 的 jdbc 配置数据源,像这样

    +

    +

    现在我们要使用 Druid 作为数据源了,然后配置 DynamicDataSource 的参数,通过 key 来选择对应的 DataSource,也就是下面配的 master1 和 master2

    +
    <bean id="master1" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
    +          destroy-method="close"
    +          p:driverClassName="com.mysql.cj.jdbc.Driver"
    +          p:url="${master1.demo.datasource.url}"
    +          p:username="${master1.demo.datasource.username}"
    +          p:password="${master1.demo.datasource.password}"
    +          p:initialSize="5"
    +          p:minIdle="1"
    +          p:maxActive="10"
    +          p:maxWait="60000"
    +          p:timeBetweenEvictionRunsMillis="60000"
    +          p:minEvictableIdleTimeMillis="300000"
    +          p:validationQuery="SELECT 'x'"
    +          p:testWhileIdle="true"
    +          p:testOnBorrow="false"
    +          p:testOnReturn="false"
    +          p:poolPreparedStatements="false"
    +          p:maxPoolPreparedStatementPerConnectionSize="20"
    +          p:connectionProperties="config.decrypt=true"
    +          p:filters="stat,config"/>
     
    -        this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +    <bean id="master2" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
    +          destroy-method="close"
    +          p:driverClassName="com.mysql.cj.jdbc.Driver"
    +          p:url="${master2.demo.datasource.url}"
    +          p:username="${master2.demo.datasource.username}"
    +          p:password="${master2.demo.datasource.password}"
    +          p:initialSize="5"
    +          p:minIdle="1"
    +          p:maxActive="10"
    +          p:maxWait="60000"
    +          p:timeBetweenEvictionRunsMillis="60000"
    +          p:minEvictableIdleTimeMillis="300000"
    +          p:validationQuery="SELECT 'x'"
    +          p:testWhileIdle="true"
    +          p:testOnBorrow="false"
    +          p:testOnReturn="false"
    +          p:poolPreparedStatements="false"
    +          p:maxPoolPreparedStatementPerConnectionSize="20"
    +          p:connectionProperties="config.decrypt=true"
    +          p:filters="stat,config"/>
     
    -            @Override
    -            public void run() {
    -                NamesrvController.this.routeInfoManager.scanNotActiveBroker();
    -            }
    -        }, 5, 10, TimeUnit.SECONDS);
    +    <bean id="dataSource" class="com.nicksxs.springdemo.config.DynamicDataSource">
    +        <property name="targetDataSources">
    +            <map key-type="java.lang.String">
    +                <!-- master -->
    +                <entry key="master1" value-ref="master1"/>
    +                <!-- slave -->
    +                <entry key="master2" value-ref="master2"/>
    +            </map>
    +        </property>
    +        <property name="defaultTargetDataSource" ref="master1"/>
    +    </bean>
    - this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() { +

    现在就要回到头上,介绍下这个DatabaseContextHolder,这里使用了 ThreadLocal 存放这个 DatabaseType,为啥要用这个是因为前面说的我们想要让接口层面去配置不同的数据源,要把持相互隔离不受影响,就使用了 ThreadLocal,关于它也可以看我前面写的一篇文章聊聊传说中的 ThreadLocal,而 DatabaseType 就是个简单的枚举

    +
    public class DatabaseContextHolder {
    +    public static final ThreadLocal<DatabaseType> databaseTypeThreadLocal = new ThreadLocal<>();
     
    -            @Override
    -            public void run() {
    -                NamesrvController.this.kvConfigManager.printAllPeriodically();
    -            }
    -        }, 1, 10, TimeUnit.MINUTES);
    +    public static DatabaseType getDatabaseType() {
    +        return databaseTypeThreadLocal.get();
    +    }
     
    -        if (TlsSystemConfig.tlsMode != TlsMode.DISABLED) {
    -            // Register a listener to reload SslContext
    -            try {
    -                fileWatchService = new FileWatchService(
    -                    new String[] {
    -                        TlsSystemConfig.tlsServerCertPath,
    -                        TlsSystemConfig.tlsServerKeyPath,
    -                        TlsSystemConfig.tlsServerTrustCertPath
    -                    },
    -                    new FileWatchService.Listener() {
    -                        boolean certChanged, keyChanged = false;
    -                        @Override
    -                        public void onChanged(String path) {
    -                            if (path.equals(TlsSystemConfig.tlsServerTrustCertPath)) {
    -                                log.info("The trust certificate changed, reload the ssl context");
    -                                reloadServerSslContext();
    -                            }
    -                            if (path.equals(TlsSystemConfig.tlsServerCertPath)) {
    -                                certChanged = true;
    -                            }
    -                            if (path.equals(TlsSystemConfig.tlsServerKeyPath)) {
    -                                keyChanged = true;
    -                            }
    -                            if (certChanged && keyChanged) {
    -                                log.info("The certificate and private key changed, reload the ssl context");
    -                                certChanged = keyChanged = false;
    -                                reloadServerSslContext();
    -                            }
    -                        }
    -                        private void reloadServerSslContext() {
    -                            ((NettyRemotingServer) remotingServer).loadSslContext();
    -                        }
    -                    });
    -            } catch (Exception e) {
    -                log.warn("FileWatchService created error, can't load the certificate dynamically");
    -            }
    -        }
    +    public static void putDatabaseType(DatabaseType databaseType) {
    +        databaseTypeThreadLocal.set(databaseType);
    +    }
     
    -        return true;
    -    }
    + public static void clearDatabaseType() { + databaseTypeThreadLocal.remove(); + } +} +public enum DatabaseType { + MASTER1("master1", "1"), + MASTER2("master2", "2"); -

    这里的kvConfigManager主要是来加载NameServer的配置参数,存到org.apache.rocketmq.namesrv.kvconfig.KVConfigManager#configTable中,然后是以BrokerHousekeepingService对象为参数初始化NettyRemotingServer对象,BrokerHousekeepingService对象作为该Netty连接中Socket链接的监听器(ChannelEventListener);监听与Broker建立的渠道的状态(空闲、关闭、异常三个状态),并调用BrokerHousekeepingService的相应onChannel方法。其中渠道的空闲、关闭、异常状态均调用RouteInfoManager.onChannelDestory方法处理。这个BrokerHousekeepingService可以字面化地理解为broker的管家服务,这个类内部三个状态方法其实都是调用的org.apache.rocketmq.namesrv.NamesrvController#getRouteInfoManager方法,而这个RouteInfoManager里面的对象有这些

    -
    public class RouteInfoManager {
    -    private static final InternalLogger log = InternalLoggerFactory.getLogger(LoggerName.NAMESRV_LOGGER_NAME);
    -    private final static long BROKER_CHANNEL_EXPIRED_TIME = 1000 * 60 * 2;
    -    private final ReadWriteLock lock = new ReentrantReadWriteLock();
    -  // topic与queue的对应关系
    -    private final HashMap<String/* topic */, List<QueueData>> topicQueueTable;
    -  // Broker名称与broker属性的map
    -    private final HashMap<String/* brokerName */, BrokerData> brokerAddrTable;
    -  // 集群与broker集合的对应关系
    -    private final HashMap<String/* clusterName */, Set<String/* brokerName */>> clusterAddrTable;
    -  // 活跃的broker信息
    -    private final HashMap<String/* brokerAddr */, BrokerLiveInfo> brokerLiveTable;
    -  // Broker地址与过滤器
    -    private final HashMap<String/* brokerAddr */, List<String>/* Filter Server */> filterServerTable;
    + private final String name; + private final String value; -

    然后接下去就是初始化了一个线程池,然后注册默认的处理类this.registerProcessor();默认都是这个处理器去处理请求 org.apache.rocketmq.namesrv.processor.DefaultRequestProcessor#DefaultRequestProcessor然后是初始化两个定时任务

    -

    第一是每10秒检查一遍Broker的状态的定时任务,调用scanNotActiveBroker方法;遍历brokerLiveTable集合,查看每个broker的最后更新时间(BrokerLiveInfo.lastUpdateTimestamp)是否超过2分钟,若超过则关闭该broker的渠道并调用RouteInfoManager.onChannelDestory方法清理RouteInfoManager类的topicQueueTable、brokerAddrTable、clusterAddrTable、filterServerTable成员变量。

    -
    this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +    DatabaseType(String name, String value) {
    +        this.name = name;
    +        this.value = value;
    +    }
     
    -            @Override
    -            public void run() {
    -                NamesrvController.this.routeInfoManager.scanNotActiveBroker();
    -            }
    -        }, 5, 10, TimeUnit.SECONDS);
    -public void scanNotActiveBroker() {
    -        Iterator<Entry<String, BrokerLiveInfo>> it = this.brokerLiveTable.entrySet().iterator();
    -        while (it.hasNext()) {
    -            Entry<String, BrokerLiveInfo> next = it.next();
    -            long last = next.getValue().getLastUpdateTimestamp();
    -            if ((last + BROKER_CHANNEL_EXPIRED_TIME) < System.currentTimeMillis()) {
    -                RemotingUtil.closeChannel(next.getValue().getChannel());
    -                it.remove();
    -                log.warn("The broker channel expired, {} {}ms", next.getKey(), BROKER_CHANNEL_EXPIRED_TIME);
    -                this.onChannelDestroy(next.getKey(), next.getValue().getChannel());
    -            }
    -        }
    +    public String getName() {
    +        return name;
         }
     
    -    public void onChannelDestroy(String remoteAddr, Channel channel) {
    -        String brokerAddrFound = null;
    -        if (channel != null) {
    -            try {
    -                try {
    -                    this.lock.readLock().lockInterruptibly();
    -                    Iterator<Entry<String, BrokerLiveInfo>> itBrokerLiveTable =
    -                        this.brokerLiveTable.entrySet().iterator();
    -                    while (itBrokerLiveTable.hasNext()) {
    -                        Entry<String, BrokerLiveInfo> entry = itBrokerLiveTable.next();
    -                        if (entry.getValue().getChannel() == channel) {
    -                            brokerAddrFound = entry.getKey();
    -                            break;
    -                        }
    -                    }
    -                } finally {
    -                    this.lock.readLock().unlock();
    -                }
    -            } catch (Exception e) {
    -                log.error("onChannelDestroy Exception", e);
    -            }
    -        }
    +    public String getValue() {
    +        return value;
    +    }
     
    -        if (null == brokerAddrFound) {
    -            brokerAddrFound = remoteAddr;
    -        } else {
    -            log.info("the broker's channel destroyed, {}, clean it's data structure at once", brokerAddrFound);
    +    public static DatabaseType getDatabaseType(String name) {
    +        if (MASTER2.name.equals(name)) {
    +            return MASTER2;
             }
    +        return MASTER1;
    +    }
    +}
    - if (brokerAddrFound != null && brokerAddrFound.length() > 0) { +

    这边可以看到就是通过动态地通过putDatabaseType设置lookupKey来进行数据源切换,要通过接口注解配置来进行设置的话,我们就需要一个注解

    +
    @Retention(RetentionPolicy.RUNTIME)
    +@Target(ElementType.METHOD)
    +public @interface DataSource {
    +    String value();
    +}
    - try { - try { - this.lock.writeLock().lockInterruptibly(); - this.brokerLiveTable.remove(brokerAddrFound); - this.filterServerTable.remove(brokerAddrFound); - String brokerNameFound = null; - boolean removeBrokerName = false; - Iterator<Entry<String, BrokerData>> itBrokerAddrTable = - this.brokerAddrTable.entrySet().iterator(); - while (itBrokerAddrTable.hasNext() && (null == brokerNameFound)) { - BrokerData brokerData = itBrokerAddrTable.next().getValue(); +

    这个注解可以配置在我的接口方法上,比如这样

    +
    public interface StudentService {
     
    -                        Iterator<Entry<Long, String>> it = brokerData.getBrokerAddrs().entrySet().iterator();
    -                        while (it.hasNext()) {
    -                            Entry<Long, String> entry = it.next();
    -                            Long brokerId = entry.getKey();
    -                            String brokerAddr = entry.getValue();
    -                            if (brokerAddr.equals(brokerAddrFound)) {
    -                                brokerNameFound = brokerData.getBrokerName();
    -                                it.remove();
    -                                log.info("remove brokerAddr[{}, {}] from brokerAddrTable, because channel destroyed",
    -                                    brokerId, brokerAddr);
    -                                break;
    -                            }
    -                        }
    +    @DataSource("master1")
    +    public Student queryOne();
     
    -                        if (brokerData.getBrokerAddrs().isEmpty()) {
    -                            removeBrokerName = true;
    -                            itBrokerAddrTable.remove();
    -                            log.info("remove brokerName[{}] from brokerAddrTable, because channel destroyed",
    -                                brokerData.getBrokerName());
    -                        }
    -                    }
    +    @DataSource("master2")
    +    public Student queryAnother();
     
    -                    if (brokerNameFound != null && removeBrokerName) {
    -                        Iterator<Entry<String, Set<String>>> it = this.clusterAddrTable.entrySet().iterator();
    -                        while (it.hasNext()) {
    -                            Entry<String, Set<String>> entry = it.next();
    -                            String clusterName = entry.getKey();
    -                            Set<String> brokerNames = entry.getValue();
    -                            boolean removed = brokerNames.remove(brokerNameFound);
    -                            if (removed) {
    -                                log.info("remove brokerName[{}], clusterName[{}] from clusterAddrTable, because channel destroyed",
    -                                    brokerNameFound, clusterName);
    +}
    - if (brokerNames.isEmpty()) { - log.info("remove the clusterName[{}] from clusterAddrTable, because channel destroyed and no broker in this cluster", - clusterName); - it.remove(); - } +

    通过切面来进行数据源的设置

    +
    @Aspect
    +@Component
    +@Order(-1)
    +public class DataSourceAspect {
     
    -                                break;
    -                            }
    -                        }
    -                    }
    +    @Pointcut("execution(* com.nicksxs.springdemo.service..*.*(..))")
    +    public void pointCut() {
     
    -                    if (removeBrokerName) {
    -                        Iterator<Entry<String, List<QueueData>>> itTopicQueueTable =
    -                            this.topicQueueTable.entrySet().iterator();
    -                        while (itTopicQueueTable.hasNext()) {
    -                            Entry<String, List<QueueData>> entry = itTopicQueueTable.next();
    -                            String topic = entry.getKey();
    -                            List<QueueData> queueDataList = entry.getValue();
    +    }
     
    -                            Iterator<QueueData> itQueueData = queueDataList.iterator();
    -                            while (itQueueData.hasNext()) {
    -                                QueueData queueData = itQueueData.next();
    -                                if (queueData.getBrokerName().equals(brokerNameFound)) {
    -                                    itQueueData.remove();
    -                                    log.info("remove topic[{} {}], from topicQueueTable, because channel destroyed",
    -                                        topic, queueData);
    -                                }
    -                            }
     
    -                            if (queueDataList.isEmpty()) {
    -                                itTopicQueueTable.remove();
    -                                log.info("remove topic[{}] all queue, from topicQueueTable, because channel destroyed",
    -                                    topic);
    -                            }
    -                        }
    -                    }
    -                } finally {
    -                    this.lock.writeLock().unlock();
    -                }
    -            } catch (Exception e) {
    -                log.error("onChannelDestroy Exception", e);
    +    @Before("pointCut()")
    +    public void before(JoinPoint point)
    +    {
    +        Object target = point.getTarget();
    +        System.out.println(target.toString());
    +        String method = point.getSignature().getName();
    +        System.out.println(method);
    +        Class<?>[] classz = target.getClass().getInterfaces();
    +        Class<?>[] parameterTypes = ((MethodSignature) point.getSignature())
    +                .getMethod().getParameterTypes();
    +        try {
    +            Method m = classz[0].getMethod(method, parameterTypes);
    +            System.out.println("method"+ m.getName());
    +            if (m.isAnnotationPresent(DataSource.class)) {
    +                DataSource data = m.getAnnotation(DataSource.class);
    +                System.out.println("dataSource:"+data.value());
    +                DatabaseContextHolder.putDatabaseType(DatabaseType.getDatabaseType(data.value()));
                 }
    -        }
    -    }
    -

    第二个是每10分钟打印一次NameServer的配置参数。即KVConfigManager.configTable变量的内容。

    -
    this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +        } catch (Exception e) {
    +            e.printStackTrace();
    +        }
    +    }
     
    -            @Override
    -            public void run() {
    -                NamesrvController.this.kvConfigManager.printAllPeriodically();
    -            }
    -        }, 1, 10, TimeUnit.MINUTES);
    + @After("pointCut()") + public void after() { + DatabaseContextHolder.clearDatabaseType(); + } +}
    -

    然后这个初始化就差不多完成了,后面只需要把remotingServer start一下就好了

    -

    处理请求

    直接上代码,其实主体是swtich case去判断

    +

    通过接口判断是否带有注解跟是注解的值,DatabaseType 的配置不太好,不过先忽略了,然后在切点后进行清理

    +

    这是我 master1 的数据,

    +

    +

    master2 的数据

    +

    +

    然后跑一下简单的 demo,

    @Override
    -    public RemotingCommand processRequest(ChannelHandlerContext ctx,
    -        RemotingCommand request) throws RemotingCommandException {
    +public void run(String...args) {
    +	LOGGER.info("run here");
    +	System.out.println(studentService.queryOne());
    +	System.out.println(studentService.queryAnother());
     
    -        if (ctx != null) {
    -            log.debug("receive request, {} {} {}",
    -                request.getCode(),
    -                RemotingHelper.parseChannelRemoteAddr(ctx.channel()),
    -                request);
    -        }
    +}
    +

    看一下运行结果

    +

    +

    其实这个方法应用场景不止可以用来迁移数据库,还能实现精细化的读写数据源分离之类的,算是做个简单记录和分享。

    +]]>
    + + Java + SpringBoot + + + Java + Spring + SpringBoot + Druid + 数据源动态切换 + +
    + + 聊一下 SpringBoot 设置非 web 应用的方法 + /2022/07/31/%E8%81%8A%E4%B8%80%E4%B8%8B-SpringBoot-%E8%AE%BE%E7%BD%AE%E9%9D%9E-web-%E5%BA%94%E7%94%A8%E7%9A%84%E6%96%B9%E6%B3%95/ + 寻找原因

    这次碰到一个比较奇怪的问题,应该统一发布脚本统一给应用启动参数传了个 -Dserver.port=xxxx,其实这个端口会作为 dubbo 的服务端口,并且应用也不提供 web 服务,但是在启动的时候会报embedded servlet container failed to start. port xxxx was already in use就觉得有点奇怪,仔细看了启动参数猜测可能是这个问题,有可能是依赖的二方三方包带了 spring-web 的包,然后基于 springboot 的 auto configuration 会把这个自己加载,就在本地复现了下这个问题,结果的确是这个问题。

    +

    解决方案

    老版本 设置 spring 不带 web 功能

    比较老的 springboot 版本,可以使用

    +
    SpringApplication app = new SpringApplication(XXXXXApplication.class);
    +app.setWebEnvironment(false);
    +app.run(args);
    +

    新版本

    新版本的 springboot (>= 2.0.0)可以在 properties 里配置

    +
    spring.main.web-application-type=none
    +

    或者

    +
    SpringApplication app = new SpringApplication(XXXXXApplication.class);
    +app.setWebApplicationType(WebApplicationType.NONE);
    +

    这个枚举里还有其他两种配置

    +
    public enum WebApplicationType {
     
    -        switch (request.getCode()) {
    -            case RequestCode.PUT_KV_CONFIG:
    -                return this.putKVConfig(ctx, request);
    -            case RequestCode.GET_KV_CONFIG:
    -                return this.getKVConfig(ctx, request);
    -            case RequestCode.DELETE_KV_CONFIG:
    -                return this.deleteKVConfig(ctx, request);
    -            case RequestCode.QUERY_DATA_VERSION:
    -                return queryBrokerTopicConfig(ctx, request);
    -            case RequestCode.REGISTER_BROKER:
    -                Version brokerVersion = MQVersion.value2Version(request.getVersion());
    -                if (brokerVersion.ordinal() >= MQVersion.Version.V3_0_11.ordinal()) {
    -                    return this.registerBrokerWithFilterServer(ctx, request);
    -                } else {
    -                    return this.registerBroker(ctx, request);
    -                }
    -            case RequestCode.UNREGISTER_BROKER:
    -                return this.unregisterBroker(ctx, request);
    -            case RequestCode.GET_ROUTEINTO_BY_TOPIC:
    -                return this.getRouteInfoByTopic(ctx, request);
    -            case RequestCode.GET_BROKER_CLUSTER_INFO:
    -                return this.getBrokerClusterInfo(ctx, request);
    -            case RequestCode.WIPE_WRITE_PERM_OF_BROKER:
    -                return this.wipeWritePermOfBroker(ctx, request);
    -            case RequestCode.GET_ALL_TOPIC_LIST_FROM_NAMESERVER:
    -                return getAllTopicListFromNameserver(ctx, request);
    -            case RequestCode.DELETE_TOPIC_IN_NAMESRV:
    -                return deleteTopicInNamesrv(ctx, request);
    -            case RequestCode.GET_KVLIST_BY_NAMESPACE:
    -                return this.getKVListByNamespace(ctx, request);
    -            case RequestCode.GET_TOPICS_BY_CLUSTER:
    -                return this.getTopicsByCluster(ctx, request);
    -            case RequestCode.GET_SYSTEM_TOPIC_LIST_FROM_NS:
    -                return this.getSystemTopicListFromNs(ctx, request);
    -            case RequestCode.GET_UNIT_TOPIC_LIST:
    -                return this.getUnitTopicList(ctx, request);
    -            case RequestCode.GET_HAS_UNIT_SUB_TOPIC_LIST:
    -                return this.getHasUnitSubTopicList(ctx, request);
    -            case RequestCode.GET_HAS_UNIT_SUB_UNUNIT_TOPIC_LIST:
    -                return this.getHasUnitSubUnUnitTopicList(ctx, request);
    -            case RequestCode.UPDATE_NAMESRV_CONFIG:
    -                return this.updateConfig(ctx, request);
    -            case RequestCode.GET_NAMESRV_CONFIG:
    -                return this.getConfig(ctx, request);
    -            default:
    -                break;
    -        }
    -        return null;
    -    }
    + /** + * The application should not run as a web application and should not start an + * embedded web server. + */ + NONE, -

    以broker注册为例,

    -
    case RequestCode.REGISTER_BROKER:
    -                Version brokerVersion = MQVersion.value2Version(request.getVersion());
    -                if (brokerVersion.ordinal() >= MQVersion.Version.V3_0_11.ordinal()) {
    -                    return this.registerBrokerWithFilterServer(ctx, request);
    -                } else {
    -                    return this.registerBroker(ctx, request);
    -                }
    + /** + * The application should run as a servlet-based web application and should start an + * embedded servlet web server. + */ + SERVLET, -

    做了个简单的版本管理,我们看下前面一个的代码

    -
    public RemotingCommand registerBrokerWithFilterServer(ChannelHandlerContext ctx, RemotingCommand request)
    -    throws RemotingCommandException {
    -    final RemotingCommand response = RemotingCommand.createResponseCommand(RegisterBrokerResponseHeader.class);
    -    final RegisterBrokerResponseHeader responseHeader = (RegisterBrokerResponseHeader) response.readCustomHeader();
    -    final RegisterBrokerRequestHeader requestHeader =
    -        (RegisterBrokerRequestHeader) request.decodeCommandCustomHeader(RegisterBrokerRequestHeader.class);
    +	/**
    +	 * The application should run as a reactive web application and should start an
    +	 * embedded reactive web server.
    +	 */
    +	REACTIVE
    +
    +}
    +

    相当于是把none 的类型和包括 servlet 和 reactive 放进了枚举类进行控制。

    +]]>
    + + Java + SpringBoot + + + Java + Spring + SpringBoot + 自动装配 + AutoConfiguration + +
    + + 聊一下关于怎么陪伴学习 + /2022/11/06/%E8%81%8A%E4%B8%80%E4%B8%8B%E5%85%B3%E4%BA%8E%E6%80%8E%E4%B9%88%E9%99%AA%E4%BC%B4%E5%AD%A6%E4%B9%A0/ + 这是一次开车过程中结合网上的一些微博想到的,开车是之前LD买了车后,陪领导练车,其实在一开始练车的时候,我们已经是找了相对很空的封闭路段,路上基本很少有车,偶尔有一辆车,但是LD还是很害怕,车速还只有十几的时候,还很远的对面来车的时候就觉得很慌了,这个时候如果以常理肯定会说这样子完全不用怕,如果克服恐惧真的这么容易的话,问题就不会那么纠结了,人生是很难完全感同身受的,唯有降低预设的基准让事情从头理清楚,害怕了我们就先休息,有车了我们就停下,先适应完全没车的情况,变得更慢一点,如果这时候着急一点,反而会起到反效果,比如只是说不要怕,接着开,甚至有点厌烦了,那基本这个练车也不太成得了了,而正好是有耐心的一起慢慢练习,还有就是第二件是切身体会,就是当道路本来是两条道,但是封了一条的时候,这时候开车如果是像我这样的新手,如果开车时左右边看着的话,车肯定开不好,因为那样会一直左右调整,反而更容易控制不好左右的距离,蹭到旁边的隔离栏,正确的方式应该是专注于正前方的路,这样才能保证左右边距离尽可能均匀,而不是顾左失右或者顾右失左,所以很多陪伴学习需要注意的是方式和耐心,能够识别到关键点那是最好的,但是有时候更需要的是耐心,纯靠耐心不一定能解决问题,但是可能会找到问题关键点。

    +]]>
    + + 生活 + + + 生活 + +
    + + 聊在东京奥运会闭幕式这天-二 + /2021/08/19/%E8%81%8A%E5%9C%A8%E4%B8%9C%E4%BA%AC%E5%A5%A5%E8%BF%90%E4%BC%9A%E9%97%AD%E5%B9%95%E5%BC%8F%E8%BF%99%E5%A4%A9-%E4%BA%8C/ + 前面主要还是说了乒乓球的,因为整体还是乒乓球的比赛赛程比较长,比较激烈,扣人心弦,记得那会在公司没法看视频直播,就偶尔看看奥运会官网的比分,还几场马龙樊振东,陈梦被赢了一局就吓尿了,已经被混双那场留下了阴影,其实后面去看看16 年的比赛什么的,中国队虽然拿了这么多冠军,但是自改成 11 分制以来,其实都没办法那么完全彻底地碾压,而且像张继科,樊振东,陈梦都多少有些慢热,现在看来是马龙比较全面,不过看过了马龙,刘国梁,许昕等的一些过往经历,都是起起伏伏,即使是张怡宁这样的大魔王,也经历过逢王楠不赢的阶段,心态无法调整好。

    +

    其实最开始是举重项目,侯志慧是女子 49 公斤级的冠军,这场比赛是全场都看,其实看中国队的举重比赛跟跳水有点像,每一轮都需要到最后才能等到中国队,跳水其实每轮都有,举重会按照自己报的试举重量进行排名,重量大的会在后面举,抓举和挺举各三次试举机会,有时候会看着比较焦虑,一直等不来,怕一上来就没试举成功,而且中国队一般试举重量就是很大的,容易一次试举不成功就马上下一次,连着举其实压力会非常大,说实话真的是外行看热闹,每次都是多懂一点点,这次由于实在是比较无聊,所以看的会比较专心点,对于对应的规则知识点也会多了解一点,同时对于举重,没想到我们国家的这些运动员有这么强,最后八块金牌拿了七块,有一块拿到银牌也是有点因为教练的策略问题,这里其实也稍微知道一点,因为报上去的试举重量是谁小谁先举,并且我们国家都是实力非常强的,所以都会报大一些,并且如果这个项目有实力相近的选手,会比竞对多报一公斤,这样子如果前面竞争对手没举成功,我们把握就很大了,最坏的情况即使对手试举成功了,我们还有机会搏一把,比如谌利军这样的,只是说说感想,举重运动员真的是个比较单纯的群体,而且训练是非常痛苦枯燥的,非常容易受伤,像挺举就有点会压迫呼吸通道,看到好几个都是脸憋得通红,甚至直接因为压迫气道而没法完成后面的挺举,像之前 16 年的举重比赛,有个运动员没成功夺冠就非常愧疚地哭着说对不起祖国,没有获得冠军,这是怎么样的一种歉疚,怎么样的一种纯粹的感情呢,相对应地来说,我又要举男足,男篮的例子了,很多人在那嘲笑我这样对男足男篮愤愤不平的人,说可能我这样的人都没交个税(从缴纳个税的数量比例来算有可能),只是这里有两个打脸的事情,我足额缴纳个税,接近 20%的薪资都缴了个税,并且我买的所有东西都缴了增值税,如果让我这样缴纳了个税,缴纳了增值税的有个人的投票权,我一定会投票不让男足男篮使用我缴纳我的税金,用我们的缴纳的税,打出这么烂的表现,想乒乓球混双,拿个亚军都会被喷,那可是世界第二了,而且是就输了那么一场,足球篮球呢,我觉得是一方面成绩差,因为比赛真的有状态跟心态的影响,偶尔有一场失误非常正常,NBA 被黑八的有这么多强队,但是如果像男足男篮,成绩是越来越差,用范志毅的话来说就是脸都不要了,还有就是精气神,要在比赛中打出胜负欲,保持这种争胜心,才有机会再进步,前火箭队主教练鲁迪·汤姆贾诺维奇的话,“永远不要低估冠军的决心”,即使我现在打不过你,我会在下一次,下下次打败你,竞技体育永远要有这种精神,可以接受一时的失败,但是要保持永远争胜的心。

    +

    第一块金牌是杨倩拿下的,中国队拿奥运会首金也是有政治任务的,而恰恰杨倩这个金牌也有点碰巧是对手最后一枪失误了,当然竞技体育,特别是射击,真的是容不得一点点失误,像前面几届的美国神通埃蒙斯,失之毫厘差之千里,但是这个具体评价就比较少,唯一一点让我比较出戏的就是杨倩真的非常像王刚的徒弟漆二娃,哈哈,微博上也有挺多人觉得像,射击还是个比较可以接受年纪稍大的运动员,需要经验和稳定性,相对来说爆发力体力稍好一点,像庞伟这样的,混合团体10米气手枪金牌,36 岁可能其他项目已经是年龄很大了,不过前面说的举重的吕小军军神也是年纪蛮大了,但是非常强,而且在油管上简直就是个神,相对来说射击是关注比较少,杨倩的也只是看了后面拿到冠军这个结果,有些因为时间或者电视上没放,但是成绩还是不错的,没多少喷点。

    +

    第二篇先到这,纯主观,轻喷。

    +]]>
    + + 生活 + 运动 + + + 生活 + 运动 + 东京奥运会 + 举重 + 射击 + +
    + + 聊在东京奥运会闭幕式这天 + /2021/08/08/%E8%81%8A%E5%9C%A8%E4%B8%9C%E4%BA%AC%E5%A5%A5%E8%BF%90%E4%BC%9A%E9%97%AD%E5%B9%95%E5%BC%8F%E8%BF%99%E5%A4%A9/ + 这届奥运会有可能是我除了 08 年之外关注度最高的一届奥运会,原因可能是因为最近也没什么电影综艺啥的比较好看,前面看跑男倒还行,不是说多好,也就图一乐,最开始看向往的生活觉得也挺不错的,后面变成了统一来了就看黄磊做饭,然后夸黄磊做饭好吃,然后无聊的说这种生活多么多么美好,单调无聊,差不多弃了,这里面还包括大华不在了,大华其实个人还是有点呱噪的,但是挺能搞气氛,并且也有才华,彭彭跟子枫人是不讨厌,但是撑不起来,所以也导致了前面说的结果,都变成了黄磊彩虹屁现场,虽然偶尔怀疑他是否做得好吃,但是整体还是承认的,可对于一个这么多季了的综艺来说,这样也有点单调了。

    +

    还有奥运会像乒乓球,篮球,跳水这几个都是比较喜欢的项目,篮球🏀是从初中开始就也有在自己在玩的,虽然因为身高啊体质基本没什么天赋,但也算是热爱驱动,差不多到了大学因为比较懒才放下了,初中高中还是有很多时间花在上面,不像别人经常打球跑跑跳跳还能长高,我反而一直都没长个子,也因为这个其实蛮遗憾的,后面想想可能是初中的时候远走他乡去住宿读初中,伙食营养跟不上导致的,可能也是自己的一厢情愿吧,总觉得应该还能再长点个,这一点以后我自己的小孩我应该会特别注意这段时间他/她的营养摄入了;然后像乒乓球🏓的话其实小时候是比较讨厌的,因为家里人,父母都没有这类爱好习惯,我也完全不会,但是小学那会班里的“恶霸”就以公平之名要我们男生每个人都排队打几个,我这种不会的反而又要被嘲笑,这个小时候的阴影让我有了比较不好的印象,对它🏓的改观是在工作以后,前司跟一个同样不会的同事经常在饭点会打打,而且那会因为这个其实身体得到了锻炼,感觉是个不错的健身方式,然后又是中国的优势项目,小时候跟着我爸看孔令辉,那时候完全不懂,印象就觉得老瓦很牛,后面其实也没那么关注,上一届好像看了马龙的比赛;跳水也是中国的优势项目,而且也比较简单,不是说真的很简单,就是我们外行观众看着就看看水花大小图一乐。

    +

    这次的观赛过程其实主要还是在乒乓球上面,现在都有点怪我的乌鸦嘴,混双我一直就不太放心(关我什么事,我也不专业),然后一直觉得混双是不是不太稳,结果那天看的时候也是因为央视一套跟五套都没放,我家的有线电视又是没有五加体育,然后用电脑投屏就很卡,看得也很不爽,同时那天因为看的时候已经是 2:0还是再后面点了,一方面是不懂每队只有一次暂停,另一方面不知道已经用过暂停了,所以就特别怀疑马林是不是只会无脑鼓掌,感觉作为教练,并且是前冠军,应该也能在擦汗间隙,或者局间休息调整的时候多给些战略战术的指导,类似于后面男团小胖打奥恰洛夫,像解说都看出来了,其实奥恰那会的反手特别顺,打得特别凶,那就不能让他能特别顺手的上反手位,这当然是外行比较粗浅的看法,在混双过程中其实除了这个,还有让人很不爽的就是我们的许昕跟刘诗雯有种拿不出破釜沉舟的勇气的感觉,在气势上完全被对面两位日本乒乓球最讨厌的两位对手压制着,我都要输了,我就每一颗都要不让你好过,因为真的不是说没有实力,对面水谷隼也不是多么多么强的,可能上一届男团许昕输给他还留着阴影,但是以许昕 19 年男单世界第一的实力,目前也排在世界前三,输一场不应该成为这种阻力,有一些失误也很可惜,后面孙颖莎真的打得很解气,第二局一度以为又要被翻盘了,结果来了个大逆转,女团的时候也是,感觉在心态上孙颖莎还是很值得肯定的,少年老成这个词很适合,看其他的视频也觉得莎莎萌萌哒,陈梦总感觉还欠一点王者霸气,王曼昱还是可以的,反手很凶,我觉得其实这一届日本女乒就是打得非常凶,即使像平野这种看着很弱的妹子,打的球可一点都不弱,也是这种凶狠的打法,有点要压制中国的感觉,这方面我觉得是需要改善的,打这种要不就是实力上的完全碾压,要不就是我实力虽然比较没强多少,但是你狠我打得比你还狠,越保守越要输,我不太成熟的想法是这样的,还有就是面对逆境,这个就要说到男队的了,樊振东跟马龙在半决赛的时候,特别是男团的第二盘,樊振东打奥恰很好地表现了这个心态,当然樊振东我不是特别了解,据说他是比较善于打相持,比较善于焦灼的情况,不过整体看下来樊振东还是有一些欠缺,就是面对情况的快速转变应对,这一点也是马龙特别强的,虽然看起来马龙真的是年纪大了点,没有 16 年那会满头发胶,油光锃亮的大背头和满脸胶原蛋白的意气风发,大范围运动能力也弱了一点,但是经验和能力的全面性也让他最终能再次站上巅峰,还是非常佩服的,这里提一下张继科,虽然可能天赋上是张继科更强点,但是男乒一直都是有强者出现,能为国家队付出这么多并且一直坚持的可不是人人都可以,即使现在同台竞技马龙打不过张继科我还是更喜欢马龙。再来说说我们的对手,主要分三部分,德国男乒,里面有波尔(我刚听到的时候在想怎么又出来个叫波尔的,是不是像举重的石智勇一样,又来一个同名的,结果是同一个,已经四十岁了),这真是个让人敬佩的对手,实力强,经验丰富,虽然男单有点可惜,但是帮助男团获得银牌,真的是起到了定海神针的作用;奥恰洛夫,以前完全不认识,或者说看过也忘了,这次是真的有点意外,竟然有这么个马龙护法,其实他也坦言非常想赢一次马龙,并且在半决赛也非常接近赢得比赛,是个实力非常强的对手,就是男团半决赛输给张本智和有点可惜,有点被打蒙的感觉,佛朗西斯卡的话也是实力不错的选手,就是可能被奥恰跟波尔的光芒掩盖了,跟波尔在男团第一盘男双的比赛中打败日本那对男双也是非常给力的,说实话,最后打国乒的时候的确是国乒实力更胜一筹,但是即使德国赢了我也是充满尊敬,拼的就是硬实力,就像第二盘奥恰打樊振东,反手是真的很强,反过来看奥恰可能也不是很善于快速调整,樊振东打出来自己的节奏,主攻奥恰的中路,他好像没什么好办法解决。再来说我最讨厌的日本,嗯,小日本,张本智和、水谷隼、伊藤美诚,一一评价下(我是外行,绝对主观评价),张本智和,父母也是中国人,原来叫张智和,改日本籍后加了个本,被微博网友笑称日本尖叫鸡,男单输给了斯洛文尼亚选手,男团里是赢了两场,但是在我看来其实实力上可能比不上全力的奥恰,主要是特别能叫,会干扰对手,如果觉得这种也是种能力我也无话可说,要是有那种吼声能直接把对手震聋的,都不需要打比赛了,我简单记了下,赢一颗球,他要叫八声,用 LD 的话来说烦都烦死了,心态是在面对一些困境顺境的应对调整适应能力,而不是对这种噪音的适应能力,至少我是这么看的,所以我很期待樊振东能好好地虐虐他,因为其他像林昀儒真的是非常优秀的新选手,所谓的国乒克星估计也是小日本自己说说的,国乒其实有很多对手,马龙跟樊振东在男单半决赛碰到的这两个几乎都差点把他们掀翻了,所以还是练好自己的实力再来吹吧,免得打脸;水谷隼的话真的是长相就是特别地讨厌,还搞出那套不打比赛的姿态,男团里被波尔干掉就是很好的例子,波尔虽然真的很强,但毕竟 40 岁了,跟伊藤美诚一起说了吧,伊藤实力说实话是有的,混双中很大一部分的赢面来自于她,刘诗雯做了手术状态不好,许昕失误稍多,但是这种赢球了就感觉我赢了你一辈子一场没输的感觉,还有那种不知道怎么形容的笑,实力强的正常打比赛的我都佩服,像女团决赛里,平野跟石川佳纯的打法其实也很凶狠,但是都是正常的比赛,即使中国队两位实力不济输了也很正常,这种就真的需要像孙颖莎这样的小魔王无视各种魔法攻击,无视你各种花里胡哨的打法的人好好教训一下,混双输了以后了解了下她,感觉实力真的不错,是个大威胁,但是其实我们孙颖莎也是经历了九个月的继续成长,像张怡宁也评价了她,可能后面就没什么空间了,当然如果由张怡宁来打她就更适合了,净整这些有的没的,就打得你没脾气。

    +

    乒乓球的说的有点多,就分篇说了,第一篇先到这。

    +]]>
    + + 生活 + 运动 + + + 生活 + 运动 + 东京奥运会 + 乒乓球 + 跳水 + +
    + + 聊聊 Dubbo 的 SPI 续之自适应拓展 + /2020/06/06/%E8%81%8A%E8%81%8A-Dubbo-%E7%9A%84-SPI-%E7%BB%AD%E4%B9%8B%E8%87%AA%E9%80%82%E5%BA%94%E6%8B%93%E5%B1%95/ + Adaptive

    这个应该是 Dubbo SPI 里最玄妙的东西了,一开始没懂,自适应扩展点加载,
    dubbo://123.123.123.123:1234/com.nicksxs.demo.service.HelloWorldService?anyhost=true&application=demo&default.loadbalance=random&default.service.filter=LoggerFilter&dubbo=2.5.3&interface=com.nicksxs.demo.service.HelloWorldService&logger=slf4j&methods=method1,method2,method3,method4&pid=4292&retries=0&side=provider&threadpool=fixed&threads=200&timeout=2000&timestamp=1590647155886
    那我从比较能理解的角度或者说思路去讲讲我的理解,因为直接将原理如果脱离了使用,对于我这样的理解能力比较差的可能会比较吃力,从使用场景开始讲可能会比较舒服了,这里可以看到参数里有蛮多的,举个例子,比如这个 threadpool = fixed,说明线程池使用的是 fixed 对应的实现,也就是下图的这个

    这样子似乎没啥问题了,反正就是用dubbo 的 spi 加载嘛,好像没啥问题,其实问题还是存在的,或者说不太优雅,比如要先判断我这个 fixed 对应的实现类是哪个,这里可能就有个 if-else 判断了,但是 dubbo 的开发人员似乎不太想这么做这个事情,

    +

    譬如我们在引用一个服务时,在ReferenceConfig 中的

    +
    private static final Protocol refprotocol = ExtensionLoader.getExtensionLoader(Protocol.class).getAdaptiveExtension();
    - if (!checksum(ctx, request, requestHeader)) { - response.setCode(ResponseCode.SYSTEM_ERROR); - response.setRemark("crc32 not match"); - return response; - } +

    就获取了自适应拓展,

    +
    public T getAdaptiveExtension() {
    +        Object instance = cachedAdaptiveInstance.get();
    +        if (instance == null) {
    +            if (createAdaptiveInstanceError == null) {
    +                synchronized (cachedAdaptiveInstance) {
    +                    instance = cachedAdaptiveInstance.get();
    +                    if (instance == null) {
    +                        try {
    +                            instance = createAdaptiveExtension();
    +                            cachedAdaptiveInstance.set(instance);
    +                        } catch (Throwable t) {
    +                            createAdaptiveInstanceError = t;
    +                            throw new IllegalStateException("fail to create adaptive instance: " + t.toString(), t);
    +                        }
    +                    }
    +                }
    +            } else {
    +                throw new IllegalStateException("fail to create adaptive instance: " + createAdaptiveInstanceError.toString(), createAdaptiveInstanceError);
    +            }
    +        }
     
    -    RegisterBrokerBody registerBrokerBody = new RegisterBrokerBody();
    +        return (T) instance;
    +    }
    - if (request.getBody() != null) { +

    这里也使用了 DCL,来锁cachedAdaptiveInstance,当缓存中没有时就去创建自适应拓展

    +
    private T createAdaptiveExtension() {
             try {
    -            registerBrokerBody = RegisterBrokerBody.decode(request.getBody(), requestHeader.isCompressed());
    +          // 获取自适应拓展类然后实例化
    +            return injectExtension((T) getAdaptiveExtensionClass().newInstance());
             } catch (Exception e) {
    -            throw new RemotingCommandException("Failed to decode RegisterBrokerBody", e);
    +            throw new IllegalStateException("Can not create adaptive extension " + type + ", cause: " + e.getMessage(), e);
             }
    -    } else {
    -        registerBrokerBody.getTopicConfigSerializeWrapper().getDataVersion().setCounter(new AtomicLong(0));
    -        registerBrokerBody.getTopicConfigSerializeWrapper().getDataVersion().setTimestamp(0);
         }
     
    -    RegisterBrokerResult result = this.namesrvController.getRouteInfoManager().registerBroker(
    -        requestHeader.getClusterName(),
    -        requestHeader.getBrokerAddr(),
    -        requestHeader.getBrokerName(),
    -        requestHeader.getBrokerId(),
    -        requestHeader.getHaServerAddr(),
    -        registerBrokerBody.getTopicConfigSerializeWrapper(),
    -        registerBrokerBody.getFilterServerList(),
    -        ctx.channel());
    +private Class<?> getAdaptiveExtensionClass() {
    +  			// 这里会获取拓展类,如果没有自适应的拓展类,那么就需要调用createAdaptiveExtensionClass
    +        getExtensionClasses();
    +        if (cachedAdaptiveClass != null) {
    +            return cachedAdaptiveClass;
    +        }
    +        return cachedAdaptiveClass = createAdaptiveExtensionClass();
    +    }
    +private Class<?> createAdaptiveExtensionClass() {
    +  			// 这里去生成了自适应拓展的代码,具体生成逻辑比较复杂先不展开讲
    +        String code = createAdaptiveExtensionClassCode();
    +        ClassLoader classLoader = findClassLoader();
    +        com.alibaba.dubbo.common.compiler.Compiler compiler = ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.common.compiler.Compiler.class).getAdaptiveExtension();
    +        return compiler.compile(code, classLoader);
    +    }
    - responseHeader.setHaServerAddr(result.getHaServerAddr()); - responseHeader.setMasterAddr(result.getMasterAddr()); +

    生成的代码像这样

    +
    package com.alibaba.dubbo.rpc;
     
    -    byte[] jsonValue = this.namesrvController.getKvConfigManager().getKVListByNamespace(NamesrvUtil.NAMESPACE_ORDER_TOPIC_CONFIG);
    -    response.setBody(jsonValue);
    +import com.alibaba.dubbo.common.extension.ExtensionLoader;
     
    -    response.setCode(ResponseCode.SUCCESS);
    -    response.setRemark(null);
    -    return response;
    -}
    -

    可以看到主要的逻辑还是在org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#registerBroker这个方法里

    -
    public RegisterBrokerResult registerBroker(
    -        final String clusterName,
    -        final String brokerAddr,
    -        final String brokerName,
    -        final long brokerId,
    -        final String haServerAddr,
    -        final TopicConfigSerializeWrapper topicConfigWrapper,
    -        final List<String> filterServerList,
    -        final Channel channel) {
    -        RegisterBrokerResult result = new RegisterBrokerResult();
    -        try {
    -            try {
    -                this.lock.writeLock().lockInterruptibly();
    +public class Protocol$Adaptive implements com.alibaba.dubbo.rpc.Protocol {
    +    public void destroy() {
    +        throw new UnsupportedOperationException(
    +            "method public abstract void com.alibaba.dubbo.rpc.Protocol.destroy() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
    +    }
     
    -              // 更新这个clusterAddrTable
    -                Set<String> brokerNames = this.clusterAddrTable.get(clusterName);
    -                if (null == brokerNames) {
    -                    brokerNames = new HashSet<String>();
    -                    this.clusterAddrTable.put(clusterName, brokerNames);
    -                }
    -                brokerNames.add(brokerName);
    +    public int getDefaultPort() {
    +        throw new UnsupportedOperationException(
    +            "method public abstract int com.alibaba.dubbo.rpc.Protocol.getDefaultPort() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
    +    }
     
    -                boolean registerFirst = false;
    +    public com.alibaba.dubbo.rpc.Exporter export(
    +        com.alibaba.dubbo.rpc.Invoker arg0)
    +        throws com.alibaba.dubbo.rpc.RpcException {
    +        if (arg0 == null) {
    +            throw new IllegalArgumentException(
    +                "com.alibaba.dubbo.rpc.Invoker argument == null");
    +        }
     
    -              // 更新brokerAddrTable
    -                BrokerData brokerData = this.brokerAddrTable.get(brokerName);
    -                if (null == brokerData) {
    -                    registerFirst = true;
    -                    brokerData = new BrokerData(clusterName, brokerName, new HashMap<Long, String>());
    -                    this.brokerAddrTable.put(brokerName, brokerData);
    -                }
    -                Map<Long, String> brokerAddrsMap = brokerData.getBrokerAddrs();
    -                //Switch slave to master: first remove <1, IP:PORT> in namesrv, then add <0, IP:PORT>
    -                //The same IP:PORT must only have one record in brokerAddrTable
    -                Iterator<Entry<Long, String>> it = brokerAddrsMap.entrySet().iterator();
    -                while (it.hasNext()) {
    -                    Entry<Long, String> item = it.next();
    -                    if (null != brokerAddr && brokerAddr.equals(item.getValue()) && brokerId != item.getKey()) {
    -                        it.remove();
    -                    }
    -                }
    +        if (arg0.getUrl() == null) {
    +            throw new IllegalArgumentException(
    +                "com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");
    +        }
     
    -                String oldAddr = brokerData.getBrokerAddrs().put(brokerId, brokerAddr);
    -                registerFirst = registerFirst || (null == oldAddr);
    +        com.alibaba.dubbo.common.URL url = arg0.getUrl();
    +        String extName = ((url.getProtocol() == null) ? "dubbo"
    +                                                      : url.getProtocol());
     
    -              // 更新了org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#topicQueueTable中的数据
    -                if (null != topicConfigWrapper
    -                    && MixAll.MASTER_ID == brokerId) {
    -                    if (this.isBrokerTopicConfigChanged(brokerAddr, topicConfigWrapper.getDataVersion())
    -                        || registerFirst) {
    -                        ConcurrentMap<String, TopicConfig> tcTable =
    -                            topicConfigWrapper.getTopicConfigTable();
    -                        if (tcTable != null) {
    -                            for (Map.Entry<String, TopicConfig> entry : tcTable.entrySet()) {
    -                                this.createAndUpdateQueueData(brokerName, entry.getValue());
    -                            }
    -                        }
    -                    }
    -                }
    +        if (extName == null) {
    +            throw new IllegalStateException(
    +                "Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" +
    +                url.toString() + ") use keys([protocol])");
    +        }
     
    -              // 更新活跃broker信息
    -                BrokerLiveInfo prevBrokerLiveInfo = this.brokerLiveTable.put(brokerAddr,
    -                    new BrokerLiveInfo(
    -                        System.currentTimeMillis(),
    -                        topicConfigWrapper.getDataVersion(),
    -                        channel,
    -                        haServerAddr));
    -                if (null == prevBrokerLiveInfo) {
    -                    log.info("new broker registered, {} HAServer: {}", brokerAddr, haServerAddr);
    -                }
    +        com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol) ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class)
    +                                                                                                   .getExtension(extName);
     
    -              // 处理filter
    -                if (filterServerList != null) {
    -                    if (filterServerList.isEmpty()) {
    -                        this.filterServerTable.remove(brokerAddr);
    -                    } else {
    -                        this.filterServerTable.put(brokerAddr, filterServerList);
    -                    }
    -                }
    +        return extension.export(arg0);
    +    }
     
    -              // 当当前broker非master时返回master信息
    -                if (MixAll.MASTER_ID != brokerId) {
    -                    String masterAddr = brokerData.getBrokerAddrs().get(MixAll.MASTER_ID);
    -                    if (masterAddr != null) {
    -                        BrokerLiveInfo brokerLiveInfo = this.brokerLiveTable.get(masterAddr);
    -                        if (brokerLiveInfo != null) {
    -                            result.setHaServerAddr(brokerLiveInfo.getHaServerAddr());
    -                            result.setMasterAddr(masterAddr);
    -                        }
    -                    }
    +    public com.alibaba.dubbo.rpc.Invoker refer(java.lang.Class arg0,
    +        com.alibaba.dubbo.common.URL arg1)
    +        throws com.alibaba.dubbo.rpc.RpcException {
    +        if (arg1 == null) {
    +            throw new IllegalArgumentException("url == null");
    +        }
    +
    +        com.alibaba.dubbo.common.URL url = arg1;
    +      // 其实前面所说的逻辑就在这里呈现了
    +        String extName = ((url.getProtocol() == null) ? "dubbo"
    +                                                      : url.getProtocol());
    +
    +        if (extName == null) {
    +            throw new IllegalStateException(
    +                "Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" +
    +                url.toString() + ") use keys([protocol])");
    +        }
    +				// 在这就是实际的通过dubbo 的 spi 去加载实际对应的扩展
    +        com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol) ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class)
    +                                                                                                   .getExtension(extName);
    +
    +        return extension.refer(arg0, arg1);
    +    }
    +}
    +
    +]]>
    + + Java + Dubbo + RPC + SPI + Dubbo + SPI + Adaptive + + + Java + Dubbo + RPC + SPI + Adaptive + 自适应拓展 + +
    + + 聊聊 Dubbo 的 SPI + /2020/05/31/%E8%81%8A%E8%81%8A-Dubbo-%E7%9A%84-SPI/ + SPI全称是Service Provider Interface,咋眼看跟api是不是有点相似,api是application interface,这两个其实在某些方面有类似的地方,也有蛮大的区别,比如我们基于 dubbo 的微服务,一般我们可以提供服务,然后非泛化调用的话,我们可以把 api 包提供给应用调用方,他们根据接口签名传对应参数并配置好对应的服务发现如 zk 等就可以调用我们的服务了,然后 spi 会有点类似但是是反过来的关系,相当于是一种规范,比如我约定完成这个功能需要两个有两个接口,一个是连接的,一个是断开的,其实就可以用 jdbc 的驱动举例,比较老套了,然后各个厂家去做具体的实现吧,到时候根据我接口的全限定名的文件来加载实际的实现类,然后运行的时候调用对应实现类的方法就完了

    +

    3sKdpg

    +

    看上面的图,java.sql.Driver就是 spi,对应在classpath 的 META-INF/services 目录下的这个文件,里边的内容就是具体的实现类

    +

    1590735097909

    +

    简单介绍了 Java的 SPI,再来说说 dubbo 的,dubbo 中为啥要用 SPI 呢,主要是为了框架的可扩展性和性能方面的考虑,比如协议层 dubbo 默认使用 dubbo 协议,同时也支持很多其他协议,也支持用户自己实现协议,那么跟 Java 的 SPI 会有什么区别呢,我们也来看个文件

    +

    bqxWMp

    +

    是不是看着很想,又有点不一样,在 Java 的 SPI 配置文件里每一行只有一个实现类的全限定名,在 Dubbo的 SPI配置文件中是 key=value 的形式,我们只需要对应的 key 就能加载对应的实现,

    +
    /**
    +     * 返回指定名字的扩展。如果指定名字的扩展不存在,则抛异常 {@link IllegalStateException}.
    +     *
    +     * @param name
    +     * @return
    +     */
    +	@SuppressWarnings("unchecked")
    +	public T getExtension(String name) {
    +		if (name == null || name.length() == 0)
    +		    throw new IllegalArgumentException("Extension name == null");
    +		if ("true".equals(name)) {
    +		    return getDefaultExtension();
    +		}
    +		Holder<Object> holder = cachedInstances.get(name);
    +		if (holder == null) {
    +		    cachedInstances.putIfAbsent(name, new Holder<Object>());
    +		    holder = cachedInstances.get(name);
    +		}
    +		Object instance = holder.get();
    +		if (instance == null) {
    +		    synchronized (holder) {
    +	            instance = holder.get();
    +	            if (instance == null) {
    +	                instance = createExtension(name);
    +	                holder.set(instance);
    +	            }
    +	        }
    +		}
    +		return (T) instance;
    +	}
    +

    这里其实就可以看出来第二个不同点了,就是这个cachedInstances,第一个是不用像 Java 原生的 SPI 那样去遍历加载对应的服务类,只需要通过 key 去寻找,并且寻找的时候会先从缓存的对象里去取,还有就是注意下这里的 DCL(double check lock)

    +
    @SuppressWarnings("unchecked")
    +    private T createExtension(String name) {
    +        Class<?> clazz = getExtensionClasses().get(name);
    +        if (clazz == null) {
    +            throw findException(name);
    +        }
    +        try {
    +            T instance = (T) EXTENSION_INSTANCES.get(clazz);
    +            if (instance == null) {
    +                EXTENSION_INSTANCES.putIfAbsent(clazz, (T) clazz.newInstance());
    +                instance = (T) EXTENSION_INSTANCES.get(clazz);
    +            }
    +            injectExtension(instance);
    +            Set<Class<?>> wrapperClasses = cachedWrapperClasses;
    +            if (wrapperClasses != null && wrapperClasses.size() > 0) {
    +                for (Class<?> wrapperClass : wrapperClasses) {
    +                    instance = injectExtension((T) wrapperClass.getConstructor(type).newInstance(instance));
                     }
    -            } finally {
    -                this.lock.writeLock().unlock();
                 }
    -        } catch (Exception e) {
    -            log.error("registerBroker Exception", e);
    +            return instance;
    +        } catch (Throwable t) {
    +            throw new IllegalStateException("Extension instance(name: " + name + ", class: " +
    +                    type + ")  could not be instantiated: " + t.getMessage(), t);
             }
    +    }
    +

    然后就是创建扩展了,这里如果 wrapperClasses 就会遍历生成wrapper实例,并做 setter 依赖注入,但是这里cachedWrapperClasses的来源还是有点搞不清楚,得再看下 com.alibaba.dubbo.common.extension.ExtensionLoader#loadFile的具体逻辑
    又看了遍新的代码,这个函数被抽出来了

    +
    /**
    +    * test if clazz is a wrapper class
    +    * <p>
    +    * which has Constructor with given class type as its only argument
    +    */
    +   private boolean isWrapperClass(Class<?> clazz) {
    +       try {
    +           clazz.getConstructor(type);
    +           return true;
    +       } catch (NoSuchMethodException e) {
    +           return false;
    +       }
    +   }
    +

    是否是 wrapperClass 其实就看构造函数的。

    +]]>
    + + Java + Dubbo + RPC + SPI + Dubbo + SPI + + + Java + Dubbo + RPC + SPI + +
    + + 聊聊 Dubbo 的容错机制 + /2020/11/22/%E8%81%8A%E8%81%8A-Dubbo-%E7%9A%84%E5%AE%B9%E9%94%99%E6%9C%BA%E5%88%B6/ + 之前看了 dubbo 的一些代码,在学习过程中,主要关注那些比较“高级”的内容,SPI,自适应扩展等,却忘了一些作为一个 rpc 框架最核心需要的部分,比如如何通信,序列化,网络,容错机制等等,因为其实这个最核心的就是远程调用,自适应扩展其实就是让代码可扩展性,可读性,更优雅等,写的搓一点其实也问题不大,但是一个合适的通信协议,序列化方法,如何容错等却是真正保证是一个 rpc 框架最重要的要素。
    首先来看这张图
    cluster
    在集群调用失败时,Dubbo 提供了多种容错方案,缺省为 failover 重试。
    各节点关系:

    +
      +
    • 这里的 InvokerProvider 的一个可调用 Service 的抽象,Invoker 封装了 Provider 地址及 Service 接口信息
    • +
    • Directory 代表多个 Invoker,可以把它看成 List<Invoker> ,但与 List 不同的是,它的值可能是动态变化的,比如注册中心推送变更
    • +
    • ClusterDirectory 中的多个 Invoker 伪装成一个 Invoker,对上层透明,伪装过程包含了容错逻辑,调用失败后,重试另一个
    • +
    • Router 负责从多个 Invoker 中按路由规则选出子集,比如读写分离,应用隔离等
    • +
    • LoadBalance 负责从多个 Invoker 中选出具体的一个用于本次调用,选的过程包含了负载均衡算法,调用失败后,需要重选
    • +
    +

    集群容错模式

    Failover Cluster

    失败自动切换,当出现失败,重试其它服务器 1。通常用于读操作,但重试会带来更长延迟。可通过 retries=”2” 来设置重试次数(不含第一次)。

    +

    重试次数配置如下:

    +

    <dubbo:service retries=”2” />
    这里重点看下 Failover Cluster集群模式的实现

    +
    public class FailoverCluster implements Cluster {
     
    -        return result;
    -    }
    - -

    这个是注册 broker 的逻辑,再看下根据 topic 获取 broker 信息和 topic 信息,org.apache.rocketmq.namesrv.processor.DefaultRequestProcessor#getRouteInfoByTopic 主要是这个方法的逻辑

    -
    public RemotingCommand getRouteInfoByTopic(ChannelHandlerContext ctx,
    -        RemotingCommand request) throws RemotingCommandException {
    -        final RemotingCommand response = RemotingCommand.createResponseCommand(null);
    -        final GetRouteInfoRequestHeader requestHeader =
    -            (GetRouteInfoRequestHeader) request.decodeCommandCustomHeader(GetRouteInfoRequestHeader.class);
    -
    -        TopicRouteData topicRouteData = this.namesrvController.getRouteInfoManager().pickupTopicRouteData(requestHeader.getTopic());
    +    public final static String NAME = "failover";
     
    -        if (topicRouteData != null) {
    -            if (this.namesrvController.getNamesrvConfig().isOrderMessageEnable()) {
    -                String orderTopicConf =
    -                    this.namesrvController.getKvConfigManager().getKVConfig(NamesrvUtil.NAMESPACE_ORDER_TOPIC_CONFIG,
    -                        requestHeader.getTopic());
    -                topicRouteData.setOrderTopicConf(orderTopicConf);
    -            }
    +    public <T> Invoker<T> join(Directory<T> directory) throws RpcException {
    +        return new FailoverClusterInvoker<T>(directory);
    +    }
     
    -            byte[] content = topicRouteData.encode();
    -            response.setBody(content);
    -            response.setCode(ResponseCode.SUCCESS);
    -            response.setRemark(null);
    -            return response;
    -        }
    +}
    +

    这个代码就非常简单,重点需要看FailoverClusterInvoker里的代码,FailoverClusterInvoker继承了AbstractClusterInvoker类,其中invoke 方法是在抽象类里实现的

    +
    @Override
    +public Result invoke(final Invocation invocation) throws RpcException {
    +    checkWhetherDestroyed();
    +    // binding attachments into invocation.
    +    // 绑定 attachments 到 invocation 中.
    +    Map<String, Object> contextAttachments = RpcContext.getContext().getObjectAttachments();
    +    if (contextAttachments != null && contextAttachments.size() != 0) {
    +        ((RpcInvocation) invocation).addObjectAttachments(contextAttachments);
    +    }
    +    // 列举 Invoker
    +    List<Invoker<T>> invokers = list(invocation);
    +    // 加载 LoadBalance 负载均衡器
    +    LoadBalance loadbalance = initLoadBalance(invokers, invocation);
    +    RpcUtils.attachInvocationIdIfAsync(getUrl(), invocation);
    +    // 调用 实际的 doInvoke 进行后续操作
    +    return doInvoke(invocation, invokers, loadbalance);
    +}
    +// 这是个抽象方法,实际是由子类实现的
    + protected abstract Result doInvoke(Invocation invocation, List<Invoker<T>> invokers,
    +                                       LoadBalance loadbalance) throws RpcException;
    +

    然后重点就是FailoverClusterInvoker中的doInvoke方法了,其实它里面也就这么一个方法

    +
    @Override
    +    @SuppressWarnings({"unchecked", "rawtypes"})
    +    public Result doInvoke(Invocation invocation, final List<Invoker<T>> invokers, LoadBalance loadbalance) throws RpcException {
    +        List<Invoker<T>> copyInvokers = invokers;
    +        checkInvokers(copyInvokers, invocation);
    +        String methodName = RpcUtils.getMethodName(invocation);
    +        // 获取重试次数,这里默认是 2 次,还有可以注意下后面的+1
    +        int len = getUrl().getMethodParameter(methodName, RETRIES_KEY, DEFAULT_RETRIES) + 1;
    +        if (len <= 0) {
    +            len = 1;
    +        }
    +        // retry loop.
    +        RpcException le = null; // last exception.
    +        List<Invoker<T>> invoked = new ArrayList<Invoker<T>>(copyInvokers.size()); // invoked invokers.
    +        Set<String> providers = new HashSet<String>(len);
    +        // 循环调用,失败重试
    +        for (int i = 0; i < len; i++) {
    +            //Reselect before retry to avoid a change of candidate `invokers`.
    +            //NOTE: if `invokers` changed, then `invoked` also lose accuracy.
    +            if (i > 0) {
    +                checkWhetherDestroyed();
    +                // 在进行重试前重新列举 Invoker,这样做的好处是,如果某个服务挂了,
    +                // 通过调用 list 可得到最新可用的 Invoker 列表
    +                copyInvokers = list(invocation);
    +                // check again
    +                // 对 copyinvokers 进行判空检查
    +                checkInvokers(copyInvokers, invocation);
    +            }
    +            // 通过负载均衡来选择 invoker
    +            Invoker<T> invoker = select(loadbalance, invocation, copyInvokers, invoked);
    +            // 将其添加到 invoker 到 invoked 列表中
    +            invoked.add(invoker);
    +            // 设置上下文
    +            RpcContext.getContext().setInvokers((List) invoked);
    +            try {
    +                // 正式调用
    +                Result result = invoker.invoke(invocation);
    +                if (le != null && logger.isWarnEnabled()) {
    +                    logger.warn("Although retry the method " + methodName
    +                            + " in the service " + getInterface().getName()
    +                            + " was successful by the provider " + invoker.getUrl().getAddress()
    +                            + ", but there have been failed providers " + providers
    +                            + " (" + providers.size() + "/" + copyInvokers.size()
    +                            + ") from the registry " + directory.getUrl().getAddress()
    +                            + " on the consumer " + NetUtils.getLocalHost()
    +                            + " using the dubbo version " + Version.getVersion() + ". Last error is: "
    +                            + le.getMessage(), le);
    +                }
    +                return result;
    +            } catch (RpcException e) {
    +                if (e.isBiz()) { // biz exception.
    +                    throw e;
    +                }
    +                le = e;
    +            } catch (Throwable e) {
    +                le = new RpcException(e.getMessage(), e);
    +            } finally {
    +                providers.add(invoker.getUrl().getAddress());
    +            }
    +        }
    +        throw new RpcException(le.getCode(), "Failed to invoke the method "
    +                + methodName + " in the service " + getInterface().getName()
    +                + ". Tried " + len + " times of the providers " + providers
    +                + " (" + providers.size() + "/" + copyInvokers.size()
    +                + ") from the registry " + directory.getUrl().getAddress()
    +                + " on the consumer " + NetUtils.getLocalHost() + " using the dubbo version "
    +                + Version.getVersion() + ". Last error is: "
    +                + le.getMessage(), le.getCause() != null ? le.getCause() : le);
    +    }
    - response.setCode(ResponseCode.TOPIC_NOT_EXIST); - response.setRemark("No topic route info in name server for the topic: " + requestHeader.getTopic() - + FAQUrl.suggestTodo(FAQUrl.APPLY_TOPIC_URL)); - return response; - }
    -

    首先调用org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#pickupTopicRouteDataorg.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#topicQueueTable获取到org.apache.rocketmq.common.protocol.route.QueueData这里面存了 brokerName,再通过org.apache.rocketmq.namesrv.routeinfo.RouteInfoManager#brokerAddrTable里获取到 broker 的地址信息等,然后再获取 orderMessage 的配置。

    -

    简要分析了下 RocketMQ 的 NameServer 的代码,比较粗粒度。

    +

    Failfast Cluster

    快速失败,只发起一次调用,失败立即报错。通常用于非幂等性的写操作,比如新增记录。

    +

    Failsafe Cluster

    失败安全,出现异常时,直接忽略。通常用于写入审计日志等操作。

    +

    Failback Cluster

    失败自动恢复,后台记录失败请求,定时重发。通常用于消息通知操作。

    +

    Forking Cluster

    并行调用多个服务器,只要一个成功即返回。通常用于实时性要求较高的读操作,但需要浪费更多服务资源。可通过 forks=”2” 来设置最大并行数。

    +

    Broadcast Cluster

    广播调用所有提供者,逐个调用,任意一台报错则报错 2。通常用于通知所有提供者更新缓存或日志等本地资源信息。

    ]]> - MQ - RocketMQ - 消息队列 - RocketMQ - 中间件 - RocketMQ + Java + Dubbo - RPC + Dubbo + 容错机制 - MQ - 消息队列 - RocketMQ - 削峰填谷 - 中间件 - 源码解析 - NameServer + Java + Dubbo + RPC + 容错机制 @@ -14723,54 +13861,6 @@ public Result invoke(final Invocation invocation) throws RpcException { 类加载 - - 聊聊 Linux 下的 top 命令 - /2021/03/28/%E8%81%8A%E8%81%8A-Linux-%E4%B8%8B%E7%9A%84-top-%E5%91%BD%E4%BB%A4/ - top 命令在日常的 Linux 使用中,特别是做一些服务器的简单状态查看,排查故障都起了比较大的作用,但是由于这个命令看到的东西比较多,一般只会看部分,或者说像我这样就会比较片面地看一些信息,比如默认是进程维度的,可以在启动命令的时候加-H进入线程模式

    -
    -H  :Threads-mode operation
    -            Instructs top to display individual threads.  Without this command-line option a summation of all threads in each process  is  shown.   Later
    -            this can be changed with the `H' interactive command.
    -

    这样就能用在 Java 中去 jstack 中找到对应的线程
    其实还有比较重要的两个操作,
    一个是在 top 启动状态下,按c键,这样能把比如说是一个 Java 进程,具体的进程命令显示出来
    像这样
    执行前是这样

    执行后是这样

    第二个就是排序了

    -
    SORTING of task window
    -
    -          For  compatibility,  this top supports most of the former top sort keys.  Since this is primarily a service to former top users, these commands
    -          do not appear on any help screen.
    -                command   sorted-field                  supported
    -                A         start time (non-display)      No
    -                M         %MEM                          Yes
    -                N         PID                           Yes
    -                P         %CPU                          Yes
    -                T         TIME+                         Yes
    -
    -          Before using any of the following sort provisions, top suggests that you temporarily turn on column highlighting using the `x' interactive com‐
    -          mand.  That will help ensure that the actual sort environment matches your intent.
    -
    -          The following interactive commands will only be honored when the current sort field is visible.  The sort field might not be visible because:
    -                1) there is insufficient Screen Width
    -                2) the `f' interactive command turned it Off
    -
    -             <  :Move-Sort-Field-Left
    -                 Moves the sort column to the left unless the current sort field is the first field being displayed.
    -
    -             >  :Move-Sort-Field-Right
    -                 Moves the sort column to the right unless the current sort field is the last field being displayed.
    -

    查看 man page 可以找到这一段,其实一般 man page 都是最细致的,只不过因为太多了,有时候懒得看,这里可以通过大写 M 和大写 P 分别按内存和 CPU 排序,下面还有两个小技巧,通过按 x 可以将当前活跃的排序列用不同颜色标出来,然后可以通过<>直接左右移动排序列

    -]]>
    - - Linux - 命令 - 小技巧 - top - top - 排序 - - - 排序 - linux - 小技巧 - top - -
    聊聊 Java 的类加载机制二 /2021/06/13/%E8%81%8A%E8%81%8A-Java-%E7%9A%84%E7%B1%BB%E5%8A%A0%E8%BD%BD%E6%9C%BA%E5%88%B6%E4%BA%8C/ @@ -14920,1071 +14010,702 @@ public Result invoke(final Invocation invocation) throws RpcException { // 然后是这 scl = l.getClassLoader(); try { - scl = AccessController.doPrivileged( - new SystemClassLoaderAction(scl)); - } catch (PrivilegedActionException pae) { - oops = pae.getCause(); - if (oops instanceof InvocationTargetException) { - oops = oops.getCause(); - } - } - if (oops != null) { - if (oops instanceof Error) { - throw (Error) oops; - } else { - // wrap the exception - throw new Error(oops); - } - } - } - sclSet = true; - } - } -// 接着跟到sun.misc.Launcher#getClassLoader -public ClassLoader getClassLoader() { - return this.loader; - } -// 然后看到这 sun.misc.Launcher#Launcher -public Launcher() { - Launcher.ExtClassLoader var1; - try { - var1 = Launcher.ExtClassLoader.getExtClassLoader(); - } catch (IOException var10) { - throw new InternalError("Could not create extension class loader", var10); - } - - try { - // 可以看到 就是 AppClassLoader - this.loader = Launcher.AppClassLoader.getAppClassLoader(var1); - } catch (IOException var9) { - throw new InternalError("Could not create application class loader", var9); - } - - Thread.currentThread().setContextClassLoader(this.loader); - String var2 = System.getProperty("java.security.manager"); - if (var2 != null) { - SecurityManager var3 = null; - if (!"".equals(var2) && !"default".equals(var2)) { - try { - var3 = (SecurityManager)this.loader.loadClass(var2).newInstance(); - } catch (IllegalAccessException var5) { - } catch (InstantiationException var6) { - } catch (ClassNotFoundException var7) { - } catch (ClassCastException var8) { - } - } else { - var3 = new SecurityManager(); - } - - if (var3 == null) { - throw new InternalError("Could not create SecurityManager: " + var2); - } - - System.setSecurityManager(var3); - } - - }
    -

    它负责加载用户类路径(ClassPath)上所有的类库,我们可以直接在代码中使用这个类加载器,如果我们的代码中没有自定义的类在加载器,一般情况下这个就是程序中默认的类加载器

    -

    双亲委派模型


    双亲委派模型的工作过程是:如果一个类加载器收到了类加载的请求,它首先不会自己去尝试家在这个类,而是把这个请求为派给父类加载器去完成,每一个层次的类加载器都是如此,因此所有的家在请求最终都应该传送到最顶层的启动类加载器中,只有当父类加载器反馈自己无法完成加载请求(它的搜索范围中没有找到所需要的类)时,子加载器才会尝试自己去完成加载。
    使用双亲委派模型来组织类加载器之间的关系,一个显而易见的好处就是 Java 中的类随着它的类加载器一起举杯了一种带有优先级的层次关系。例如类 java.lang.Object,它存放在 rt.jar 之中,无论哪一个类加载器要家在这个类,最终都是委派给处于模型最顶层的启动类加载器进行加载,因此 Object 类在程序的各种类加载器环境中都能够保证是同一个类。反之,如果没有使用双薪委派模型,都由各个类加载器自行去加载的话,如果用户自己也编写了一个名为 java.lang.Object 的类,并放在程序的 ClassPath 中,那系统中就会出现多个不同的 Object 类,Java 类型体系中最基础的行为也就无从保证,应用程序将会变得一片混乱。
    可以来看下双亲委派模型的代码实现

    -
    /**
    -     * Loads the class with the specified <a href="#name">binary name</a>.  The
    -     * default implementation of this method searches for classes in the
    -     * following order:
    -     *
    -     * <ol>
    -     *
    -     *   <li><p> Invoke {@link #findLoadedClass(String)} to check if the class
    -     *   has already been loaded.  </p></li>
    -     *
    -     *   <li><p> Invoke the {@link #loadClass(String) <tt>loadClass</tt>} method
    -     *   on the parent class loader.  If the parent is <tt>null</tt> the class
    -     *   loader built-in to the virtual machine is used, instead.  </p></li>
    -     *
    -     *   <li><p> Invoke the {@link #findClass(String)} method to find the
    -     *   class.  </p></li>
    -     *
    -     * </ol>
    -     *
    -     * <p> If the class was found using the above steps, and the
    -     * <tt>resolve</tt> flag is true, this method will then invoke the {@link
    -     * #resolveClass(Class)} method on the resulting <tt>Class</tt> object.
    -     *
    -     * <p> Subclasses of <tt>ClassLoader</tt> are encouraged to override {@link
    -     * #findClass(String)}, rather than this method.  </p>
    -     *
    -     * <p> Unless overridden, this method synchronizes on the result of
    -     * {@link #getClassLoadingLock <tt>getClassLoadingLock</tt>} method
    -     * during the entire class loading process.
    -     *
    -     * @param  name
    -     *         The <a href="#name">binary name</a> of the class
    -     *
    -     * @param  resolve
    -     *         If <tt>true</tt> then resolve the class
    -     *
    -     * @return  The resulting <tt>Class</tt> object
    -     *
    -     * @throws  ClassNotFoundException
    -     *          If the class could not be found
    -     */
    -    protected Class<?> loadClass(String name, boolean resolve)
    -        throws ClassNotFoundException
    -    {
    -        synchronized (getClassLoadingLock(name)) {
    -            // First, check if the class has already been loaded
    -            Class<?> c = findLoadedClass(name);
    -            if (c == null) {
    -                long t0 = System.nanoTime();
    -                try {
    -                    if (parent != null) {
    -                        // 委托父类加载
    -                        c = parent.loadClass(name, false);
    -                    } else {
    -                        // 使用启动类加载器
    -                        c = findBootstrapClassOrNull(name);
    -                    }
    -                } catch (ClassNotFoundException e) {
    -                    // ClassNotFoundException thrown if class not found
    -                    // from the non-null parent class loader
    -                }
    -
    -                if (c == null) {
    -                    // If still not found, then invoke findClass in order
    -                    // to find the class.
    -                    long t1 = System.nanoTime();
    -                    // 调用自己的 findClass() 方法尝试进行加载
    -                    c = findClass(name);
    -
    -                    // this is the defining class loader; record the stats
    -                    sun.misc.PerfCounter.getParentDelegationTime().addTime(t1 - t0);
    -                    sun.misc.PerfCounter.getFindClassTime().addElapsedTimeFrom(t1);
    -                    sun.misc.PerfCounter.getFindClasses().increment();
    -                }
    -            }
    -            if (resolve) {
    -                resolveClass(c);
    -            }
    -            return c;
    -        }
    -    }
    -

    破坏双亲委派

    关于破坏双亲委派模型,第一次是在 JDK1.2 之后引入了双亲委派模型之前,那么在那之前已经有了类加载器,所以java.lang.ClassLoader 中添加了一个 protected 方法 findClass(),并引导用户编写的类加载逻辑时尽可能去重写这个方法,而不是在 loadClass()中编写代码。这个跟上面的逻辑其实类似,当父类加载失败,会调用 findClass()来完成加载;第二次是因为这个模型本身还有一些不足之处,比如 SPI 这种,所以有设计了线程下上下文类加载器(Thread Context ClassLoader)。这个类加载器可以通过 java.lang.Thread 类的 java.lang.Thread#setContextClassLoader() 进行设置,然后第三种是为了追求程序动态性,这里有涉及到了 osgi 等概念,就不展开了

    -]]> - - Java - - - Java - 类加载 - 加载 - 验证 - 准备 - 解析 - 初始化 - 链接 - 双亲委派 - - - - 聊聊 RocketMQ 的 Broker 源码 - /2020/07/19/%E8%81%8A%E8%81%8A-RocketMQ-%E7%9A%84-Broker-%E6%BA%90%E7%A0%81/ - broker 的启动形式有点类似于 NameServer,都是服务类型的,跟 Consumer 差别比较大,

    -

    首先是org.apache.rocketmq.broker.BrokerStartup中的 main 函数,org.apache.rocketmq.broker.BrokerStartup#createBrokerController基本就是读取参数,这里差点把最核心的初始化给漏了,

    -
    final BrokerController controller = new BrokerController(
    -                brokerConfig,
    -                nettyServerConfig,
    -                nettyClientConfig,
    -                messageStoreConfig);
    -            // remember all configs to prevent discard
    -            controller.getConfiguration().registerConfig(properties);
    -
    -            boolean initResult = controller.initialize();
    - -

    前面是以 broker 配置,netty 的服务端和客户端配置,以及消息存储配置在实例化 BrokerController,然后就是初始化了

    -
    public boolean initialize() throws CloneNotSupportedException {
    -        boolean result = this.topicConfigManager.load();
    -
    -        result = result && this.consumerOffsetManager.load();
    -        result = result && this.subscriptionGroupManager.load();
    -        result = result && this.consumerFilterManager.load();
    - -

    前面这些就是各个配置的 load 了,然后是个我认为比较重要的部分messageStore 的实例化,

    -
    if (result) {
    -    try {
    -        this.messageStore =
    -            new DefaultMessageStore(this.messageStoreConfig, this.brokerStatsManager, this.messageArrivingListener,
    -                this.brokerConfig);
    -        if (messageStoreConfig.isEnableDLegerCommitLog()) {
    -            DLedgerRoleChangeHandler roleChangeHandler = new DLedgerRoleChangeHandler(this, (DefaultMessageStore) messageStore);
    -            ((DLedgerCommitLog)((DefaultMessageStore) messageStore).getCommitLog()).getdLedgerServer().getdLedgerLeaderElector().addRoleChangeHandler(roleChangeHandler);
    +                    scl = AccessController.doPrivileged(
    +                        new SystemClassLoaderAction(scl));
    +                } catch (PrivilegedActionException pae) {
    +                    oops = pae.getCause();
    +                    if (oops instanceof InvocationTargetException) {
    +                        oops = oops.getCause();
    +                    }
    +                }
    +                if (oops != null) {
    +                    if (oops instanceof Error) {
    +                        throw (Error) oops;
    +                    } else {
    +                        // wrap the exception
    +                        throw new Error(oops);
    +                    }
    +                }
    +            }
    +            sclSet = true;
             }
    -        this.brokerStats = new BrokerStats((DefaultMessageStore) this.messageStore);
    -        //load plugin
    -        MessageStorePluginContext context = new MessageStorePluginContext(messageStoreConfig, brokerStatsManager, messageArrivingListener, brokerConfig);
    -        this.messageStore = MessageStoreFactory.build(context, this.messageStore);
    -        this.messageStore.getDispatcherList().addFirst(new CommitLogDispatcherCalcBitMap(this.brokerConfig, this.consumerFilterManager));
    -    } catch (IOException e) {
    -        result = false;
    -        log.error("Failed to initialize", e);
         }
    -}
    -
    -result = result && this.messageStore.load();
    - -

    先是实例化,实例化构造函数里的代码比较重要,重点看一下

    -
    public DefaultMessageStore(final MessageStoreConfig messageStoreConfig, final BrokerStatsManager brokerStatsManager,
    -        final MessageArrivingListener messageArrivingListener, final BrokerConfig brokerConfig) throws IOException {
    -        this.messageArrivingListener = messageArrivingListener;
    -        this.brokerConfig = brokerConfig;
    -        this.messageStoreConfig = messageStoreConfig;
    -        this.brokerStatsManager = brokerStatsManager;
    -        this.allocateMappedFileService = new AllocateMappedFileService(this);
    -        if (messageStoreConfig.isEnableDLegerCommitLog()) {
    -            this.commitLog = new DLedgerCommitLog(this);
    -        } else {
    -            this.commitLog = new CommitLog(this);
    -        }
    -        this.consumeQueueTable = new ConcurrentHashMap<>(32);
    -
    -        this.flushConsumeQueueService = new FlushConsumeQueueService();
    -        this.cleanCommitLogService = new CleanCommitLogService();
    -        this.cleanConsumeQueueService = new CleanConsumeQueueService();
    -        this.storeStatsService = new StoreStatsService();
    -        this.indexService = new IndexService(this);
    -        if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    -            this.haService = new HAService(this);
    -        } else {
    -            this.haService = null;
    +// 接着跟到sun.misc.Launcher#getClassLoader
    +public ClassLoader getClassLoader() {
    +        return this.loader;
    +    }
    +// 然后看到这 sun.misc.Launcher#Launcher
    +public Launcher() {
    +        Launcher.ExtClassLoader var1;
    +        try {
    +            var1 = Launcher.ExtClassLoader.getExtClassLoader();
    +        } catch (IOException var10) {
    +            throw new InternalError("Could not create extension class loader", var10);
             }
    -        this.reputMessageService = new ReputMessageService();
    -
    -        this.scheduleMessageService = new ScheduleMessageService(this);
     
    -        this.transientStorePool = new TransientStorePool(messageStoreConfig);
    -
    -        if (messageStoreConfig.isTransientStorePoolEnable()) {
    -            this.transientStorePool.init();
    +        try {
    +            // 可以看到 就是 AppClassLoader
    +            this.loader = Launcher.AppClassLoader.getAppClassLoader(var1);
    +        } catch (IOException var9) {
    +            throw new InternalError("Could not create application class loader", var9);
             }
     
    -        this.allocateMappedFileService.start();
    -
    -        this.indexService.start();
    -
    -        this.dispatcherList = new LinkedList<>();
    -        this.dispatcherList.addLast(new CommitLogDispatcherBuildConsumeQueue());
    -        this.dispatcherList.addLast(new CommitLogDispatcherBuildIndex());
    -
    -        File file = new File(StorePathConfigHelper.getLockFile(messageStoreConfig.getStorePathRootDir()));
    -        MappedFile.ensureDirOK(file.getParent());
    -        lockFile = new RandomAccessFile(file, "rw");
    -    }
    + Thread.currentThread().setContextClassLoader(this.loader); + String var2 = System.getProperty("java.security.manager"); + if (var2 != null) { + SecurityManager var3 = null; + if (!"".equals(var2) && !"default".equals(var2)) { + try { + var3 = (SecurityManager)this.loader.loadClass(var2).newInstance(); + } catch (IllegalAccessException var5) { + } catch (InstantiationException var6) { + } catch (ClassNotFoundException var7) { + } catch (ClassCastException var8) { + } + } else { + var3 = new SecurityManager(); + } -

    这里面有很多类,不过先把从构造函数里传进来的忽略下,接下来就是 AllocateMappedFileService 这个service,前面看过文章的可能会根据上面的代码猜到,这也是个 ServiceThread,如果是对RocketMQ 有所了解的可能从名字可以看出这个类是关于 RocketMQ 消息怎么落盘的,当需要创建MappedFile时(在MapedFileQueue.getLastMapedFile方法中),向该线程的requestQueue队列中放入AllocateRequest请求对象,该线程会在后台监听该队列,并在后台创建MapedFile对象,即同时创建了物理文件。然后是创建了 IndexService 服务线程,用来给创建索引;还有是FlushConsumeQueueService是将ConsumeQueue 刷入磁盘;CleanCommitLogService用来清理过期的 CommitLog,默认是 72 小时以上;CleanConsumeQueueService是将小于最新的 CommitLog 偏移量的 ConsumeQueue 清理掉;StoreStatsService是储存统计服务;HAService用于CommitLog 的主备同步;ScheduleMessageService用于定时消息;还有就是这个ReputMessageService非常重要,就是由它实现了将 CommitLog 以 topic+queue 纬度构建 ConsumeQueue,后面TransientStorePool是异步刷盘时的存储buffer,也可以从后面的判断中看出来

    -
    public boolean isTransientStorePoolEnable() {
    -        return transientStorePoolEnable && FlushDiskType.ASYNC_FLUSH == getFlushDiskType()
    -            && BrokerRole.SLAVE != getBrokerRole();
    -    }
    + if (var3 == null) { + throw new InternalError("Could not create SecurityManager: " + var2); + } -

    再然后就是启动两个服务线程,dispatcherList是为CommitLog文件转发请求,差不多这个初始化就这些内容。

    -

    然后回到外层,下面是主备切换的配置,然后是数据统计,接着是存储插件加载,然后是往转发器链表里再加一个过滤器

    -
    if (messageStoreConfig.isEnableDLegerCommitLog()) {
    -            DLedgerRoleChangeHandler roleChangeHandler = new DLedgerRoleChangeHandler(this, (DefaultMessageStore) messageStore);
    -            ((DLedgerCommitLog)((DefaultMessageStore) messageStore).getCommitLog()).getdLedgerServer().getdLedgerLeaderElector().addRoleChangeHandler(roleChangeHandler);
    +            System.setSecurityManager(var3);
             }
    -        this.brokerStats = new BrokerStats((DefaultMessageStore) this.messageStore);
    -        //load plugin
    -        MessageStorePluginContext context = new MessageStorePluginContext(messageStoreConfig, brokerStatsManager, messageArrivingListener, brokerConfig);
    -        this.messageStore = MessageStoreFactory.build(context, this.messageStore);
    -        this.messageStore.getDispatcherList().addFirst(new CommitLogDispatcherCalcBitMap(this.brokerConfig, this.consumerFilterManager));
    - -

    接下来就是org.apache.rocketmq.store.MessageStore#load的过程了,

    -
      -
    1. 调用ScheduleMessageService.load方法,初始化延迟级别列表。将这些级别(”1s 5s 10s 30s 1m 2m 3m 4m 5m 6m 7m 8m 9m 10m 20m 30m 1h 2h”)的延时存入延迟级别delayLevelTable:ConcurrentHashMap<Integer /* level */, Long/* delay timeMillis */>变量中,例如1s的kv值为1:1000,5s的kv值为2:5000,key值依次类推;每个延迟级别即为一个队列。
    2. -
    -

    2)调用CommitLog.load方法,在此方法中调用MapedFileQueue.load方法,将$HOME /store/commitlog目录下的所有文件加载到MapedFileQueue的List变量中;

    -

    3)调用DefaultMessageStore.loadConsumeQueue方法加载consumequeue文件数据到DefaultMessageStore.consumeQueueTable集合中。

    -

    初始化StoreCheckPoint对象,加载$HOME/store/checkpoint文件,该文件记录三个字段值,分别是物理队列消息时间戳、逻辑队列消息时间戳、索引队列消息时间戳。

    -

    调用IndexService.load方法加载$HOME/store/index目录下的文件。对该目录下的每个文件初始化一个IndexFile对象。然后调用IndexFile对象的load方法将IndexHeader加载到对象的变量中;再根据检查是否存在abort文件,若有存在abort文件,则表示Broker表示上次是异常退出的,则检查checkpoint的indexMsgTimestamp字段值是否小于IndexHeader的endTimestamp值,indexMsgTimestamp值表示最后刷盘的时间,若小于则表示在最后刷盘之后在该文件中还创建了索引,则要删除该Index文件,否则将该IndexFile对象放入indexFileList:ArrayList索引文件集合中。

    -

    然后调用org.apache.rocketmq.store.DefaultMessageStore#recover恢复,前面有根据boolean lastExitOK = !this.isTempFileExist();临时文件是否存在来判断上一次是否正常退出,根据这个状态来选择什么恢复策略

    -

    接下去是初始化 Netty 服务端,初始化发送消息线程池(sendMessageExecutor)、拉取消息线程池(pullMessageExecutor)、管理Broker线程池(adminBrokerExecutor)、客户端管理线程池(clientManageExecutor),注册事件处理器,包括发送消息事件处理器(SendMessageProcessor)、拉取消息事件处理器、查询消息事件处理器(QueryMessageProcessor,包括客户端的心跳事件、注销事件、获取消费者列表事件、更新更新和查询消费进度consumerOffset)、客户端管理事件处理器(ClientManageProcessor)、结束事务处理器(EndTransactionProcessor)、默认事件处理器(AdminBrokerProcessor),然后是定时任务

    -

    BrokerController.this.getBrokerStats().record(); 记录 Broker 状态

    -

    BrokerController.this.consumerOffsetManager.persist(); 持久化consumerOffset

    -

    BrokerController.this.consumerFilterManager.persist();持久化consumerFilter

    -

    BrokerController.this.protectBroker(); 保护 broker,消费慢,不让继续投递

    -

    BrokerController.this.printWaterMark(); 打印水位

    -

    log.info("dispatch behind commit log {} bytes", BrokerController.this.getMessageStore().dispatchBehindBytes()); 检查落后程度

    -

    BrokerController.this.brokerOuterAPI.fetchNameServerAddr(); 定时获取 nameserver

    -

    BrokerController.this.printMasterAndSlaveDiff(); 打印主从不一致

    -

    然后是 tsl,初始化事务消息,初始化 RPCHook

    -

    请把害怕打到公屏上🤦‍♂️,从线程池名字和调用的方法应该可以看出大部分的用途

    -
    this.remotingServer = new NettyRemotingServer(this.nettyServerConfig, this.clientHousekeepingService);
    -            NettyServerConfig fastConfig = (NettyServerConfig) this.nettyServerConfig.clone();
    -            fastConfig.setListenPort(nettyServerConfig.getListenPort() - 2);
    -            this.fastRemotingServer = new NettyRemotingServer(fastConfig, this.clientHousekeepingService);
    -            this.sendMessageExecutor = new BrokerFixedThreadPoolExecutor(
    -                this.brokerConfig.getSendMessageThreadPoolNums(),
    -                this.brokerConfig.getSendMessageThreadPoolNums(),
    -                1000 * 60,
    -                TimeUnit.MILLISECONDS,
    -                this.sendThreadPoolQueue,
    -                new ThreadFactoryImpl("SendMessageThread_"));
    -
    -            this.pullMessageExecutor = new BrokerFixedThreadPoolExecutor(
    -                this.brokerConfig.getPullMessageThreadPoolNums(),
    -                this.brokerConfig.getPullMessageThreadPoolNums(),
    -                1000 * 60,
    -                TimeUnit.MILLISECONDS,
    -                this.pullThreadPoolQueue,
    -                new ThreadFactoryImpl("PullMessageThread_"));
    -
    -            this.replyMessageExecutor = new BrokerFixedThreadPoolExecutor(
    -                this.brokerConfig.getProcessReplyMessageThreadPoolNums(),
    -                this.brokerConfig.getProcessReplyMessageThreadPoolNums(),
    -                1000 * 60,
    -                TimeUnit.MILLISECONDS,
    -                this.replyThreadPoolQueue,
    -                new ThreadFactoryImpl("ProcessReplyMessageThread_"));
    -
    -            this.queryMessageExecutor = new BrokerFixedThreadPoolExecutor(
    -                this.brokerConfig.getQueryMessageThreadPoolNums(),
    -                this.brokerConfig.getQueryMessageThreadPoolNums(),
    -                1000 * 60,
    -                TimeUnit.MILLISECONDS,
    -                this.queryThreadPoolQueue,
    -                new ThreadFactoryImpl("QueryMessageThread_"));
    -
    -            this.adminBrokerExecutor =
    -                Executors.newFixedThreadPool(this.brokerConfig.getAdminBrokerThreadPoolNums(), new ThreadFactoryImpl(
    -                    "AdminBrokerThread_"));
    -
    -            this.clientManageExecutor = new ThreadPoolExecutor(
    -                this.brokerConfig.getClientManageThreadPoolNums(),
    -                this.brokerConfig.getClientManageThreadPoolNums(),
    -                1000 * 60,
    -                TimeUnit.MILLISECONDS,
    -                this.clientManagerThreadPoolQueue,
    -                new ThreadFactoryImpl("ClientManageThread_"));
    -
    -            this.heartbeatExecutor = new BrokerFixedThreadPoolExecutor(
    -                this.brokerConfig.getHeartbeatThreadPoolNums(),
    -                this.brokerConfig.getHeartbeatThreadPoolNums(),
    -                1000 * 60,
    -                TimeUnit.MILLISECONDS,
    -                this.heartbeatThreadPoolQueue,
    -                new ThreadFactoryImpl("HeartbeatThread_", true));
    -
    -            this.endTransactionExecutor = new BrokerFixedThreadPoolExecutor(
    -                this.brokerConfig.getEndTransactionThreadPoolNums(),
    -                this.brokerConfig.getEndTransactionThreadPoolNums(),
    -                1000 * 60,
    -                TimeUnit.MILLISECONDS,
    -                this.endTransactionThreadPoolQueue,
    -                new ThreadFactoryImpl("EndTransactionThread_"));
    -
    -            this.consumerManageExecutor =
    -                Executors.newFixedThreadPool(this.brokerConfig.getConsumerManageThreadPoolNums(), new ThreadFactoryImpl(
    -                    "ConsumerManageThread_"));
    -
    -            this.registerProcessor();
    -
    -            final long initialDelay = UtilAll.computeNextMorningTimeMillis() - System.currentTimeMillis();
    -            final long period = 1000 * 60 * 60 * 24;
    -            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    -                @Override
    -                public void run() {
    -                    try {
    -                        BrokerController.this.getBrokerStats().record();
    -                    } catch (Throwable e) {
    -                        log.error("schedule record error.", e);
    -                    }
    -                }
    -            }, initialDelay, period, TimeUnit.MILLISECONDS);
    -
    -            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    -                @Override
    -                public void run() {
    -                    try {
    -                        BrokerController.this.consumerOffsetManager.persist();
    -                    } catch (Throwable e) {
    -                        log.error("schedule persist consumerOffset error.", e);
    -                    }
    -                }
    -            }, 1000 * 10, this.brokerConfig.getFlushConsumerOffsetInterval(), TimeUnit.MILLISECONDS);
     
    -            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    -                @Override
    -                public void run() {
    -                    try {
    -                        BrokerController.this.consumerFilterManager.persist();
    -                    } catch (Throwable e) {
    -                        log.error("schedule persist consumer filter error.", e);
    +    }
    +

    它负责加载用户类路径(ClassPath)上所有的类库,我们可以直接在代码中使用这个类加载器,如果我们的代码中没有自定义的类在加载器,一般情况下这个就是程序中默认的类加载器

    +

    双亲委派模型


    双亲委派模型的工作过程是:如果一个类加载器收到了类加载的请求,它首先不会自己去尝试家在这个类,而是把这个请求为派给父类加载器去完成,每一个层次的类加载器都是如此,因此所有的家在请求最终都应该传送到最顶层的启动类加载器中,只有当父类加载器反馈自己无法完成加载请求(它的搜索范围中没有找到所需要的类)时,子加载器才会尝试自己去完成加载。
    使用双亲委派模型来组织类加载器之间的关系,一个显而易见的好处就是 Java 中的类随着它的类加载器一起举杯了一种带有优先级的层次关系。例如类 java.lang.Object,它存放在 rt.jar 之中,无论哪一个类加载器要家在这个类,最终都是委派给处于模型最顶层的启动类加载器进行加载,因此 Object 类在程序的各种类加载器环境中都能够保证是同一个类。反之,如果没有使用双薪委派模型,都由各个类加载器自行去加载的话,如果用户自己也编写了一个名为 java.lang.Object 的类,并放在程序的 ClassPath 中,那系统中就会出现多个不同的 Object 类,Java 类型体系中最基础的行为也就无从保证,应用程序将会变得一片混乱。
    可以来看下双亲委派模型的代码实现

    +
    /**
    +     * Loads the class with the specified <a href="#name">binary name</a>.  The
    +     * default implementation of this method searches for classes in the
    +     * following order:
    +     *
    +     * <ol>
    +     *
    +     *   <li><p> Invoke {@link #findLoadedClass(String)} to check if the class
    +     *   has already been loaded.  </p></li>
    +     *
    +     *   <li><p> Invoke the {@link #loadClass(String) <tt>loadClass</tt>} method
    +     *   on the parent class loader.  If the parent is <tt>null</tt> the class
    +     *   loader built-in to the virtual machine is used, instead.  </p></li>
    +     *
    +     *   <li><p> Invoke the {@link #findClass(String)} method to find the
    +     *   class.  </p></li>
    +     *
    +     * </ol>
    +     *
    +     * <p> If the class was found using the above steps, and the
    +     * <tt>resolve</tt> flag is true, this method will then invoke the {@link
    +     * #resolveClass(Class)} method on the resulting <tt>Class</tt> object.
    +     *
    +     * <p> Subclasses of <tt>ClassLoader</tt> are encouraged to override {@link
    +     * #findClass(String)}, rather than this method.  </p>
    +     *
    +     * <p> Unless overridden, this method synchronizes on the result of
    +     * {@link #getClassLoadingLock <tt>getClassLoadingLock</tt>} method
    +     * during the entire class loading process.
    +     *
    +     * @param  name
    +     *         The <a href="#name">binary name</a> of the class
    +     *
    +     * @param  resolve
    +     *         If <tt>true</tt> then resolve the class
    +     *
    +     * @return  The resulting <tt>Class</tt> object
    +     *
    +     * @throws  ClassNotFoundException
    +     *          If the class could not be found
    +     */
    +    protected Class<?> loadClass(String name, boolean resolve)
    +        throws ClassNotFoundException
    +    {
    +        synchronized (getClassLoadingLock(name)) {
    +            // First, check if the class has already been loaded
    +            Class<?> c = findLoadedClass(name);
    +            if (c == null) {
    +                long t0 = System.nanoTime();
    +                try {
    +                    if (parent != null) {
    +                        // 委托父类加载
    +                        c = parent.loadClass(name, false);
    +                    } else {
    +                        // 使用启动类加载器
    +                        c = findBootstrapClassOrNull(name);
                         }
    +                } catch (ClassNotFoundException e) {
    +                    // ClassNotFoundException thrown if class not found
    +                    // from the non-null parent class loader
                     }
    -            }, 1000 * 10, 1000 * 10, TimeUnit.MILLISECONDS);
     
    -            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    -                @Override
    -                public void run() {
    -                    try {
    -                        BrokerController.this.protectBroker();
    -                    } catch (Throwable e) {
    -                        log.error("protectBroker error.", e);
    -                    }
    -                }
    -            }, 3, 3, TimeUnit.MINUTES);
    +                if (c == null) {
    +                    // If still not found, then invoke findClass in order
    +                    // to find the class.
    +                    long t1 = System.nanoTime();
    +                    // 调用自己的 findClass() 方法尝试进行加载
    +                    c = findClass(name);
     
    -            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    -                @Override
    -                public void run() {
    -                    try {
    -                        BrokerController.this.printWaterMark();
    -                    } catch (Throwable e) {
    -                        log.error("printWaterMark error.", e);
    -                    }
    +                    // this is the defining class loader; record the stats
    +                    sun.misc.PerfCounter.getParentDelegationTime().addTime(t1 - t0);
    +                    sun.misc.PerfCounter.getFindClassTime().addElapsedTimeFrom(t1);
    +                    sun.misc.PerfCounter.getFindClasses().increment();
                     }
    -            }, 10, 1, TimeUnit.SECONDS);
    +            }
    +            if (resolve) {
    +                resolveClass(c);
    +            }
    +            return c;
    +        }
    +    }
    +

    破坏双亲委派

    关于破坏双亲委派模型,第一次是在 JDK1.2 之后引入了双亲委派模型之前,那么在那之前已经有了类加载器,所以java.lang.ClassLoader 中添加了一个 protected 方法 findClass(),并引导用户编写的类加载逻辑时尽可能去重写这个方法,而不是在 loadClass()中编写代码。这个跟上面的逻辑其实类似,当父类加载失败,会调用 findClass()来完成加载;第二次是因为这个模型本身还有一些不足之处,比如 SPI 这种,所以有设计了线程下上下文类加载器(Thread Context ClassLoader)。这个类加载器可以通过 java.lang.Thread 类的 java.lang.Thread#setContextClassLoader() 进行设置,然后第三种是为了追求程序动态性,这里有涉及到了 osgi 等概念,就不展开了

    +]]>
    + + Java + + + Java + 类加载 + 加载 + 验证 + 准备 + 解析 + 初始化 + 链接 + 双亲委派 + +
    + + 聊聊 Linux 下的 top 命令 + /2021/03/28/%E8%81%8A%E8%81%8A-Linux-%E4%B8%8B%E7%9A%84-top-%E5%91%BD%E4%BB%A4/ + top 命令在日常的 Linux 使用中,特别是做一些服务器的简单状态查看,排查故障都起了比较大的作用,但是由于这个命令看到的东西比较多,一般只会看部分,或者说像我这样就会比较片面地看一些信息,比如默认是进程维度的,可以在启动命令的时候加-H进入线程模式

    +
    -H  :Threads-mode operation
    +            Instructs top to display individual threads.  Without this command-line option a summation of all threads in each process  is  shown.   Later
    +            this can be changed with the `H' interactive command.
    +

    这样就能用在 Java 中去 jstack 中找到对应的线程
    其实还有比较重要的两个操作,
    一个是在 top 启动状态下,按c键,这样能把比如说是一个 Java 进程,具体的进程命令显示出来
    像这样
    执行前是这样

    执行后是这样

    第二个就是排序了

    +
    SORTING of task window
     
    -            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +          For  compatibility,  this top supports most of the former top sort keys.  Since this is primarily a service to former top users, these commands
    +          do not appear on any help screen.
    +                command   sorted-field                  supported
    +                A         start time (non-display)      No
    +                M         %MEM                          Yes
    +                N         PID                           Yes
    +                P         %CPU                          Yes
    +                T         TIME+                         Yes
     
    -                @Override
    -                public void run() {
    -                    try {
    -                        log.info("dispatch behind commit log {} bytes", BrokerController.this.getMessageStore().dispatchBehindBytes());
    -                    } catch (Throwable e) {
    -                        log.error("schedule dispatchBehindBytes error.", e);
    -                    }
    -                }
    -            }, 1000 * 10, 1000 * 60, TimeUnit.MILLISECONDS);
    +          Before using any of the following sort provisions, top suggests that you temporarily turn on column highlighting using the `x' interactive com‐
    +          mand.  That will help ensure that the actual sort environment matches your intent.
     
    -            if (this.brokerConfig.getNamesrvAddr() != null) {
    -                this.brokerOuterAPI.updateNameServerAddressList(this.brokerConfig.getNamesrvAddr());
    -                log.info("Set user specified name server address: {}", this.brokerConfig.getNamesrvAddr());
    -            } else if (this.brokerConfig.isFetchNamesrvAddrByAddressServer()) {
    -                this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +          The following interactive commands will only be honored when the current sort field is visible.  The sort field might not be visible because:
    +                1) there is insufficient Screen Width
    +                2) the `f' interactive command turned it Off
     
    -                    @Override
    -                    public void run() {
    -                        try {
    -                            BrokerController.this.brokerOuterAPI.fetchNameServerAddr();
    -                        } catch (Throwable e) {
    -                            log.error("ScheduledTask fetchNameServerAddr exception", e);
    -                        }
    -                    }
    -                }, 1000 * 10, 1000 * 60 * 2, TimeUnit.MILLISECONDS);
    -            }
    +             <  :Move-Sort-Field-Left
    +                 Moves the sort column to the left unless the current sort field is the first field being displayed.
     
    -            if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    -                if (BrokerRole.SLAVE == this.messageStoreConfig.getBrokerRole()) {
    -                    if (this.messageStoreConfig.getHaMasterAddress() != null && this.messageStoreConfig.getHaMasterAddress().length() >= 6) {
    -                        this.messageStore.updateHaMasterAddress(this.messageStoreConfig.getHaMasterAddress());
    -                        this.updateMasterHAServerAddrPeriodically = false;
    -                    } else {
    -                        this.updateMasterHAServerAddrPeriodically = true;
    -                    }
    -                } else {
    -                    this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    -                        @Override
    -                        public void run() {
    -                            try {
    -                                BrokerController.this.printMasterAndSlaveDiff();
    -                            } catch (Throwable e) {
    -                                log.error("schedule printMasterAndSlaveDiff error.", e);
    -                            }
    -                        }
    -                    }, 1000 * 10, 1000 * 60, TimeUnit.MILLISECONDS);
    +             >  :Move-Sort-Field-Right
    +                 Moves the sort column to the right unless the current sort field is the last field being displayed.
    +

    查看 man page 可以找到这一段,其实一般 man page 都是最细致的,只不过因为太多了,有时候懒得看,这里可以通过大写 M 和大写 P 分别按内存和 CPU 排序,下面还有两个小技巧,通过按 x 可以将当前活跃的排序列用不同颜色标出来,然后可以通过<>直接左右移动排序列

    +]]>
    + + Linux + 命令 + 小技巧 + top + top + 排序 + + + 排序 + linux + 小技巧 + top + +
    + + 聊聊 Java 自带的那些*逆天*工具 + /2020/08/02/%E8%81%8A%E8%81%8A-Java-%E8%87%AA%E5%B8%A6%E7%9A%84%E9%82%A3%E4%BA%9B%E9%80%86%E5%A4%A9%E5%B7%A5%E5%85%B7/ + 原谅我的标题党,其实这些工具的确很厉害,之前其实介绍过一点相关的,是从我一次问题排查的过程中用到的,但是最近又有碰到一次排查问题,发现其实用 idea 直接 dump thread 是不现实的,毕竟服务器环境的没法这么操作,那就得用 Java 的那些工具了

    +

    jstack & jps

    譬如 jstack,这个命令其实不能更简单了
    看看 help 信息

    -l参数可以打出锁的额外信息,然后后面的 pid 就是进程 id 咯,机智的小伙伴会问了(就你这个小白才问这么蠢的问题🤦‍♂️),怎么看 Java 应用的进程呢
    那就是 jps 了,命令也很简单,一般直接用 jps命令就好了,不过也可以 help 看一下

    稍微解释下,-q是只显示进程 id,-m是输出给main 方法的参数,比如我在配置中加给参数

    然后用 jps -m查看

    -v加上小 v 的话就是打印 jvm 参数

    还是有点东西,然后就继续介绍 jstack 了,然后我们看看 jstack 出来是啥,为了加点内容我加了个死锁

    +
    public static void main(String[] args) throws InterruptedException {
    +        SpringApplication.run(ThreadDumpDemoApplication.class, args);
    +        ReentrantLock lock1 = new ReentrantLock();
    +        ReentrantLock lock2 = new ReentrantLock();
    +        Thread t1 = new Thread() {
    +            @Override
    +            public void run() {
    +                try {
    +                    lock1.lock();
    +                    TimeUnit.SECONDS.sleep(1);
    +                    lock2.lock();
    +                } catch (InterruptedException e) {
    +                    e.printStackTrace();
                     }
                 }
    -
    -            if (TlsSystemConfig.tlsMode != TlsMode.DISABLED) {
    -                // Register a listener to reload SslContext
    +        };
    +        Thread t2 = new Thread() {
    +            @Override
    +            public void run() {
                     try {
    -                    fileWatchService = new FileWatchService(
    -                        new String[] {
    -                            TlsSystemConfig.tlsServerCertPath,
    -                            TlsSystemConfig.tlsServerKeyPath,
    -                            TlsSystemConfig.tlsServerTrustCertPath
    -                        },
    -                        new FileWatchService.Listener() {
    -                            boolean certChanged, keyChanged = false;
    -
    -                            @Override
    -                            public void onChanged(String path) {
    -                                if (path.equals(TlsSystemConfig.tlsServerTrustCertPath)) {
    -                                    log.info("The trust certificate changed, reload the ssl context");
    -                                    reloadServerSslContext();
    -                                }
    -                                if (path.equals(TlsSystemConfig.tlsServerCertPath)) {
    -                                    certChanged = true;
    -                                }
    -                                if (path.equals(TlsSystemConfig.tlsServerKeyPath)) {
    -                                    keyChanged = true;
    -                                }
    -                                if (certChanged && keyChanged) {
    -                                    log.info("The certificate and private key changed, reload the ssl context");
    -                                    certChanged = keyChanged = false;
    -                                    reloadServerSslContext();
    -                                }
    -                            }
    -
    -                            private void reloadServerSslContext() {
    -                                ((NettyRemotingServer) remotingServer).loadSslContext();
    -                                ((NettyRemotingServer) fastRemotingServer).loadSslContext();
    -                            }
    -                        });
    -                } catch (Exception e) {
    -                    log.warn("FileWatchService created error, can't load the certificate dynamically");
    +                    lock2.lock();
    +                    TimeUnit.SECONDS.sleep(1);
    +                    lock1.lock();
    +                } catch (InterruptedException e) {
    +                    e.printStackTrace();
                     }
                 }
    -            initialTransaction();
    -            initialAcl();
    -            initialRpcHooks();
    -        }
    -        return result;
    + }; + t1.setName("mythread1"); + t2.setName("mythread2"); + t1.start(); + t2.start(); + Thread.sleep(10000); + }
    +

    然后看看出来时怎么样的

    +
    2020-08-02 21:50:32
    +Full thread dump Java HotSpot(TM) 64-Bit Server VM (25.201-b09 mixed mode):
     
    +"DestroyJavaVM" #147 prio=5 os_prio=31 tid=0x00007fc9dd807000 nid=0x2603 waiting on condition [0x0000000000000000]
    +   java.lang.Thread.State: RUNNABLE
     
    +   Locked ownable synchronizers:
    +        - None
     
    -

    Broker 启动过程

    -

    贴代码

    -
    public void start() throws Exception {
    -        if (this.messageStore != null) {
    -            this.messageStore.start();
    -        }
    +"mythread2" #140 prio=5 os_prio=31 tid=0x00007fc9dd877000 nid=0x9903 waiting on condition [0x0000700006fb9000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f5d4330> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199)
    +        at java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:209)
    +        at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
    +        at com.nicksxs.thread_dump_demo.ThreadDumpDemoApplication$2.run(ThreadDumpDemoApplication.java:34)
     
    -        if (this.remotingServer != null) {
    -            this.remotingServer.start();
    -        }
    +   Locked ownable synchronizers:
    +        - <0x000000076f5d4360> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
     
    -        if (this.fastRemotingServer != null) {
    -            this.fastRemotingServer.start();
    -        }
    +"mythread1" #139 prio=5 os_prio=31 tid=0x00007fc9de873800 nid=0x9a03 waiting on condition [0x0000700006eb6000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f5d4360> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199)
    +        at java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:209)
    +        at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
    +        at com.nicksxs.thread_dump_demo.ThreadDumpDemoApplication$1.run(ThreadDumpDemoApplication.java:22)
     
    -        if (this.fileWatchService != null) {
    -            this.fileWatchService.start();
    -        }
    +   Locked ownable synchronizers:
    +        - <0x000000076f5d4330> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
     
    -        if (this.brokerOuterAPI != null) {
    -            this.brokerOuterAPI.start();
    -        }
    +"http-nio-8080-Acceptor" #137 daemon prio=5 os_prio=31 tid=0x00007fc9de1ac000 nid=0x9b03 runnable [0x0000700006db3000]
    +   java.lang.Thread.State: RUNNABLE
    +        at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)
    +        at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:422)
    +        at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
    +        - locked <0x000000076f1e4820> (a java.lang.Object)
    +        at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:469)
    +        at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:71)
    +        at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:95)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        if (this.pullRequestHoldService != null) {
    -            this.pullRequestHoldService.start();
    -        }
    +   Locked ownable synchronizers:
    +        - None
     
    -        if (this.clientHousekeepingService != null) {
    -            this.clientHousekeepingService.start();
    -        }
    +"http-nio-8080-ClientPoller" #136 daemon prio=5 os_prio=31 tid=0x00007fc9dd876800 nid=0x6503 runnable [0x0000700006cb0000]
    +   java.lang.Thread.State: RUNNABLE
    +        at sun.nio.ch.KQueueArrayWrapper.kevent0(Native Method)
    +        at sun.nio.ch.KQueueArrayWrapper.poll(KQueueArrayWrapper.java:198)
    +        at sun.nio.ch.KQueueSelectorImpl.doSelect(KQueueSelectorImpl.java:117)
    +        at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
    +        - locked <0x000000076f2978c8> (a sun.nio.ch.Util$3)
    +        - locked <0x000000076f2978b8> (a java.util.Collections$UnmodifiableSet)
    +        - locked <0x000000076f297798> (a sun.nio.ch.KQueueSelectorImpl)
    +        at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:97)
    +        at org.apache.tomcat.util.net.NioEndpoint$Poller.run(NioEndpoint.java:709)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        if (this.filterServerManager != null) {
    -            this.filterServerManager.start();
    -        }
    +   Locked ownable synchronizers:
    +        - None
     
    -        if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    -            startProcessorByHa(messageStoreConfig.getBrokerRole());
    -            handleSlaveSynchronize(messageStoreConfig.getBrokerRole());
    -            this.registerBrokerAll(true, false, true);
    -        }
    +"http-nio-8080-exec-10" #135 daemon prio=5 os_prio=31 tid=0x00007fc9de1af000 nid=0x9d03 waiting on condition [0x0000700006bad000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +   Locked ownable synchronizers:
    +        - None
     
    -            @Override
    -            public void run() {
    -                try {
    -                    BrokerController.this.registerBrokerAll(true, false, brokerConfig.isForceRegister());
    -                } catch (Throwable e) {
    -                    log.error("registerBrokerAll Exception", e);
    -                }
    -            }
    -        }, 1000 * 10, Math.max(10000, Math.min(brokerConfig.getRegisterNameServerPeriod(), 60000)), TimeUnit.MILLISECONDS);
    +"http-nio-8080-exec-9" #134 daemon prio=5 os_prio=31 tid=0x00007fc9de1ab800 nid=0x6403 waiting on condition [0x0000700006aaa000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        if (this.brokerStatsManager != null) {
    -            this.brokerStatsManager.start();
    -        }
    +   Locked ownable synchronizers:
    +        - None
     
    -        if (this.brokerFastFailure != null) {
    -            this.brokerFastFailure.start();
    -        }
    +"http-nio-8080-exec-8" #133 daemon prio=5 os_prio=31 tid=0x00007fc9de873000 nid=0x9f03 waiting on condition [0x00007000069a7000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    +   Locked ownable synchronizers:
    +        - None
     
    -    }
    +"http-nio-8080-exec-7" #132 daemon prio=5 os_prio=31 tid=0x00007fc9df0a1800 nid=0xa103 waiting on condition [0x00007000068a4000] + java.lang.Thread.State: WAITING (parking) + at sun.misc.Unsafe.park(Native Method) + - parking to wait for <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject) + at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175) + at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039) + at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442) + at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107) + at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33) + at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) -

    首先是启动messageStore,调用 start 方法,这里面又调用了一些代码

    -
    public void start() throws Exception {
    +   Locked ownable synchronizers:
    +        - None
     
    -        lock = lockFile.getChannel().tryLock(0, 1, false);
    -        if (lock == null || lock.isShared() || !lock.isValid()) {
    -            throw new RuntimeException("Lock failed,MQ already started");
    -        }
    +"http-nio-8080-exec-6" #131 daemon prio=5 os_prio=31 tid=0x00007fc9df242800 nid=0x6103 waiting on condition [0x00007000067a1000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
    +
    +   Locked ownable synchronizers:
    +        - None
    +
    +"http-nio-8080-exec-5" #130 daemon prio=5 os_prio=31 tid=0x00007fc9de872000 nid=0x5f03 waiting on condition [0x000070000669e000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
    +
    +   Locked ownable synchronizers:
    +        - None
    +
    +"http-nio-8080-exec-4" #129 daemon prio=5 os_prio=31 tid=0x00007fc9de1a6000 nid=0x5e03 waiting on condition [0x000070000659b000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
    +
    +   Locked ownable synchronizers:
    +        - None
    +
    +"http-nio-8080-exec-3" #128 daemon prio=5 os_prio=31 tid=0x00007fc9de871800 nid=0x5c03 waiting on condition [0x0000700006498000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        lockFile.getChannel().write(ByteBuffer.wrap("lock".getBytes()));
    -        lockFile.getChannel().force(true);
    -        {
    -            /**
    -             * 1. Make sure the fast-forward messages to be truncated during the recovering according to the max physical offset of the commitlog;
    -             * 2. DLedger committedPos may be missing, so the maxPhysicalPosInLogicQueue maybe bigger that maxOffset returned by DLedgerCommitLog, just let it go;
    -             * 3. Calculate the reput offset according to the consume queue;
    -             * 4. Make sure the fall-behind messages to be dispatched before starting the commitlog, especially when the broker role are automatically changed.
    -             */
    -            long maxPhysicalPosInLogicQueue = commitLog.getMinOffset();
    -            for (ConcurrentMap<Integer, ConsumeQueue> maps : this.consumeQueueTable.values()) {
    -                for (ConsumeQueue logic : maps.values()) {
    -                    if (logic.getMaxPhysicOffset() > maxPhysicalPosInLogicQueue) {
    -                        maxPhysicalPosInLogicQueue = logic.getMaxPhysicOffset();
    -                    }
    -                }
    -            }
    -            if (maxPhysicalPosInLogicQueue < 0) {
    -                maxPhysicalPosInLogicQueue = 0;
    -            }
    -            if (maxPhysicalPosInLogicQueue < this.commitLog.getMinOffset()) {
    -                maxPhysicalPosInLogicQueue = this.commitLog.getMinOffset();
    -                /**
    -                 * This happens in following conditions:
    -                 * 1. If someone removes all the consumequeue files or the disk get damaged.
    -                 * 2. Launch a new broker, and copy the commitlog from other brokers.
    -                 *
    -                 * All the conditions has the same in common that the maxPhysicalPosInLogicQueue should be 0.
    -                 * If the maxPhysicalPosInLogicQueue is gt 0, there maybe something wrong.
    -                 */
    -                log.warn("[TooSmallCqOffset] maxPhysicalPosInLogicQueue={} clMinOffset={}", maxPhysicalPosInLogicQueue, this.commitLog.getMinOffset());
    -            }
    -            log.info("[SetReputOffset] maxPhysicalPosInLogicQueue={} clMinOffset={} clMaxOffset={} clConfirmedOffset={}",
    -                maxPhysicalPosInLogicQueue, this.commitLog.getMinOffset(), this.commitLog.getMaxOffset(), this.commitLog.getConfirmOffset());
    -            this.reputMessageService.setReputFromOffset(maxPhysicalPosInLogicQueue);
    -            this.reputMessageService.start();
    +   Locked ownable synchronizers:
    +        - None
     
    -            /**
    -             *  1. Finish dispatching the messages fall behind, then to start other services.
    -             *  2. DLedger committedPos may be missing, so here just require dispatchBehindBytes <= 0
    -             */
    -            while (true) {
    -                if (dispatchBehindBytes() <= 0) {
    -                    break;
    -                }
    -                Thread.sleep(1000);
    -                log.info("Try to finish doing reput the messages fall behind during the starting, reputOffset={} maxOffset={} behind={}", this.reputMessageService.getReputFromOffset(), this.getMaxPhyOffset(), this.dispatchBehindBytes());
    -            }
    -            this.recoverTopicQueueTable();
    -        }
    +"http-nio-8080-exec-2" #127 daemon prio=5 os_prio=31 tid=0x00007fc9dead9000 nid=0x5b03 waiting on condition [0x0000700006395000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    -            this.haService.start();
    -            this.handleScheduleMessageService(messageStoreConfig.getBrokerRole());
    -        }
    +   Locked ownable synchronizers:
    +        - None
     
    -        this.flushConsumeQueueService.start();
    -        this.commitLog.start();
    -        this.storeStatsService.start();
    +"http-nio-8080-exec-1" #126 daemon prio=5 os_prio=31 tid=0x00007fc9ddb00000 nid=0x5a03 waiting on condition [0x0000700006292000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    +        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        this.createTempFile();
    -        this.addScheduleTask();
    -        this.shutdown = false;
    -    }
    + Locked ownable synchronizers: + - None +"http-nio-8080-BlockPoller" #125 daemon prio=5 os_prio=31 tid=0x00007fc9df242000 nid=0xa503 runnable [0x000070000618f000] + java.lang.Thread.State: RUNNABLE + at sun.nio.ch.KQueueArrayWrapper.kevent0(Native Method) + at sun.nio.ch.KQueueArrayWrapper.poll(KQueueArrayWrapper.java:198) + at sun.nio.ch.KQueueSelectorImpl.doSelect(KQueueSelectorImpl.java:117) + at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86) + - locked <0x000000076f1eea30> (a sun.nio.ch.Util$3) + - locked <0x000000076f1ee198> (a java.util.Collections$UnmodifiableSet) + - locked <0x000000076f1ee010> (a sun.nio.ch.KQueueSelectorImpl) + at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:97) + at org.apache.tomcat.util.net.NioBlockingSelector$BlockPoller.run(NioBlockingSelector.java:313) + Locked ownable synchronizers: + - None -

    调用DefaultMessageStore.start方法启动DefaultMessageStore对象中的一些服务线程。

    -
      -
    1. 启动ReputMessageService服务线程
    2. -
    3. 启动FlushConsumeQueueService服务线程;
    4. -
    5. 调用CommitLog.start方法,启动CommitLog对象中的FlushCommitLogService线程服务,若是同步刷盘(SYNC_FLUSH)则是启动GroupCommitService线程服务;若是异步刷盘(ASYNC_FLUSH)则是启动FlushRealTimeService线程服务;
    6. -
    7. 启动StoreStatsService线程服务;
    8. -
    9. 启动定时清理任务
    10. -
    -

    然后是启动ClientHousekeepingService的 netty 服务端和客户端,然后是启动fileWatchService证书服务,接着启动BrokerOuterAPI中的NettyRemotingClient,即建立与NameServer的链接,用于自身Broker与其他模块的RPC功能调用;包括获取NameServer的地址、注册Broker、注销Broker、获取Topic配置、获取消息进度信息、获取订阅关系等RPC功能,然后是PullRequestHoldService服务线程,这个就是实现长轮询的,然后启动管家ClientHousekeepingService服务,负责扫描不活跃的生产者,消费者和 filter,启动FilterServerManager 过滤器服务管理,然后启动定时任务调用org.apache.rocketmq.broker.BrokerController#registerBrokerAll向所有 nameserver 注册 broker,最后是按需开启org.apache.rocketmq.store.stats.BrokerStatsManager和org.apache.rocketmq.broker.latency.BrokerFastFailure,基本上启动过程就完成了

    -]]> - - MQ - RocketMQ - 消息队列 - RocketMQ - 中间件 - RocketMQ - - - MQ - 消息队列 - RocketMQ - 削峰填谷 - 中间件 - 源码解析 - Broker - - - - 聊聊 Sharding-Jdbc 分库分表下的分页方案 - /2022/01/09/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E5%88%86%E5%BA%93%E5%88%86%E8%A1%A8%E4%B8%8B%E7%9A%84%E5%88%86%E9%A1%B5%E6%96%B9%E6%A1%88/ - 前面在聊 Sharding-Jdbc 的时候看到了一篇文章,关于一个分页的查询,一直比较直接的想法就是分库分表下的分页是非常不合理的,一般我们的实操方案都是分表加上 ES 搜索做分页,或者通过合表读写分离的方案,因为对于 sharding-jdbc 如果没有带分表键,查询基本都是只能在所有分表都执行一遍,然后再加上分页,基本上是分页越大后续的查询越耗资源,但是仔细的去想这个细节还是这次,就简单说说
    首先就是我的分表结构

    -
    CREATE TABLE `student_time_0` (
    -  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    -  `user_id` int(11) NOT NULL,
    -  `name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
    -  `age` tinyint(3) unsigned DEFAULT NULL,
    -  `create_time` bigint(20) DEFAULT NULL,
    -  PRIMARY KEY (`id`)
    -) ENGINE=InnoDB AUTO_INCREMENT=674 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
    -

    有这样的三个表,student_time_0, student_time_1, student_time_2, 以 user_id 作为分表键,根据表数量取模作为分表依据
    这里先构造点数据,

    -
    insert into student_time (`name`, `user_id`, `age`, `create_time`) values (?, ?, ?, ?)
    -

    主要是为了保证 create_time 唯一比较好说明问题,

    -
    int i = 0;
    -try (
    -        Connection conn = dataSource.getConnection();
    -        PreparedStatement ps = conn.prepareStatement(insertSql)) {
    -    do {
    -        ps.setString(1, localName + new Random().nextInt(100));
    -        ps.setLong(2, 10086L + (new Random().nextInt(100)));
    -        ps.setInt(3, 18);
    -        ps.setLong(4, new Date().getTime());
    +"container-0" #124 prio=5 os_prio=31 tid=0x00007fc9df06a000 nid=0x5803 waiting on condition [0x000070000608c000]
    +   java.lang.Thread.State: TIMED_WAITING (sleeping)
    +        at java.lang.Thread.sleep(Native Method)
    +        at org.apache.catalina.core.StandardServer.await(StandardServer.java:570)
    +        at org.springframework.boot.web.embedded.tomcat.TomcatWebServer$1.run(TomcatWebServer.java:197)
     
    +   Locked ownable synchronizers:
    +        - None
     
    -        int result = ps.executeUpdate();
    -        LOGGER.info("current execute result: {}", result);
    -        Thread.sleep(new Random().nextInt(100));
    -        i++;
    -    } while (i <= 2000);
    -

    三个表的数据分别是 673,678,650,说明符合预期了,各个表数据不一样,接下来比如我们想要做一个这样的分页查询

    -
    select * from student_time ORDER BY create_time ASC limit 1000, 5;
    -

    student_time 对于我们使用的 sharding-jdbc 来说当然是逻辑表,首先从一无所知去想这个查询如果我们自己来处理应该是怎么做,
    首先是不是可以每个表都从 333 开始取 5 条数据,类似于下面的查询,然后进行 15 条的合并重排序获取前面的 5 条

    -
    select * from student_time_0 ORDER BY create_time ASC limit 333, 5;
    -select * from student_time_1 ORDER BY create_time ASC limit 333, 5;
    -select * from student_time_2 ORDER BY create_time ASC limit 333, 5;
    -

    忽略前面 limit 差的 1,这个结果除非三个表的分布是绝对的均匀,否则结果肯定会出现一定的偏差,以为每个表的 333 这个位置对于其他表来说都不一定是一样的,这样对于最后整体的结果,就会出现偏差
    因为一直在纠结怎么让这个更直观的表现出来,所以尝试画了个图

    黑色的框代表我从每个表里按排序从 334 到 338 的 5 条数据, 他们在每个表里都是代表了各自正确的排序值,但是对于我们想要的其实是合表后的 1001,1005 这五条,然后我们假设总的排序值位于前 1000 的分布是第 0 个表是 320 条,第 1 个表是 340 条,第 2 个表是 340 条,那么可以明显地看出来我这么查的结果简单合并肯定是不对的。
    那么 sharding-jdbc 是如何保证这个结果的呢,其实就是我在每个表里都查分页偏移量和分页大小那么多的数据,在我这个例子里就是对于 0,1,2 三个分表每个都查 1005 条数据,即使我的数据不平衡到最极端的情况,前 1005 条数据都出在某个分表中,也可以正确获得最后的结果,但是明显的问题就是大分页,数据较多,就会导致非常大的问题,即使如 sharding-jdbc 对于合并排序的优化做得比较好,也还是需要传输那么大量的数据,并且查询也耗时,那么有没有解决方案呢,应该说有两个,或者说主要是想讲后者
    第一个办法是像这种查询,如果业务上不需要进行跳页,而是只给下一页,那么我们就能把前一次的最大偏移量的 create_time 记录下来,下一页就可以拿着这个偏移量进行查询,这个比较简单易懂,就不多说了
    第二个办法是看的58 沈剑的一篇文章,尝试理解讲述一下,
    这个办法的第一步跟前面那个错误的方法或者说不准确的方法一样,先是将分页偏移量平均后在三个表里进行查询

    -
    t0
    -334 10158 nick95  18  1641548941767
    -335 10098 nick11  18  1641548941879
    -336 10167 nick51  18  1641548942089
    -337 10167 nick3 18  1641548942119
    -338 10170 nick57  18  1641548942169
    +"Catalina-utility-2" #123 prio=1 os_prio=31 tid=0x00007fc9de886000 nid=0xa80f waiting on condition [0x0000700005f89000]
    +   java.lang.Thread.State: WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076c88ab58> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    +        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1088)
    +        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    +   Locked ownable synchronizers:
    +        - None
     
    -t1
    -334 10105 nick98  18  1641548939071   最小
    -335 10174 nick94  18  1641548939377
    -336 10129 nick85  18  1641548939442
    -337 10141 nick84  18  1641548939480
    -338 10096 nick74  18  1641548939668
    +"Catalina-utility-1" #122 prio=1 os_prio=31 tid=0x00007fc9de884000 nid=0x5667 waiting on condition [0x0000700005e86000]
    +   java.lang.Thread.State: TIMED_WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076c88ab58> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
    +        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
    +        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -t2
    -334 10184 nick11  18  1641548945075
    -335 10109 nick93  18  1641548945382
    -336 10181 nick41  18  1641548945583
    -337 10130 nick80  18  1641548945993
    -338 10184 nick19  18  1641548946294  最大
    -

    然后要做什么呢,其实目标比较明白,因为前面那种方法其实就是我知道了前一页的偏移量,所以可以直接当做条件来进行查询,那这里我也想着拿到这个条件,所以我将第一遍查出来的最小的 create_time 和最大的 create_time 找出来,然后再去三个表里查询,其实主要是最小值,因为我拿着最小值去查以后我就能知道这个最小值在每个表里处在什么位置,

    -
    t0
    -322 10161 nick81  18  1641548939284
    -323 10113 nick16  18  1641548939393
    -324 10110 nick56  18  1641548939577
    -325 10116 nick69  18  1641548939588
    -326 10173 nick51  18  1641548939646
    +   Locked ownable synchronizers:
    +        - None
     
    -t1
    -334 10105 nick98  18  1641548939071
    -335 10174 nick94  18  1641548939377
    -336 10129 nick85  18  1641548939442
    -337 10141 nick84  18  1641548939480
    -338 10096 nick74  18  1641548939668
    +"RMI Scheduler(0)" #15 daemon prio=5 os_prio=31 tid=0x00007fc9de9ee000 nid=0x5503 waiting on condition [0x0000700005d83000]
    +   java.lang.Thread.State: TIMED_WAITING (parking)
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x00000006c0015410> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    +        at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
    +        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
    +        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
    +        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    +        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    +        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    +        at java.lang.Thread.run(Thread.java:748)
    +
    +   Locked ownable synchronizers:
    +        - None
     
    -t2
    -297 10136 nick28  18  1641548939161
    -298 10142 nick68  18  1641548939177
    -299 10124 nick41  18  1641548939237
    -300 10148 nick87  18  1641548939510
    -301 10169 nick23  18  1641548939715
    -

    我只贴了前五条数据,为了方便知道偏移量,每个分表都使用了自增主键,我们可以看到前一次查询的最小值分别在其他两个表里的位置分别是 322-1 和 297-1,那么对于总体来说这个时间应该是在 322 - 1 + 333 + 297 - 1 = 951,那这样子我只要对后面的数据最多每个表查 1000 - 951 + 5 = 54 条数据再进行合并排序就可以获得最终正确的结果。
    这个就是传说中的二次查询法。

    -]]>
    - - Java - - - Java - Sharding-Jdbc - -
    - - 聊聊 Sharding-Jdbc 的简单原理初篇 - /2021/12/26/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E5%8E%9F%E7%90%86%E5%88%9D%E7%AF%87/ - 在上一篇 sharding-jdbc 的介绍中其实碰到过一个问题,这里也引出了一个比较有意思的话题
    就是我在执行 query 的时候犯过一个比较难发现的错误,

    -
    ResultSet resultSet = ps.executeQuery(sql);
    -

    实际上应该是

    -
    ResultSet resultSet = ps.executeQuery();
    -

    而这里的差别就是,是否传 sql 这个参数,首先我们要知道这个 ps 是什么,它也是个接口java.sql.PreparedStatement,而真正的实现类是org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement,我们来看下继承关系

    这里可以看到继承关系里有org.apache.shardingsphere.driver.jdbc.unsupported.AbstractUnsupportedOperationPreparedStatement
    那么在我上面的写错的代码里

    -
    @Override
    -public final ResultSet executeQuery(final String sql) throws SQLException {
    -    throw new SQLFeatureNotSupportedException("executeQuery with SQL for PreparedStatement");
    -}
    -

    这个报错一开始让我有点懵,后来点进去了发现是这么个异常,但是我其实一开始是用的更新语句,以为更新不支持,因为平时使用没有深究过,以为是不是需要使用 Mybatis 才可以执行更新,但是理论上也不应该,再往上看原来这些异常是由 sharding-jdbc 包装的,也就是在上面说的AbstractUnsupportedOperationPreparedStatement,这其实也是一种设计思想,本身 jdbc 提供了一系列接口,由各家去支持,包括 mysql,sql server,oracle 等,而正因为这个设计,所以 sharding-jdbc 也可以在此基础上进行设计,我们可以总体地看下 sharding-jdbc 的实现基础

    看了前面ShardingSpherePreparedStatement的继承关系,应该也能猜到这里的几个类都是实现了 jdbc 的基础接口,

    在前一篇的 demo 中的

    -
    Connection conn = dataSource.getConnection();
    -

    其实就获得了org.apache.shardingsphere.driver.jdbc.core.connection.ShardingSphereConnection#ShardingSphereConnection
    然后获得java.sql.PreparedStatement

    -
    PreparedStatement ps = conn.prepareStatement(sql)
    -

    就是获取了org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement
    然后就是执行

    -
    ResultSet resultSet = ps.executeQuery();
    -

    然后获得结果
    org.apache.shardingsphere.driver.jdbc.core.resultset.ShardingSphereResultSet

    -

    其实像 mybatis 也是基于这样去实现的

    -]]>
    - - Java - - - Java - Sharding-Jdbc - -
    - - 聊聊 Sharding-Jdbc 的简单使用 - /2021/12/12/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E4%BD%BF%E7%94%A8/ - 我们在日常工作中还是使用比较多的分库分表组件的,其中比较优秀的就有 Sharding-Jdbc,一开始由当当开源,后来捐献给了 Apache,说一下简单使用,因为原来经常的使用都是基于 xml 跟 properties 组合起来使用,这里主要试下用 Java Config 来配置
    首先是通过 Spring Initializr 创建个带 jdbc 的 Spring Boot 项目,然后引入主要的依赖

    -
    <dependency>
    -    <groupId>org.apache.shardingsphere</groupId>
    -    <artifactId>shardingsphere-jdbc-core</artifactId>
    -    <version>5.0.0-beta</version>
    -</dependency>
    -

    因为前面有聊过 Spring Boot 的自动加载,在这里 spring 就会自己去找 DataSource 的配置,所以要在入口把它干掉

    -
    @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class})
    -public class ShardingJdbcDemoApplication implements CommandLineRunner {
    -

    然后因为想在入口跑代码,就实现了下 org.springframework.boot.CommandLineRunner 主要是后面的 Java Config 代码

    -
    
    -// 注意这里的注解,可以让 Spring 自动帮忙加载,也就是 Java Config 的核心
    -@Configuration
    -public class MysqlConfig {
    +"Attach Listener" #13 daemon prio=9 os_prio=31 tid=0x00007fc9df149800 nid=0x3c07 waiting on condition [0x0000000000000000]
    +   java.lang.Thread.State: RUNNABLE
     
    -    @Bean
    -    public DataSource dataSource() throws SQLException {
    -        // Configure actual data sources
    -        Map<String, DataSource> dataSourceMap = new HashMap<>();
    +   Locked ownable synchronizers:
    +        - None
     
    -        
    -        // Configure the first data source
    -        // 使用了默认的Hikari连接池的 DataSource
    -        HikariDataSource dataSource1 = new HikariDataSource();
    -        dataSource1.setDriverClassName("com.mysql.jdbc.Driver");
    -        dataSource1.setJdbcUrl("jdbc:mysql://localhost:3306/sharding");
    -        dataSource1.setUsername("username");
    -        dataSource1.setPassword("password");
    -        dataSourceMap.put("ds0", dataSource1);
    +"RMI TCP Accept-0" #11 daemon prio=5 os_prio=31 tid=0x00007fc9df100000 nid=0x4003 runnable [0x0000700005977000]
    +   java.lang.Thread.State: RUNNABLE
    +        at java.net.PlainSocketImpl.socketAccept(Native Method)
    +        at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:409)
    +        at java.net.ServerSocket.implAccept(ServerSocket.java:545)
    +        at java.net.ServerSocket.accept(ServerSocket.java:513)
    +        at sun.management.jmxremote.LocalRMIServerSocketFactory$1.accept(LocalRMIServerSocketFactory.java:52)
    +        at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:405)
    +        at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:377)
    +        at java.lang.Thread.run(Thread.java:748)
     
    -        // Configure student table rule
    -        // 这里是配置分表逻辑,逻辑表是 student,对应真实的表是 student_0 到 student_1, 这个配置方式就是有多少表可以用 student_$->{0..n}
    -        ShardingTableRuleConfiguration studentTableRuleConfig = new ShardingTableRuleConfiguration("student", "ds0.student_$->{0..1}");
    +   Locked ownable synchronizers:
    +        - None
     
    -        // 设置分表字段
    -        studentTableRuleConfig.setTableShardingStrategy(new StandardShardingStrategyConfiguration("user_id", "tableShardingAlgorithm"));
    +"Service Thread" #9 daemon prio=9 os_prio=31 tid=0x00007fc9df0ce800 nid=0x4103 runnable [0x0000000000000000]
    +   java.lang.Thread.State: RUNNABLE
     
    +   Locked ownable synchronizers:
    +        - None
     
    -        // Configure sharding rule
    -        // 配置 studentTableRuleConfig
    -        ShardingRuleConfiguration shardingRuleConfig = new ShardingRuleConfiguration();
    -        shardingRuleConfig.getTables().add(studentTableRuleConfig);
    +"C1 CompilerThread2" #8 daemon prio=9 os_prio=31 tid=0x00007fc9df0ce000 nid=0x4203 waiting on condition [0x0000000000000000]
    +   java.lang.Thread.State: RUNNABLE
     
    -        // Configure table sharding algorithm
    -        Properties tableShardingAlgorithmrProps = new Properties();
    -        // 算法表达式就是根据 user_id 对 2 进行取模
    -        tableShardingAlgorithmrProps.setProperty("algorithm-expression", "student_${user_id % 2}");
    -        shardingRuleConfig.getShardingAlgorithms().put("tableShardingAlgorithm", new ShardingSphereAlgorithmConfiguration("INLINE", tableShardingAlgorithmrProps));
    +   Locked ownable synchronizers:
    +        - None
     
    +"C2 CompilerThread1" #7 daemon prio=9 os_prio=31 tid=0x00007fc9de0a3800 nid=0x3503 waiting on condition [0x0000000000000000]
    +   java.lang.Thread.State: RUNNABLE
     
    -        // 然后创建这个 DataSource
    -        return ShardingSphereDataSourceFactory.createDataSource(dataSourceMap, Collections.singleton(shardingRuleConfig), new Properties());
    +   Locked ownable synchronizers:
    +        - None
     
    -    }
    -}
    -

    然后我们就可以在使用这个 DataSource 了,先看下这两个表的数据

    -
    @Override
    -    public void run(String... args) {
    -        LOGGER.info("run here");
    -        String sql = "SELECT * FROM student WHERE user_id=? ";
    -        try (
    -                Connection conn = dataSource.getConnection();
    -                PreparedStatement ps = conn.prepareStatement(sql)) {
    -            // 参数就是 user_id,然后也是分表键,对 2 取模就是 1,应该是去 student_1 取数据
    -            ps.setInt(1, 1001);
    +"C2 CompilerThread0" #6 daemon prio=9 os_prio=31 tid=0x00007fc9de89b000 nid=0x3403 waiting on condition [0x0000000000000000]
    +   java.lang.Thread.State: RUNNABLE
     
    -            ResultSet resultSet = ps.executeQuery();
    -            while (resultSet.next()) {
    -                final int id = resultSet.getInt("id");
    -                final String name = resultSet.getString("name");
    -                final int userId = resultSet.getInt("user_id");
    -                final int age = resultSet.getInt("age");
    -                System.out.println("奇数表 id:" + id + " 姓名:" + name
    -                        + " 用户 id:" + userId + " 年龄:" + age );
    -                System.out.println("=============================");
    -            }
    -            // 参数就是 user_id,然后也是分表键,对 2 取模就是 0,应该是去 student_0 取数据
    -            ps.setInt(1, 1000);
    -            resultSet = ps.executeQuery();
    -            while (resultSet.next()) {
    -                final int id = resultSet.getInt("id");
    -                final String name = resultSet.getString("name");
    -                final int userId = resultSet.getInt("user_id");
    -                final int age = resultSet.getInt("age");
    -                System.out.println("偶数表 id:" + id + " 姓名:" + name
    -                        + " 用户 id:" + userId + " 年龄:" + age );
    -                System.out.println("=============================");
    -            }
    -        } catch (SQLException e) {
    -            e.printStackTrace();
    -        }
    -    }
    -

    看下查询结果

    -]]>
    - - Java - - - Java - Sharding-Jdbc - -
    - - 聊聊 dubbo 的线程池 - /2021/04/04/%E8%81%8A%E8%81%8A-dubbo-%E7%9A%84%E7%BA%BF%E7%A8%8B%E6%B1%A0/ - 之前没注意到这一块,只是比较模糊的印象 dubbo 自己基于 ThreadPoolExecutor 定义了几个线程池,但是没具体看过,主要是觉得就是为了避免使用 jdk 自带的那几个(java.util.concurrent.Executors),防止出现那些问题
    看下代码目录主要是这几个

    -
      -
    • FixedThreadPool:创建一个复用固定个数线程的线程池。
      简单看下代码
      public Executor getExecutor(URL url) {
      -        String name = url.getParameter("threadname", "Dubbo");
      -        int threads = url.getParameter("threads", 200);
      -        int queues = url.getParameter("queues", 0);
      -        return new ThreadPoolExecutor(threads, threads, 0L, TimeUnit.MILLISECONDS, (BlockingQueue)(queues == 0 ? new SynchronousQueue() : (queues < 0 ? new LinkedBlockingQueue() : new LinkedBlockingQueue(queues))), new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      -    }
      -可以看到核心线程数跟最大线程数一致,也就是说就不会在核心线程数和最大线程数之间动态变化了
    • -
    • LimitedThreadPool:创建一个线程池,这个线程池中线程个数随着需要量动态增加,但是数量不超过配置的阈值的个数,另外空闲线程不会被回收,会一直存在。
      public Executor getExecutor(URL url) {
      -        String name = url.getParameter("threadname", "Dubbo");
      -        int cores = url.getParameter("corethreads", 0);
      -        int threads = url.getParameter("threads", 200);
      -        int queues = url.getParameter("queues", 0);
      -        return new ThreadPoolExecutor(cores, threads, 9223372036854775807L, TimeUnit.MILLISECONDS, (BlockingQueue)(queues == 0 ? new SynchronousQueue() : (queues < 0 ? new LinkedBlockingQueue() : new LinkedBlockingQueue(queues))), new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      -    }
      -这个特点主要是创建了保活时间特别长,即可以认为不会被回收了
    • -
    • EagerThreadPool :创建一个线程池,这个线程池当所有核心线程都处于忙碌状态时候,创建新的线程来执行新任务,而不是把任务放入线程池阻塞队列。
      public Executor getExecutor(URL url) {
      -        String name = url.getParameter("threadname", "Dubbo");
      -        int cores = url.getParameter("corethreads", 0);
      -        int threads = url.getParameter("threads", 2147483647);
      -        int queues = url.getParameter("queues", 0);
      -        int alive = url.getParameter("alive", 60000);
      -        TaskQueue<Runnable> taskQueue = new TaskQueue(queues <= 0 ? 1 : queues);
      -        EagerThreadPoolExecutor executor = new EagerThreadPoolExecutor(cores, threads, (long)alive, TimeUnit.MILLISECONDS, taskQueue, new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      -        taskQueue.setExecutor(executor);
      -        return executor;
      -    }
      -这个是改动最多的一个了,因为需要实现这个机制,有兴趣的可以详细看下
    • -
    • CachedThreadPool: 创建一个自适应线程池,当线程处于空闲1分钟时候,线程会被回收,当有新请求到来时候会创建新线程
      public Executor getExecutor(URL url) {
      -        String name = url.getParameter("threadname", "Dubbo");
      -        int cores = url.getParameter("corethreads", 0);
      -        int threads = url.getParameter("threads", 2147483647);
      -        int queues = url.getParameter("queues", 0);
      -        int alive = url.getParameter("alive", 60000);
      -        return new ThreadPoolExecutor(cores, threads, (long)alive, TimeUnit.MILLISECONDS, (BlockingQueue)(queues == 0 ? new SynchronousQueue() : (queues < 0 ? new LinkedBlockingQueue() : new LinkedBlockingQueue(queues))), new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      -    }
      -这里可以看到线程池的配置,核心是 0,最大线程数是 2147483647,保活时间是一分钟
      只是非常简略的介绍下,有兴趣可以自行阅读代码。
    • -
    -]]>
    - - Java - Dubbo - 线程池 - Dubbo - 线程池 - ThreadPool - - - Java - Dubbo - ThreadPool - 线程池 - FixedThreadPool - LimitedThreadPool - EagerThreadPool - CachedThreadPool - -
    - - 聊聊 mysql 的 MVCC 续篇 - /2020/05/02/%E8%81%8A%E8%81%8A-mysql-%E7%9A%84-MVCC-%E7%BB%AD%E7%AF%87/ - 上一篇聊了mysql 的 innodb 引擎基于 read view 实现的 mvcc 和事务隔离级别,可能有些细心的小伙伴会发现一些问题,第一个是在 RC 级别下的事务提交后的可见性,这里涉及到了三个参数,m_low_limit_id,m_up_limit_id,m_ids,之前看到知乎的一篇写的非常不错的文章,但是就在这一点上似乎有点疑惑,这里基于源码和注释来解释下这个问题

    -
    /**
    -Opens a read view where exactly the transactions serialized before this
    -point in time are seen in the view.
    -@param id		Creator transaction id */
    +   Locked ownable synchronizers:
    +        - None
    +
    +"Monitor Ctrl-Break" #5 daemon prio=5 os_prio=31 tid=0x00007fc9df0ca000 nid=0x3303 runnable [0x0000700005468000]
    +   java.lang.Thread.State: RUNNABLE
    +        at java.net.SocketInputStream.socketRead0(Native Method)
    +        at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
    +        at java.net.SocketInputStream.read(SocketInputStream.java:171)
    +        at java.net.SocketInputStream.read(SocketInputStream.java:141)
    +        at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284)
    +        at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326)
    +        at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178)
    +        - locked <0x00000006c001b760> (a java.io.InputStreamReader)
    +        at java.io.InputStreamReader.read(InputStreamReader.java:184)
    +        at java.io.BufferedReader.fill(BufferedReader.java:161)
    +        at java.io.BufferedReader.readLine(BufferedReader.java:324)
    +        - locked <0x00000006c001b760> (a java.io.InputStreamReader)
    +        at java.io.BufferedReader.readLine(BufferedReader.java:389)
    +        at com.intellij.rt.execution.application.AppMainV2$1.run(AppMainV2.java:64)
     
    -void ReadView::prepare(trx_id_t id) {
    -  ut_ad(mutex_own(&trx_sys->mutex));
    +   Locked ownable synchronizers:
    +        - None
     
    -  m_creator_trx_id = id;
    +"Signal Dispatcher" #4 daemon prio=9 os_prio=31 tid=0x00007fc9de824000 nid=0x4503 runnable [0x0000000000000000]
    +   java.lang.Thread.State: RUNNABLE
     
    -  m_low_limit_no = m_low_limit_id = m_up_limit_id = trx_sys->max_trx_id;
    -

    m_low_limit_id赋的值是trx_sys->max_trx_id,代表的是当前系统最小的未分配的事务 id,所以呢,举个例子,当前有三个活跃事务,事务 id 分别是 100,200,300,而 m_up_limit_id = 100, m_low_limit_id = 301,当事务 id 是 200 的提交之后,它的更新就是可以被 100 和 300 看到,而不是说 m_ids 里没了 200,并且 200 比 100 大就应该不可见了

    -

    幻读

    还有一个问题是幻读的问题,这貌似也是个高频面试题,啥意思呢,或者说跟它最常拿来比较的脏读,脏读是指读到了别的事务未提交的数据,因为未提交,严格意义上来讲,不一定是会被最后落到库里,可能会回滚,也就是在 read uncommitted 级别下会出现的问题,但是幻读不太一样,幻读是指两次查询的结果数量不一样,比如我查了第一次是 select * from table1 where id < 10 for update,查出来了一条结果 id 是 5,然后再查一下发现出来了一条 id 是 5,一条 id 是 7,那是不是有点尴尬了,其实呢这个点我觉得脏读跟幻读也比较是从原理层面来命名,如果第一次接触的同学发觉有点不理解也比较正常,因为从逻辑上讲总之都是数据不符合预期,但是基于源码层面其实是不同的情况,幻读是在原先的 read view 无法完全解决的,怎么解决呢,简单的来说就是锁咯,我们知道innodb 是基于 record lock 行锁的,但是貌似没有办法解决这种问题,那么 innodb 就引入了 gap lock 间隙锁,比如上面说的情况下,id 小于 10 的情况下,是都应该锁住的,gap lock 其实是基于索引结构来锁的,因为索引树除了树形结构之外,还有一个next record 的指针,gap lock 也是基于这个来锁的
    看一下 mysql 的文档

    -
    -

    SELECT … FOR UPDATE sets an exclusive next-key lock on every record the search encounters. However, only an index record lock is required for statements that lock rows using a unique index to search for a unique row.

    -
    -

    对于一个 for update 查询,在 RR 级别下,会设置一个 next-key lock在每一条被查询到的记录上,next-lock 又是啥呢,其实就是 gap 锁和 record 锁的结合体,比如我在数据库里有 id 是 1,3,5,7,10,对于上面那条查询,查出来的结果就是 1,3,5,7,那么按照文档里描述的,对于这几条记录都会加上next-key lock,也就是(-∞, 1], (1, 3], (3, 5], (5, 7], (7, 10) 这些区间和记录会被锁起来,不让插入,再唠叨一下呢,就是其实如果是只读的事务,光 read view 一致性读就够了,如果是有写操作的呢,就需要锁了。

    -]]>
    - - Mysql - C - 数据结构 - 源码 - Mysql - - - mysql - 数据结构 - 源码 - mvcc - read view - gap lock - next-key lock - 幻读 - -
    - - 聊聊 Java 自带的那些*逆天*工具 - /2020/08/02/%E8%81%8A%E8%81%8A-Java-%E8%87%AA%E5%B8%A6%E7%9A%84%E9%82%A3%E4%BA%9B%E9%80%86%E5%A4%A9%E5%B7%A5%E5%85%B7/ - 原谅我的标题党,其实这些工具的确很厉害,之前其实介绍过一点相关的,是从我一次问题排查的过程中用到的,但是最近又有碰到一次排查问题,发现其实用 idea 直接 dump thread 是不现实的,毕竟服务器环境的没法这么操作,那就得用 Java 的那些工具了

    -

    jstack & jps

    譬如 jstack,这个命令其实不能更简单了
    看看 help 信息

    -l参数可以打出锁的额外信息,然后后面的 pid 就是进程 id 咯,机智的小伙伴会问了(就你这个小白才问这么蠢的问题🤦‍♂️),怎么看 Java 应用的进程呢
    那就是 jps 了,命令也很简单,一般直接用 jps命令就好了,不过也可以 help 看一下

    稍微解释下,-q是只显示进程 id,-m是输出给main 方法的参数,比如我在配置中加给参数

    然后用 jps -m查看

    -v加上小 v 的话就是打印 jvm 参数

    还是有点东西,然后就继续介绍 jstack 了,然后我们看看 jstack 出来是啥,为了加点内容我加了个死锁

    -
    public static void main(String[] args) throws InterruptedException {
    -        SpringApplication.run(ThreadDumpDemoApplication.class, args);
    -        ReentrantLock lock1 = new ReentrantLock();
    -        ReentrantLock lock2 = new ReentrantLock();
    -        Thread t1 = new Thread() {
    -            @Override
    -            public void run() {
    -                try {
    -                    lock1.lock();
    -                    TimeUnit.SECONDS.sleep(1);
    -                    lock2.lock();
    -                } catch (InterruptedException e) {
    -                    e.printStackTrace();
    -                }
    -            }
    -        };
    -        Thread t2 = new Thread() {
    -            @Override
    -            public void run() {
    -                try {
    -                    lock2.lock();
    -                    TimeUnit.SECONDS.sleep(1);
    -                    lock1.lock();
    -                } catch (InterruptedException e) {
    -                    e.printStackTrace();
    -                }
    -            }
    -        };
    -        t1.setName("mythread1");
    -        t2.setName("mythread2");
    -        t1.start();
    -        t2.start();
    -        Thread.sleep(10000);
    -    }
    -

    然后看看出来时怎么样的

    -
    2020-08-02 21:50:32
    -Full thread dump Java HotSpot(TM) 64-Bit Server VM (25.201-b09 mixed mode):
    +   Locked ownable synchronizers:
    +        - None
     
    -"DestroyJavaVM" #147 prio=5 os_prio=31 tid=0x00007fc9dd807000 nid=0x2603 waiting on condition [0x0000000000000000]
    -   java.lang.Thread.State: RUNNABLE
    +"Finalizer" #3 daemon prio=8 os_prio=31 tid=0x00007fc9dd811800 nid=0x4f03 in Object.wait() [0x0000700005262000]
    +   java.lang.Thread.State: WAITING (on object monitor)
    +        at java.lang.Object.wait(Native Method)
    +        - waiting on <0x00000006c0008348> (a java.lang.ref.ReferenceQueue$Lock)
    +        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
    +        - locked <0x00000006c0008348> (a java.lang.ref.ReferenceQueue$Lock)
    +        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:165)
    +        at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:216)
     
        Locked ownable synchronizers:
             - None
     
    -"mythread2" #140 prio=5 os_prio=31 tid=0x00007fc9dd877000 nid=0x9903 waiting on condition [0x0000700006fb9000]
    -   java.lang.Thread.State: WAITING (parking)
    +"Reference Handler" #2 daemon prio=10 os_prio=31 tid=0x00007fc9de02a000 nid=0x5003 in Object.wait() [0x000070000515f000]
    +   java.lang.Thread.State: WAITING (on object monitor)
    +        at java.lang.Object.wait(Native Method)
    +        - waiting on <0x00000006c001b940> (a java.lang.ref.Reference$Lock)
    +        at java.lang.Object.wait(Object.java:502)
    +        at java.lang.ref.Reference.tryHandlePending(Reference.java:191)
    +        - locked <0x00000006c001b940> (a java.lang.ref.Reference$Lock)
    +        at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:153)
    +
    +   Locked ownable synchronizers:
    +        - None
    +
    +"VM Thread" os_prio=31 tid=0x00007fc9df00b800 nid=0x2c03 runnable 
    +
    +"GC task thread#0 (ParallelGC)" os_prio=31 tid=0x00007fc9de805000 nid=0x1e07 runnable 
    +
    +"GC task thread#1 (ParallelGC)" os_prio=31 tid=0x00007fc9de003800 nid=0x2a03 runnable 
    +
    +"GC task thread#2 (ParallelGC)" os_prio=31 tid=0x00007fc9df002000 nid=0x5403 runnable 
    +
    +"GC task thread#3 (ParallelGC)" os_prio=31 tid=0x00007fc9df002800 nid=0x5203 runnable 
    +
    +"VM Periodic Task Thread" os_prio=31 tid=0x00007fc9df11a800 nid=0x3a03 waiting on condition 
    +
    +JNI global references: 1087
    +
    +
    +Found one Java-level deadlock:
    +=============================
    +"mythread2":
    +  waiting for ownable synchronizer 0x000000076f5d4330, (a java.util.concurrent.locks.ReentrantLock$NonfairSync),
    +  which is held by "mythread1"
    +"mythread1":
    +  waiting for ownable synchronizer 0x000000076f5d4360, (a java.util.concurrent.locks.ReentrantLock$NonfairSync),
    +  which is held by "mythread2"
    +
    +Java stack information for the threads listed above:
    +===================================================
    +"mythread2":
             at sun.misc.Unsafe.park(Native Method)
             - parking to wait for  <0x000000076f5d4330> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
             at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    @@ -15994,466 +14715,883 @@ void ReadView::prepare(trx_id_t id) {
             at java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:209)
             at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
             at com.nicksxs.thread_dump_demo.ThreadDumpDemoApplication$2.run(ThreadDumpDemoApplication.java:34)
    +"mythread1":
    +        at sun.misc.Unsafe.park(Native Method)
    +        - parking to wait for  <0x000000076f5d4360> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
    +        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870)
    +        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199)
    +        at java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:209)
    +        at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
    +        at com.nicksxs.thread_dump_demo.ThreadDumpDemoApplication$1.run(ThreadDumpDemoApplication.java:22)
    +
    +Found 1 deadlock.
    +

    前面的信息其实上次就看过了,后面就可以发现有个死锁了,

    上面比较长,把主要的截出来,就是这边的,这点就很强大了。

    +

    jmap

    惯例还是看一下帮助信息

    这个相对命令比较多,不过因为现在 dump 下来我们可能会用文件模式,然后将文件下载下来使用 mat 进行分析,所以可以使用
    jmap -dump:live,format=b,file=heap.bin <pid>
    命令照着上面看的就是打印活着的对象,然后以二进制格式,文件名叫 heap.bin 然后最后就是进程 id,打印出来以后可以用 mat 打开

    这样就可以很清晰的看到应用里的各种信息,jmap 直接在命令中还可以看很多信息,比如使用jmap -histo <pid>打印对象的实例数和对象占用的内存

    jmap -finalizerinfo <pid> 打印正在等候回收的对象

    +

    小tips

    对于一些应用内存已经占满了,jstack 和 jmap 可能会连不上的情况,可以使用-F参数强制打印线程或者 dump 文件,但是要注意这两者使用的用户必须与 java 进程启动用户一致,并且使用的 jdk 也要一致

    +]]>
    + + Java + Thread dump + 问题排查 + 工具 + + + Java + JPS + JStack + JMap + +
    + + 聊聊 RocketMQ 的 Broker 源码 + /2020/07/19/%E8%81%8A%E8%81%8A-RocketMQ-%E7%9A%84-Broker-%E6%BA%90%E7%A0%81/ + broker 的启动形式有点类似于 NameServer,都是服务类型的,跟 Consumer 差别比较大,

    +

    首先是org.apache.rocketmq.broker.BrokerStartup中的 main 函数,org.apache.rocketmq.broker.BrokerStartup#createBrokerController基本就是读取参数,这里差点把最核心的初始化给漏了,

    +
    final BrokerController controller = new BrokerController(
    +                brokerConfig,
    +                nettyServerConfig,
    +                nettyClientConfig,
    +                messageStoreConfig);
    +            // remember all configs to prevent discard
    +            controller.getConfiguration().registerConfig(properties);
    +
    +            boolean initResult = controller.initialize();
    + +

    前面是以 broker 配置,netty 的服务端和客户端配置,以及消息存储配置在实例化 BrokerController,然后就是初始化了

    +
    public boolean initialize() throws CloneNotSupportedException {
    +        boolean result = this.topicConfigManager.load();
    +
    +        result = result && this.consumerOffsetManager.load();
    +        result = result && this.subscriptionGroupManager.load();
    +        result = result && this.consumerFilterManager.load();
    + +

    前面这些就是各个配置的 load 了,然后是个我认为比较重要的部分messageStore 的实例化,

    +
    if (result) {
    +    try {
    +        this.messageStore =
    +            new DefaultMessageStore(this.messageStoreConfig, this.brokerStatsManager, this.messageArrivingListener,
    +                this.brokerConfig);
    +        if (messageStoreConfig.isEnableDLegerCommitLog()) {
    +            DLedgerRoleChangeHandler roleChangeHandler = new DLedgerRoleChangeHandler(this, (DefaultMessageStore) messageStore);
    +            ((DLedgerCommitLog)((DefaultMessageStore) messageStore).getCommitLog()).getdLedgerServer().getdLedgerLeaderElector().addRoleChangeHandler(roleChangeHandler);
    +        }
    +        this.brokerStats = new BrokerStats((DefaultMessageStore) this.messageStore);
    +        //load plugin
    +        MessageStorePluginContext context = new MessageStorePluginContext(messageStoreConfig, brokerStatsManager, messageArrivingListener, brokerConfig);
    +        this.messageStore = MessageStoreFactory.build(context, this.messageStore);
    +        this.messageStore.getDispatcherList().addFirst(new CommitLogDispatcherCalcBitMap(this.brokerConfig, this.consumerFilterManager));
    +    } catch (IOException e) {
    +        result = false;
    +        log.error("Failed to initialize", e);
    +    }
    +}
    +
    +result = result && this.messageStore.load();
    + +

    先是实例化,实例化构造函数里的代码比较重要,重点看一下

    +
    public DefaultMessageStore(final MessageStoreConfig messageStoreConfig, final BrokerStatsManager brokerStatsManager,
    +        final MessageArrivingListener messageArrivingListener, final BrokerConfig brokerConfig) throws IOException {
    +        this.messageArrivingListener = messageArrivingListener;
    +        this.brokerConfig = brokerConfig;
    +        this.messageStoreConfig = messageStoreConfig;
    +        this.brokerStatsManager = brokerStatsManager;
    +        this.allocateMappedFileService = new AllocateMappedFileService(this);
    +        if (messageStoreConfig.isEnableDLegerCommitLog()) {
    +            this.commitLog = new DLedgerCommitLog(this);
    +        } else {
    +            this.commitLog = new CommitLog(this);
    +        }
    +        this.consumeQueueTable = new ConcurrentHashMap<>(32);
    +
    +        this.flushConsumeQueueService = new FlushConsumeQueueService();
    +        this.cleanCommitLogService = new CleanCommitLogService();
    +        this.cleanConsumeQueueService = new CleanConsumeQueueService();
    +        this.storeStatsService = new StoreStatsService();
    +        this.indexService = new IndexService(this);
    +        if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    +            this.haService = new HAService(this);
    +        } else {
    +            this.haService = null;
    +        }
    +        this.reputMessageService = new ReputMessageService();
    +
    +        this.scheduleMessageService = new ScheduleMessageService(this);
    +
    +        this.transientStorePool = new TransientStorePool(messageStoreConfig);
    +
    +        if (messageStoreConfig.isTransientStorePoolEnable()) {
    +            this.transientStorePool.init();
    +        }
    +
    +        this.allocateMappedFileService.start();
    +
    +        this.indexService.start();
    +
    +        this.dispatcherList = new LinkedList<>();
    +        this.dispatcherList.addLast(new CommitLogDispatcherBuildConsumeQueue());
    +        this.dispatcherList.addLast(new CommitLogDispatcherBuildIndex());
    +
    +        File file = new File(StorePathConfigHelper.getLockFile(messageStoreConfig.getStorePathRootDir()));
    +        MappedFile.ensureDirOK(file.getParent());
    +        lockFile = new RandomAccessFile(file, "rw");
    +    }
    + +

    这里面有很多类,不过先把从构造函数里传进来的忽略下,接下来就是 AllocateMappedFileService 这个service,前面看过文章的可能会根据上面的代码猜到,这也是个 ServiceThread,如果是对RocketMQ 有所了解的可能从名字可以看出这个类是关于 RocketMQ 消息怎么落盘的,当需要创建MappedFile时(在MapedFileQueue.getLastMapedFile方法中),向该线程的requestQueue队列中放入AllocateRequest请求对象,该线程会在后台监听该队列,并在后台创建MapedFile对象,即同时创建了物理文件。然后是创建了 IndexService 服务线程,用来给创建索引;还有是FlushConsumeQueueService是将ConsumeQueue 刷入磁盘;CleanCommitLogService用来清理过期的 CommitLog,默认是 72 小时以上;CleanConsumeQueueService是将小于最新的 CommitLog 偏移量的 ConsumeQueue 清理掉;StoreStatsService是储存统计服务;HAService用于CommitLog 的主备同步;ScheduleMessageService用于定时消息;还有就是这个ReputMessageService非常重要,就是由它实现了将 CommitLog 以 topic+queue 纬度构建 ConsumeQueue,后面TransientStorePool是异步刷盘时的存储buffer,也可以从后面的判断中看出来

    +
    public boolean isTransientStorePoolEnable() {
    +        return transientStorePoolEnable && FlushDiskType.ASYNC_FLUSH == getFlushDiskType()
    +            && BrokerRole.SLAVE != getBrokerRole();
    +    }
    - Locked ownable synchronizers: - - <0x000000076f5d4360> (a java.util.concurrent.locks.ReentrantLock$NonfairSync) +

    再然后就是启动两个服务线程,dispatcherList是为CommitLog文件转发请求,差不多这个初始化就这些内容。

    +

    然后回到外层,下面是主备切换的配置,然后是数据统计,接着是存储插件加载,然后是往转发器链表里再加一个过滤器

    +
    if (messageStoreConfig.isEnableDLegerCommitLog()) {
    +            DLedgerRoleChangeHandler roleChangeHandler = new DLedgerRoleChangeHandler(this, (DefaultMessageStore) messageStore);
    +            ((DLedgerCommitLog)((DefaultMessageStore) messageStore).getCommitLog()).getdLedgerServer().getdLedgerLeaderElector().addRoleChangeHandler(roleChangeHandler);
    +        }
    +        this.brokerStats = new BrokerStats((DefaultMessageStore) this.messageStore);
    +        //load plugin
    +        MessageStorePluginContext context = new MessageStorePluginContext(messageStoreConfig, brokerStatsManager, messageArrivingListener, brokerConfig);
    +        this.messageStore = MessageStoreFactory.build(context, this.messageStore);
    +        this.messageStore.getDispatcherList().addFirst(new CommitLogDispatcherCalcBitMap(this.brokerConfig, this.consumerFilterManager));
    -"mythread1" #139 prio=5 os_prio=31 tid=0x00007fc9de873800 nid=0x9a03 waiting on condition [0x0000700006eb6000] - java.lang.Thread.State: WAITING (parking) - at sun.misc.Unsafe.park(Native Method) - - parking to wait for <0x000000076f5d4360> (a java.util.concurrent.locks.ReentrantLock$NonfairSync) - at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175) - at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836) - at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870) - at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199) - at java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:209) - at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285) - at com.nicksxs.thread_dump_demo.ThreadDumpDemoApplication$1.run(ThreadDumpDemoApplication.java:22) +

    接下来就是org.apache.rocketmq.store.MessageStore#load的过程了,

    +
      +
    1. 调用ScheduleMessageService.load方法,初始化延迟级别列表。将这些级别(”1s 5s 10s 30s 1m 2m 3m 4m 5m 6m 7m 8m 9m 10m 20m 30m 1h 2h”)的延时存入延迟级别delayLevelTable:ConcurrentHashMap<Integer /* level */, Long/* delay timeMillis */>变量中,例如1s的kv值为1:1000,5s的kv值为2:5000,key值依次类推;每个延迟级别即为一个队列。
    2. +
    +

    2)调用CommitLog.load方法,在此方法中调用MapedFileQueue.load方法,将$HOME /store/commitlog目录下的所有文件加载到MapedFileQueue的List变量中;

    +

    3)调用DefaultMessageStore.loadConsumeQueue方法加载consumequeue文件数据到DefaultMessageStore.consumeQueueTable集合中。

    +

    初始化StoreCheckPoint对象,加载$HOME/store/checkpoint文件,该文件记录三个字段值,分别是物理队列消息时间戳、逻辑队列消息时间戳、索引队列消息时间戳。

    +

    调用IndexService.load方法加载$HOME/store/index目录下的文件。对该目录下的每个文件初始化一个IndexFile对象。然后调用IndexFile对象的load方法将IndexHeader加载到对象的变量中;再根据检查是否存在abort文件,若有存在abort文件,则表示Broker表示上次是异常退出的,则检查checkpoint的indexMsgTimestamp字段值是否小于IndexHeader的endTimestamp值,indexMsgTimestamp值表示最后刷盘的时间,若小于则表示在最后刷盘之后在该文件中还创建了索引,则要删除该Index文件,否则将该IndexFile对象放入indexFileList:ArrayList索引文件集合中。

    +

    然后调用org.apache.rocketmq.store.DefaultMessageStore#recover恢复,前面有根据boolean lastExitOK = !this.isTempFileExist();临时文件是否存在来判断上一次是否正常退出,根据这个状态来选择什么恢复策略

    +

    接下去是初始化 Netty 服务端,初始化发送消息线程池(sendMessageExecutor)、拉取消息线程池(pullMessageExecutor)、管理Broker线程池(adminBrokerExecutor)、客户端管理线程池(clientManageExecutor),注册事件处理器,包括发送消息事件处理器(SendMessageProcessor)、拉取消息事件处理器、查询消息事件处理器(QueryMessageProcessor,包括客户端的心跳事件、注销事件、获取消费者列表事件、更新更新和查询消费进度consumerOffset)、客户端管理事件处理器(ClientManageProcessor)、结束事务处理器(EndTransactionProcessor)、默认事件处理器(AdminBrokerProcessor),然后是定时任务

    +

    BrokerController.this.getBrokerStats().record(); 记录 Broker 状态

    +

    BrokerController.this.consumerOffsetManager.persist(); 持久化consumerOffset

    +

    BrokerController.this.consumerFilterManager.persist();持久化consumerFilter

    +

    BrokerController.this.protectBroker(); 保护 broker,消费慢,不让继续投递

    +

    BrokerController.this.printWaterMark(); 打印水位

    +

    log.info("dispatch behind commit log {} bytes", BrokerController.this.getMessageStore().dispatchBehindBytes()); 检查落后程度

    +

    BrokerController.this.brokerOuterAPI.fetchNameServerAddr(); 定时获取 nameserver

    +

    BrokerController.this.printMasterAndSlaveDiff(); 打印主从不一致

    +

    然后是 tsl,初始化事务消息,初始化 RPCHook

    +

    请把害怕打到公屏上🤦‍♂️,从线程池名字和调用的方法应该可以看出大部分的用途

    +
    this.remotingServer = new NettyRemotingServer(this.nettyServerConfig, this.clientHousekeepingService);
    +            NettyServerConfig fastConfig = (NettyServerConfig) this.nettyServerConfig.clone();
    +            fastConfig.setListenPort(nettyServerConfig.getListenPort() - 2);
    +            this.fastRemotingServer = new NettyRemotingServer(fastConfig, this.clientHousekeepingService);
    +            this.sendMessageExecutor = new BrokerFixedThreadPoolExecutor(
    +                this.brokerConfig.getSendMessageThreadPoolNums(),
    +                this.brokerConfig.getSendMessageThreadPoolNums(),
    +                1000 * 60,
    +                TimeUnit.MILLISECONDS,
    +                this.sendThreadPoolQueue,
    +                new ThreadFactoryImpl("SendMessageThread_"));
     
    -   Locked ownable synchronizers:
    -        - <0x000000076f5d4330> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
    +            this.pullMessageExecutor = new BrokerFixedThreadPoolExecutor(
    +                this.brokerConfig.getPullMessageThreadPoolNums(),
    +                this.brokerConfig.getPullMessageThreadPoolNums(),
    +                1000 * 60,
    +                TimeUnit.MILLISECONDS,
    +                this.pullThreadPoolQueue,
    +                new ThreadFactoryImpl("PullMessageThread_"));
     
    -"http-nio-8080-Acceptor" #137 daemon prio=5 os_prio=31 tid=0x00007fc9de1ac000 nid=0x9b03 runnable [0x0000700006db3000]
    -   java.lang.Thread.State: RUNNABLE
    -        at sun.nio.ch.ServerSocketChannelImpl.accept0(Native Method)
    -        at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:422)
    -        at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:250)
    -        - locked <0x000000076f1e4820> (a java.lang.Object)
    -        at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:469)
    -        at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:71)
    -        at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:95)
    -        at java.lang.Thread.run(Thread.java:748)
    +            this.replyMessageExecutor = new BrokerFixedThreadPoolExecutor(
    +                this.brokerConfig.getProcessReplyMessageThreadPoolNums(),
    +                this.brokerConfig.getProcessReplyMessageThreadPoolNums(),
    +                1000 * 60,
    +                TimeUnit.MILLISECONDS,
    +                this.replyThreadPoolQueue,
    +                new ThreadFactoryImpl("ProcessReplyMessageThread_"));
     
    -   Locked ownable synchronizers:
    -        - None
    +            this.queryMessageExecutor = new BrokerFixedThreadPoolExecutor(
    +                this.brokerConfig.getQueryMessageThreadPoolNums(),
    +                this.brokerConfig.getQueryMessageThreadPoolNums(),
    +                1000 * 60,
    +                TimeUnit.MILLISECONDS,
    +                this.queryThreadPoolQueue,
    +                new ThreadFactoryImpl("QueryMessageThread_"));
     
    -"http-nio-8080-ClientPoller" #136 daemon prio=5 os_prio=31 tid=0x00007fc9dd876800 nid=0x6503 runnable [0x0000700006cb0000]
    -   java.lang.Thread.State: RUNNABLE
    -        at sun.nio.ch.KQueueArrayWrapper.kevent0(Native Method)
    -        at sun.nio.ch.KQueueArrayWrapper.poll(KQueueArrayWrapper.java:198)
    -        at sun.nio.ch.KQueueSelectorImpl.doSelect(KQueueSelectorImpl.java:117)
    -        at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
    -        - locked <0x000000076f2978c8> (a sun.nio.ch.Util$3)
    -        - locked <0x000000076f2978b8> (a java.util.Collections$UnmodifiableSet)
    -        - locked <0x000000076f297798> (a sun.nio.ch.KQueueSelectorImpl)
    -        at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:97)
    -        at org.apache.tomcat.util.net.NioEndpoint$Poller.run(NioEndpoint.java:709)
    -        at java.lang.Thread.run(Thread.java:748)
    +            this.adminBrokerExecutor =
    +                Executors.newFixedThreadPool(this.brokerConfig.getAdminBrokerThreadPoolNums(), new ThreadFactoryImpl(
    +                    "AdminBrokerThread_"));
     
    -   Locked ownable synchronizers:
    -        - None
    +            this.clientManageExecutor = new ThreadPoolExecutor(
    +                this.brokerConfig.getClientManageThreadPoolNums(),
    +                this.brokerConfig.getClientManageThreadPoolNums(),
    +                1000 * 60,
    +                TimeUnit.MILLISECONDS,
    +                this.clientManagerThreadPoolQueue,
    +                new ThreadFactoryImpl("ClientManageThread_"));
     
    -"http-nio-8080-exec-10" #135 daemon prio=5 os_prio=31 tid=0x00007fc9de1af000 nid=0x9d03 waiting on condition [0x0000700006bad000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +            this.heartbeatExecutor = new BrokerFixedThreadPoolExecutor(
    +                this.brokerConfig.getHeartbeatThreadPoolNums(),
    +                this.brokerConfig.getHeartbeatThreadPoolNums(),
    +                1000 * 60,
    +                TimeUnit.MILLISECONDS,
    +                this.heartbeatThreadPoolQueue,
    +                new ThreadFactoryImpl("HeartbeatThread_", true));
     
    -   Locked ownable synchronizers:
    -        - None
    +            this.endTransactionExecutor = new BrokerFixedThreadPoolExecutor(
    +                this.brokerConfig.getEndTransactionThreadPoolNums(),
    +                this.brokerConfig.getEndTransactionThreadPoolNums(),
    +                1000 * 60,
    +                TimeUnit.MILLISECONDS,
    +                this.endTransactionThreadPoolQueue,
    +                new ThreadFactoryImpl("EndTransactionThread_"));
     
    -"http-nio-8080-exec-9" #134 daemon prio=5 os_prio=31 tid=0x00007fc9de1ab800 nid=0x6403 waiting on condition [0x0000700006aaa000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +            this.consumerManageExecutor =
    +                Executors.newFixedThreadPool(this.brokerConfig.getConsumerManageThreadPoolNums(), new ThreadFactoryImpl(
    +                    "ConsumerManageThread_"));
     
    -   Locked ownable synchronizers:
    -        - None
    +            this.registerProcessor();
     
    -"http-nio-8080-exec-8" #133 daemon prio=5 os_prio=31 tid=0x00007fc9de873000 nid=0x9f03 waiting on condition [0x00007000069a7000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +            final long initialDelay = UtilAll.computeNextMorningTimeMillis() - System.currentTimeMillis();
    +            final long period = 1000 * 60 * 60 * 24;
    +            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +                @Override
    +                public void run() {
    +                    try {
    +                        BrokerController.this.getBrokerStats().record();
    +                    } catch (Throwable e) {
    +                        log.error("schedule record error.", e);
    +                    }
    +                }
    +            }, initialDelay, period, TimeUnit.MILLISECONDS);
     
    -   Locked ownable synchronizers:
    -        - None
    +            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +                @Override
    +                public void run() {
    +                    try {
    +                        BrokerController.this.consumerOffsetManager.persist();
    +                    } catch (Throwable e) {
    +                        log.error("schedule persist consumerOffset error.", e);
    +                    }
    +                }
    +            }, 1000 * 10, this.brokerConfig.getFlushConsumerOffsetInterval(), TimeUnit.MILLISECONDS);
     
    -"http-nio-8080-exec-7" #132 daemon prio=5 os_prio=31 tid=0x00007fc9df0a1800 nid=0xa103 waiting on condition [0x00007000068a4000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +                @Override
    +                public void run() {
    +                    try {
    +                        BrokerController.this.consumerFilterManager.persist();
    +                    } catch (Throwable e) {
    +                        log.error("schedule persist consumer filter error.", e);
    +                    }
    +                }
    +            }, 1000 * 10, 1000 * 10, TimeUnit.MILLISECONDS);
     
    -   Locked ownable synchronizers:
    -        - None
    +            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +                @Override
    +                public void run() {
    +                    try {
    +                        BrokerController.this.protectBroker();
    +                    } catch (Throwable e) {
    +                        log.error("protectBroker error.", e);
    +                    }
    +                }
    +            }, 3, 3, TimeUnit.MINUTES);
     
    -"http-nio-8080-exec-6" #131 daemon prio=5 os_prio=31 tid=0x00007fc9df242800 nid=0x6103 waiting on condition [0x00007000067a1000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +                @Override
    +                public void run() {
    +                    try {
    +                        BrokerController.this.printWaterMark();
    +                    } catch (Throwable e) {
    +                        log.error("printWaterMark error.", e);
    +                    }
    +                }
    +            }, 10, 1, TimeUnit.SECONDS);
     
    -   Locked ownable synchronizers:
    -        - None
    +            this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
     
    -"http-nio-8080-exec-5" #130 daemon prio=5 os_prio=31 tid=0x00007fc9de872000 nid=0x5f03 waiting on condition [0x000070000669e000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +                @Override
    +                public void run() {
    +                    try {
    +                        log.info("dispatch behind commit log {} bytes", BrokerController.this.getMessageStore().dispatchBehindBytes());
    +                    } catch (Throwable e) {
    +                        log.error("schedule dispatchBehindBytes error.", e);
    +                    }
    +                }
    +            }, 1000 * 10, 1000 * 60, TimeUnit.MILLISECONDS);
     
    -   Locked ownable synchronizers:
    -        - None
    +            if (this.brokerConfig.getNamesrvAddr() != null) {
    +                this.brokerOuterAPI.updateNameServerAddressList(this.brokerConfig.getNamesrvAddr());
    +                log.info("Set user specified name server address: {}", this.brokerConfig.getNamesrvAddr());
    +            } else if (this.brokerConfig.isFetchNamesrvAddrByAddressServer()) {
    +                this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
     
    -"http-nio-8080-exec-4" #129 daemon prio=5 os_prio=31 tid=0x00007fc9de1a6000 nid=0x5e03 waiting on condition [0x000070000659b000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +                    @Override
    +                    public void run() {
    +                        try {
    +                            BrokerController.this.brokerOuterAPI.fetchNameServerAddr();
    +                        } catch (Throwable e) {
    +                            log.error("ScheduledTask fetchNameServerAddr exception", e);
    +                        }
    +                    }
    +                }, 1000 * 10, 1000 * 60 * 2, TimeUnit.MILLISECONDS);
    +            }
     
    -   Locked ownable synchronizers:
    -        - None
    +            if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    +                if (BrokerRole.SLAVE == this.messageStoreConfig.getBrokerRole()) {
    +                    if (this.messageStoreConfig.getHaMasterAddress() != null && this.messageStoreConfig.getHaMasterAddress().length() >= 6) {
    +                        this.messageStore.updateHaMasterAddress(this.messageStoreConfig.getHaMasterAddress());
    +                        this.updateMasterHAServerAddrPeriodically = false;
    +                    } else {
    +                        this.updateMasterHAServerAddrPeriodically = true;
    +                    }
    +                } else {
    +                    this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
    +                        @Override
    +                        public void run() {
    +                            try {
    +                                BrokerController.this.printMasterAndSlaveDiff();
    +                            } catch (Throwable e) {
    +                                log.error("schedule printMasterAndSlaveDiff error.", e);
    +                            }
    +                        }
    +                    }, 1000 * 10, 1000 * 60, TimeUnit.MILLISECONDS);
    +                }
    +            }
     
    -"http-nio-8080-exec-3" #128 daemon prio=5 os_prio=31 tid=0x00007fc9de871800 nid=0x5c03 waiting on condition [0x0000700006498000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +            if (TlsSystemConfig.tlsMode != TlsMode.DISABLED) {
    +                // Register a listener to reload SslContext
    +                try {
    +                    fileWatchService = new FileWatchService(
    +                        new String[] {
    +                            TlsSystemConfig.tlsServerCertPath,
    +                            TlsSystemConfig.tlsServerKeyPath,
    +                            TlsSystemConfig.tlsServerTrustCertPath
    +                        },
    +                        new FileWatchService.Listener() {
    +                            boolean certChanged, keyChanged = false;
     
    -   Locked ownable synchronizers:
    -        - None
    +                            @Override
    +                            public void onChanged(String path) {
    +                                if (path.equals(TlsSystemConfig.tlsServerTrustCertPath)) {
    +                                    log.info("The trust certificate changed, reload the ssl context");
    +                                    reloadServerSslContext();
    +                                }
    +                                if (path.equals(TlsSystemConfig.tlsServerCertPath)) {
    +                                    certChanged = true;
    +                                }
    +                                if (path.equals(TlsSystemConfig.tlsServerKeyPath)) {
    +                                    keyChanged = true;
    +                                }
    +                                if (certChanged && keyChanged) {
    +                                    log.info("The certificate and private key changed, reload the ssl context");
    +                                    certChanged = keyChanged = false;
    +                                    reloadServerSslContext();
    +                                }
    +                            }
     
    -"http-nio-8080-exec-2" #127 daemon prio=5 os_prio=31 tid=0x00007fc9dead9000 nid=0x5b03 waiting on condition [0x0000700006395000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107)
    -        at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +                            private void reloadServerSslContext() {
    +                                ((NettyRemotingServer) remotingServer).loadSslContext();
    +                                ((NettyRemotingServer) fastRemotingServer).loadSslContext();
    +                            }
    +                        });
    +                } catch (Exception e) {
    +                    log.warn("FileWatchService created error, can't load the certificate dynamically");
    +                }
    +            }
    +            initialTransaction();
    +            initialAcl();
    +            initialRpcHooks();
    +        }
    +        return result;
    - Locked ownable synchronizers: - - None -"http-nio-8080-exec-1" #126 daemon prio=5 os_prio=31 tid=0x00007fc9ddb00000 nid=0x5a03 waiting on condition [0x0000700006292000] - java.lang.Thread.State: WAITING (parking) - at sun.misc.Unsafe.park(Native Method) - - parking to wait for <0x000000076f26aa00> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject) - at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175) - at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039) - at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442) - at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:107) - at org.apache.tomcat.util.threads.TaskQueue.take(TaskQueue.java:33) - at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) - Locked ownable synchronizers: - - None +

    Broker 启动过程

    +

    贴代码

    +
    public void start() throws Exception {
    +        if (this.messageStore != null) {
    +            this.messageStore.start();
    +        }
     
    -"http-nio-8080-BlockPoller" #125 daemon prio=5 os_prio=31 tid=0x00007fc9df242000 nid=0xa503 runnable [0x000070000618f000]
    -   java.lang.Thread.State: RUNNABLE
    -        at sun.nio.ch.KQueueArrayWrapper.kevent0(Native Method)
    -        at sun.nio.ch.KQueueArrayWrapper.poll(KQueueArrayWrapper.java:198)
    -        at sun.nio.ch.KQueueSelectorImpl.doSelect(KQueueSelectorImpl.java:117)
    -        at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
    -        - locked <0x000000076f1eea30> (a sun.nio.ch.Util$3)
    -        - locked <0x000000076f1ee198> (a java.util.Collections$UnmodifiableSet)
    -        - locked <0x000000076f1ee010> (a sun.nio.ch.KQueueSelectorImpl)
    -        at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:97)
    -        at org.apache.tomcat.util.net.NioBlockingSelector$BlockPoller.run(NioBlockingSelector.java:313)
    +        if (this.remotingServer != null) {
    +            this.remotingServer.start();
    +        }
     
    -   Locked ownable synchronizers:
    -        - None
    +        if (this.fastRemotingServer != null) {
    +            this.fastRemotingServer.start();
    +        }
     
    -"container-0" #124 prio=5 os_prio=31 tid=0x00007fc9df06a000 nid=0x5803 waiting on condition [0x000070000608c000]
    -   java.lang.Thread.State: TIMED_WAITING (sleeping)
    -        at java.lang.Thread.sleep(Native Method)
    -        at org.apache.catalina.core.StandardServer.await(StandardServer.java:570)
    -        at org.springframework.boot.web.embedded.tomcat.TomcatWebServer$1.run(TomcatWebServer.java:197)
    +        if (this.fileWatchService != null) {
    +            this.fileWatchService.start();
    +        }
     
    -   Locked ownable synchronizers:
    -        - None
    +        if (this.brokerOuterAPI != null) {
    +            this.brokerOuterAPI.start();
    +        }
     
    -"Catalina-utility-2" #123 prio=1 os_prio=31 tid=0x00007fc9de886000 nid=0xa80f waiting on condition [0x0000700005f89000]
    -   java.lang.Thread.State: WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076c88ab58> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
    -        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1088)
    -        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +        if (this.pullRequestHoldService != null) {
    +            this.pullRequestHoldService.start();
    +        }
     
    -   Locked ownable synchronizers:
    -        - None
    +        if (this.clientHousekeepingService != null) {
    +            this.clientHousekeepingService.start();
    +        }
     
    -"Catalina-utility-1" #122 prio=1 os_prio=31 tid=0x00007fc9de884000 nid=0x5667 waiting on condition [0x0000700005e86000]
    -   java.lang.Thread.State: TIMED_WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076c88ab58> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
    -        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
    -        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
    -        at java.lang.Thread.run(Thread.java:748)
    +        if (this.filterServerManager != null) {
    +            this.filterServerManager.start();
    +        }
    +
    +        if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    +            startProcessorByHa(messageStoreConfig.getBrokerRole());
    +            handleSlaveSynchronize(messageStoreConfig.getBrokerRole());
    +            this.registerBrokerAll(true, false, true);
    +        }
     
    -   Locked ownable synchronizers:
    -        - None
    +        this.scheduledExecutorService.scheduleAtFixedRate(new Runnable() {
     
    -"RMI Scheduler(0)" #15 daemon prio=5 os_prio=31 tid=0x00007fc9de9ee000 nid=0x5503 waiting on condition [0x0000700005d83000]
    -   java.lang.Thread.State: TIMED_WAITING (parking)
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x00000006c0015410> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    -        at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
    -        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
    -        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
    -        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
    -        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
    -        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    -        at java.lang.Thread.run(Thread.java:748)
    +            @Override
    +            public void run() {
    +                try {
    +                    BrokerController.this.registerBrokerAll(true, false, brokerConfig.isForceRegister());
    +                } catch (Throwable e) {
    +                    log.error("registerBrokerAll Exception", e);
    +                }
    +            }
    +        }, 1000 * 10, Math.max(10000, Math.min(brokerConfig.getRegisterNameServerPeriod(), 60000)), TimeUnit.MILLISECONDS);
     
    -   Locked ownable synchronizers:
    -        - None
    +        if (this.brokerStatsManager != null) {
    +            this.brokerStatsManager.start();
    +        }
     
    -"Attach Listener" #13 daemon prio=9 os_prio=31 tid=0x00007fc9df149800 nid=0x3c07 waiting on condition [0x0000000000000000]
    -   java.lang.Thread.State: RUNNABLE
    +        if (this.brokerFastFailure != null) {
    +            this.brokerFastFailure.start();
    +        }
     
    -   Locked ownable synchronizers:
    -        - None
     
    -"RMI TCP Accept-0" #11 daemon prio=5 os_prio=31 tid=0x00007fc9df100000 nid=0x4003 runnable [0x0000700005977000]
    -   java.lang.Thread.State: RUNNABLE
    -        at java.net.PlainSocketImpl.socketAccept(Native Method)
    -        at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:409)
    -        at java.net.ServerSocket.implAccept(ServerSocket.java:545)
    -        at java.net.ServerSocket.accept(ServerSocket.java:513)
    -        at sun.management.jmxremote.LocalRMIServerSocketFactory$1.accept(LocalRMIServerSocketFactory.java:52)
    -        at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.executeAcceptLoop(TCPTransport.java:405)
    -        at sun.rmi.transport.tcp.TCPTransport$AcceptLoop.run(TCPTransport.java:377)
    -        at java.lang.Thread.run(Thread.java:748)
    +    }
    - Locked ownable synchronizers: - - None +

    首先是启动messageStore,调用 start 方法,这里面又调用了一些代码

    +
    public void start() throws Exception {
     
    -"Service Thread" #9 daemon prio=9 os_prio=31 tid=0x00007fc9df0ce800 nid=0x4103 runnable [0x0000000000000000]
    -   java.lang.Thread.State: RUNNABLE
    +        lock = lockFile.getChannel().tryLock(0, 1, false);
    +        if (lock == null || lock.isShared() || !lock.isValid()) {
    +            throw new RuntimeException("Lock failed,MQ already started");
    +        }
     
    -   Locked ownable synchronizers:
    -        - None
    +        lockFile.getChannel().write(ByteBuffer.wrap("lock".getBytes()));
    +        lockFile.getChannel().force(true);
    +        {
    +            /**
    +             * 1. Make sure the fast-forward messages to be truncated during the recovering according to the max physical offset of the commitlog;
    +             * 2. DLedger committedPos may be missing, so the maxPhysicalPosInLogicQueue maybe bigger that maxOffset returned by DLedgerCommitLog, just let it go;
    +             * 3. Calculate the reput offset according to the consume queue;
    +             * 4. Make sure the fall-behind messages to be dispatched before starting the commitlog, especially when the broker role are automatically changed.
    +             */
    +            long maxPhysicalPosInLogicQueue = commitLog.getMinOffset();
    +            for (ConcurrentMap<Integer, ConsumeQueue> maps : this.consumeQueueTable.values()) {
    +                for (ConsumeQueue logic : maps.values()) {
    +                    if (logic.getMaxPhysicOffset() > maxPhysicalPosInLogicQueue) {
    +                        maxPhysicalPosInLogicQueue = logic.getMaxPhysicOffset();
    +                    }
    +                }
    +            }
    +            if (maxPhysicalPosInLogicQueue < 0) {
    +                maxPhysicalPosInLogicQueue = 0;
    +            }
    +            if (maxPhysicalPosInLogicQueue < this.commitLog.getMinOffset()) {
    +                maxPhysicalPosInLogicQueue = this.commitLog.getMinOffset();
    +                /**
    +                 * This happens in following conditions:
    +                 * 1. If someone removes all the consumequeue files or the disk get damaged.
    +                 * 2. Launch a new broker, and copy the commitlog from other brokers.
    +                 *
    +                 * All the conditions has the same in common that the maxPhysicalPosInLogicQueue should be 0.
    +                 * If the maxPhysicalPosInLogicQueue is gt 0, there maybe something wrong.
    +                 */
    +                log.warn("[TooSmallCqOffset] maxPhysicalPosInLogicQueue={} clMinOffset={}", maxPhysicalPosInLogicQueue, this.commitLog.getMinOffset());
    +            }
    +            log.info("[SetReputOffset] maxPhysicalPosInLogicQueue={} clMinOffset={} clMaxOffset={} clConfirmedOffset={}",
    +                maxPhysicalPosInLogicQueue, this.commitLog.getMinOffset(), this.commitLog.getMaxOffset(), this.commitLog.getConfirmOffset());
    +            this.reputMessageService.setReputFromOffset(maxPhysicalPosInLogicQueue);
    +            this.reputMessageService.start();
     
    -"C1 CompilerThread2" #8 daemon prio=9 os_prio=31 tid=0x00007fc9df0ce000 nid=0x4203 waiting on condition [0x0000000000000000]
    -   java.lang.Thread.State: RUNNABLE
    +            /**
    +             *  1. Finish dispatching the messages fall behind, then to start other services.
    +             *  2. DLedger committedPos may be missing, so here just require dispatchBehindBytes <= 0
    +             */
    +            while (true) {
    +                if (dispatchBehindBytes() <= 0) {
    +                    break;
    +                }
    +                Thread.sleep(1000);
    +                log.info("Try to finish doing reput the messages fall behind during the starting, reputOffset={} maxOffset={} behind={}", this.reputMessageService.getReputFromOffset(), this.getMaxPhyOffset(), this.dispatchBehindBytes());
    +            }
    +            this.recoverTopicQueueTable();
    +        }
     
    -   Locked ownable synchronizers:
    -        - None
    +        if (!messageStoreConfig.isEnableDLegerCommitLog()) {
    +            this.haService.start();
    +            this.handleScheduleMessageService(messageStoreConfig.getBrokerRole());
    +        }
     
    -"C2 CompilerThread1" #7 daemon prio=9 os_prio=31 tid=0x00007fc9de0a3800 nid=0x3503 waiting on condition [0x0000000000000000]
    -   java.lang.Thread.State: RUNNABLE
    +        this.flushConsumeQueueService.start();
    +        this.commitLog.start();
    +        this.storeStatsService.start();
     
    -   Locked ownable synchronizers:
    -        - None
    +        this.createTempFile();
    +        this.addScheduleTask();
    +        this.shutdown = false;
    +    }
    -"C2 CompilerThread0" #6 daemon prio=9 os_prio=31 tid=0x00007fc9de89b000 nid=0x3403 waiting on condition [0x0000000000000000] - java.lang.Thread.State: RUNNABLE - Locked ownable synchronizers: - - None -"Monitor Ctrl-Break" #5 daemon prio=5 os_prio=31 tid=0x00007fc9df0ca000 nid=0x3303 runnable [0x0000700005468000] - java.lang.Thread.State: RUNNABLE - at java.net.SocketInputStream.socketRead0(Native Method) - at java.net.SocketInputStream.socketRead(SocketInputStream.java:116) - at java.net.SocketInputStream.read(SocketInputStream.java:171) - at java.net.SocketInputStream.read(SocketInputStream.java:141) - at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:284) - at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:326) - at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:178) - - locked <0x00000006c001b760> (a java.io.InputStreamReader) - at java.io.InputStreamReader.read(InputStreamReader.java:184) - at java.io.BufferedReader.fill(BufferedReader.java:161) - at java.io.BufferedReader.readLine(BufferedReader.java:324) - - locked <0x00000006c001b760> (a java.io.InputStreamReader) - at java.io.BufferedReader.readLine(BufferedReader.java:389) - at com.intellij.rt.execution.application.AppMainV2$1.run(AppMainV2.java:64) +

    调用DefaultMessageStore.start方法启动DefaultMessageStore对象中的一些服务线程。

    +
      +
    1. 启动ReputMessageService服务线程
    2. +
    3. 启动FlushConsumeQueueService服务线程;
    4. +
    5. 调用CommitLog.start方法,启动CommitLog对象中的FlushCommitLogService线程服务,若是同步刷盘(SYNC_FLUSH)则是启动GroupCommitService线程服务;若是异步刷盘(ASYNC_FLUSH)则是启动FlushRealTimeService线程服务;
    6. +
    7. 启动StoreStatsService线程服务;
    8. +
    9. 启动定时清理任务
    10. +
    +

    然后是启动ClientHousekeepingService的 netty 服务端和客户端,然后是启动fileWatchService证书服务,接着启动BrokerOuterAPI中的NettyRemotingClient,即建立与NameServer的链接,用于自身Broker与其他模块的RPC功能调用;包括获取NameServer的地址、注册Broker、注销Broker、获取Topic配置、获取消息进度信息、获取订阅关系等RPC功能,然后是PullRequestHoldService服务线程,这个就是实现长轮询的,然后启动管家ClientHousekeepingService服务,负责扫描不活跃的生产者,消费者和 filter,启动FilterServerManager 过滤器服务管理,然后启动定时任务调用org.apache.rocketmq.broker.BrokerController#registerBrokerAll向所有 nameserver 注册 broker,最后是按需开启org.apache.rocketmq.store.stats.BrokerStatsManager和org.apache.rocketmq.broker.latency.BrokerFastFailure,基本上启动过程就完成了

    +]]>
    + + MQ + RocketMQ + 消息队列 + RocketMQ + 中间件 + RocketMQ + + + MQ + 消息队列 + RocketMQ + 削峰填谷 + 中间件 + 源码解析 + Broker + +
    + + 聊聊 Sharding-Jdbc 分库分表下的分页方案 + /2022/01/09/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E5%88%86%E5%BA%93%E5%88%86%E8%A1%A8%E4%B8%8B%E7%9A%84%E5%88%86%E9%A1%B5%E6%96%B9%E6%A1%88/ + 前面在聊 Sharding-Jdbc 的时候看到了一篇文章,关于一个分页的查询,一直比较直接的想法就是分库分表下的分页是非常不合理的,一般我们的实操方案都是分表加上 ES 搜索做分页,或者通过合表读写分离的方案,因为对于 sharding-jdbc 如果没有带分表键,查询基本都是只能在所有分表都执行一遍,然后再加上分页,基本上是分页越大后续的查询越耗资源,但是仔细的去想这个细节还是这次,就简单说说
    首先就是我的分表结构

    +
    CREATE TABLE `student_time_0` (
    +  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    +  `user_id` int(11) NOT NULL,
    +  `name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
    +  `age` tinyint(3) unsigned DEFAULT NULL,
    +  `create_time` bigint(20) DEFAULT NULL,
    +  PRIMARY KEY (`id`)
    +) ENGINE=InnoDB AUTO_INCREMENT=674 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
    +

    有这样的三个表,student_time_0, student_time_1, student_time_2, 以 user_id 作为分表键,根据表数量取模作为分表依据
    这里先构造点数据,

    +
    insert into student_time (`name`, `user_id`, `age`, `create_time`) values (?, ?, ?, ?)
    +

    主要是为了保证 create_time 唯一比较好说明问题,

    +
    int i = 0;
    +try (
    +        Connection conn = dataSource.getConnection();
    +        PreparedStatement ps = conn.prepareStatement(insertSql)) {
    +    do {
    +        ps.setString(1, localName + new Random().nextInt(100));
    +        ps.setLong(2, 10086L + (new Random().nextInt(100)));
    +        ps.setInt(3, 18);
    +        ps.setLong(4, new Date().getTime());
     
    -   Locked ownable synchronizers:
    -        - None
     
    -"Signal Dispatcher" #4 daemon prio=9 os_prio=31 tid=0x00007fc9de824000 nid=0x4503 runnable [0x0000000000000000]
    -   java.lang.Thread.State: RUNNABLE
    +        int result = ps.executeUpdate();
    +        LOGGER.info("current execute result: {}", result);
    +        Thread.sleep(new Random().nextInt(100));
    +        i++;
    +    } while (i <= 2000);
    +

    三个表的数据分别是 673,678,650,说明符合预期了,各个表数据不一样,接下来比如我们想要做一个这样的分页查询

    +
    select * from student_time ORDER BY create_time ASC limit 1000, 5;
    +

    student_time 对于我们使用的 sharding-jdbc 来说当然是逻辑表,首先从一无所知去想这个查询如果我们自己来处理应该是怎么做,
    首先是不是可以每个表都从 333 开始取 5 条数据,类似于下面的查询,然后进行 15 条的合并重排序获取前面的 5 条

    +
    select * from student_time_0 ORDER BY create_time ASC limit 333, 5;
    +select * from student_time_1 ORDER BY create_time ASC limit 333, 5;
    +select * from student_time_2 ORDER BY create_time ASC limit 333, 5;
    +

    忽略前面 limit 差的 1,这个结果除非三个表的分布是绝对的均匀,否则结果肯定会出现一定的偏差,以为每个表的 333 这个位置对于其他表来说都不一定是一样的,这样对于最后整体的结果,就会出现偏差
    因为一直在纠结怎么让这个更直观的表现出来,所以尝试画了个图

    黑色的框代表我从每个表里按排序从 334 到 338 的 5 条数据, 他们在每个表里都是代表了各自正确的排序值,但是对于我们想要的其实是合表后的 1001,1005 这五条,然后我们假设总的排序值位于前 1000 的分布是第 0 个表是 320 条,第 1 个表是 340 条,第 2 个表是 340 条,那么可以明显地看出来我这么查的结果简单合并肯定是不对的。
    那么 sharding-jdbc 是如何保证这个结果的呢,其实就是我在每个表里都查分页偏移量和分页大小那么多的数据,在我这个例子里就是对于 0,1,2 三个分表每个都查 1005 条数据,即使我的数据不平衡到最极端的情况,前 1005 条数据都出在某个分表中,也可以正确获得最后的结果,但是明显的问题就是大分页,数据较多,就会导致非常大的问题,即使如 sharding-jdbc 对于合并排序的优化做得比较好,也还是需要传输那么大量的数据,并且查询也耗时,那么有没有解决方案呢,应该说有两个,或者说主要是想讲后者
    第一个办法是像这种查询,如果业务上不需要进行跳页,而是只给下一页,那么我们就能把前一次的最大偏移量的 create_time 记录下来,下一页就可以拿着这个偏移量进行查询,这个比较简单易懂,就不多说了
    第二个办法是看的58 沈剑的一篇文章,尝试理解讲述一下,
    这个办法的第一步跟前面那个错误的方法或者说不准确的方法一样,先是将分页偏移量平均后在三个表里进行查询

    +
    t0
    +334 10158 nick95  18  1641548941767
    +335 10098 nick11  18  1641548941879
    +336 10167 nick51  18  1641548942089
    +337 10167 nick3 18  1641548942119
    +338 10170 nick57  18  1641548942169
     
    -   Locked ownable synchronizers:
    -        - None
     
    -"Finalizer" #3 daemon prio=8 os_prio=31 tid=0x00007fc9dd811800 nid=0x4f03 in Object.wait() [0x0000700005262000]
    -   java.lang.Thread.State: WAITING (on object monitor)
    -        at java.lang.Object.wait(Native Method)
    -        - waiting on <0x00000006c0008348> (a java.lang.ref.ReferenceQueue$Lock)
    -        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:144)
    -        - locked <0x00000006c0008348> (a java.lang.ref.ReferenceQueue$Lock)
    -        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:165)
    -        at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:216)
    +t1
    +334 10105 nick98  18  1641548939071   最小
    +335 10174 nick94  18  1641548939377
    +336 10129 nick85  18  1641548939442
    +337 10141 nick84  18  1641548939480
    +338 10096 nick74  18  1641548939668
     
    -   Locked ownable synchronizers:
    -        - None
    +t2
    +334 10184 nick11  18  1641548945075
    +335 10109 nick93  18  1641548945382
    +336 10181 nick41  18  1641548945583
    +337 10130 nick80  18  1641548945993
    +338 10184 nick19  18  1641548946294  最大
    +

    然后要做什么呢,其实目标比较明白,因为前面那种方法其实就是我知道了前一页的偏移量,所以可以直接当做条件来进行查询,那这里我也想着拿到这个条件,所以我将第一遍查出来的最小的 create_time 和最大的 create_time 找出来,然后再去三个表里查询,其实主要是最小值,因为我拿着最小值去查以后我就能知道这个最小值在每个表里处在什么位置,

    +
    t0
    +322 10161 nick81  18  1641548939284
    +323 10113 nick16  18  1641548939393
    +324 10110 nick56  18  1641548939577
    +325 10116 nick69  18  1641548939588
    +326 10173 nick51  18  1641548939646
    +
    +t1
    +334 10105 nick98  18  1641548939071
    +335 10174 nick94  18  1641548939377
    +336 10129 nick85  18  1641548939442
    +337 10141 nick84  18  1641548939480
    +338 10096 nick74  18  1641548939668
     
    -"Reference Handler" #2 daemon prio=10 os_prio=31 tid=0x00007fc9de02a000 nid=0x5003 in Object.wait() [0x000070000515f000]
    -   java.lang.Thread.State: WAITING (on object monitor)
    -        at java.lang.Object.wait(Native Method)
    -        - waiting on <0x00000006c001b940> (a java.lang.ref.Reference$Lock)
    -        at java.lang.Object.wait(Object.java:502)
    -        at java.lang.ref.Reference.tryHandlePending(Reference.java:191)
    -        - locked <0x00000006c001b940> (a java.lang.ref.Reference$Lock)
    -        at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:153)
    +t2
    +297 10136 nick28  18  1641548939161
    +298 10142 nick68  18  1641548939177
    +299 10124 nick41  18  1641548939237
    +300 10148 nick87  18  1641548939510
    +301 10169 nick23  18  1641548939715
    +

    我只贴了前五条数据,为了方便知道偏移量,每个分表都使用了自增主键,我们可以看到前一次查询的最小值分别在其他两个表里的位置分别是 322-1 和 297-1,那么对于总体来说这个时间应该是在 322 - 1 + 333 + 297 - 1 = 951,那这样子我只要对后面的数据最多每个表查 1000 - 951 + 5 = 54 条数据再进行合并排序就可以获得最终正确的结果。
    这个就是传说中的二次查询法。

    +]]>
    + + Java + + + Java + Sharding-Jdbc + +
    + + 聊聊 Sharding-Jdbc 的简单使用 + /2021/12/12/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E4%BD%BF%E7%94%A8/ + 我们在日常工作中还是使用比较多的分库分表组件的,其中比较优秀的就有 Sharding-Jdbc,一开始由当当开源,后来捐献给了 Apache,说一下简单使用,因为原来经常的使用都是基于 xml 跟 properties 组合起来使用,这里主要试下用 Java Config 来配置
    首先是通过 Spring Initializr 创建个带 jdbc 的 Spring Boot 项目,然后引入主要的依赖

    +
    <dependency>
    +    <groupId>org.apache.shardingsphere</groupId>
    +    <artifactId>shardingsphere-jdbc-core</artifactId>
    +    <version>5.0.0-beta</version>
    +</dependency>
    +

    因为前面有聊过 Spring Boot 的自动加载,在这里 spring 就会自己去找 DataSource 的配置,所以要在入口把它干掉

    +
    @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class})
    +public class ShardingJdbcDemoApplication implements CommandLineRunner {
    +

    然后因为想在入口跑代码,就实现了下 org.springframework.boot.CommandLineRunner 主要是后面的 Java Config 代码

    +
    
    +// 注意这里的注解,可以让 Spring 自动帮忙加载,也就是 Java Config 的核心
    +@Configuration
    +public class MysqlConfig {
     
    -   Locked ownable synchronizers:
    -        - None
    +    @Bean
    +    public DataSource dataSource() throws SQLException {
    +        // Configure actual data sources
    +        Map<String, DataSource> dataSourceMap = new HashMap<>();
     
    -"VM Thread" os_prio=31 tid=0x00007fc9df00b800 nid=0x2c03 runnable 
    +        
    +        // Configure the first data source
    +        // 使用了默认的Hikari连接池的 DataSource
    +        HikariDataSource dataSource1 = new HikariDataSource();
    +        dataSource1.setDriverClassName("com.mysql.jdbc.Driver");
    +        dataSource1.setJdbcUrl("jdbc:mysql://localhost:3306/sharding");
    +        dataSource1.setUsername("username");
    +        dataSource1.setPassword("password");
    +        dataSourceMap.put("ds0", dataSource1);
     
    -"GC task thread#0 (ParallelGC)" os_prio=31 tid=0x00007fc9de805000 nid=0x1e07 runnable 
    +        // Configure student table rule
    +        // 这里是配置分表逻辑,逻辑表是 student,对应真实的表是 student_0 到 student_1, 这个配置方式就是有多少表可以用 student_$->{0..n}
    +        ShardingTableRuleConfiguration studentTableRuleConfig = new ShardingTableRuleConfiguration("student", "ds0.student_$->{0..1}");
     
    -"GC task thread#1 (ParallelGC)" os_prio=31 tid=0x00007fc9de003800 nid=0x2a03 runnable 
    +        // 设置分表字段
    +        studentTableRuleConfig.setTableShardingStrategy(new StandardShardingStrategyConfiguration("user_id", "tableShardingAlgorithm"));
     
    -"GC task thread#2 (ParallelGC)" os_prio=31 tid=0x00007fc9df002000 nid=0x5403 runnable 
     
    -"GC task thread#3 (ParallelGC)" os_prio=31 tid=0x00007fc9df002800 nid=0x5203 runnable 
    +        // Configure sharding rule
    +        // 配置 studentTableRuleConfig
    +        ShardingRuleConfiguration shardingRuleConfig = new ShardingRuleConfiguration();
    +        shardingRuleConfig.getTables().add(studentTableRuleConfig);
     
    -"VM Periodic Task Thread" os_prio=31 tid=0x00007fc9df11a800 nid=0x3a03 waiting on condition 
    +        // Configure table sharding algorithm
    +        Properties tableShardingAlgorithmrProps = new Properties();
    +        // 算法表达式就是根据 user_id 对 2 进行取模
    +        tableShardingAlgorithmrProps.setProperty("algorithm-expression", "student_${user_id % 2}");
    +        shardingRuleConfig.getShardingAlgorithms().put("tableShardingAlgorithm", new ShardingSphereAlgorithmConfiguration("INLINE", tableShardingAlgorithmrProps));
     
    -JNI global references: 1087
     
    +        // 然后创建这个 DataSource
    +        return ShardingSphereDataSourceFactory.createDataSource(dataSourceMap, Collections.singleton(shardingRuleConfig), new Properties());
     
    -Found one Java-level deadlock:
    -=============================
    -"mythread2":
    -  waiting for ownable synchronizer 0x000000076f5d4330, (a java.util.concurrent.locks.ReentrantLock$NonfairSync),
    -  which is held by "mythread1"
    -"mythread1":
    -  waiting for ownable synchronizer 0x000000076f5d4360, (a java.util.concurrent.locks.ReentrantLock$NonfairSync),
    -  which is held by "mythread2"
    +    }
    +}
    +

    然后我们就可以在使用这个 DataSource 了,先看下这两个表的数据

    +
    @Override
    +    public void run(String... args) {
    +        LOGGER.info("run here");
    +        String sql = "SELECT * FROM student WHERE user_id=? ";
    +        try (
    +                Connection conn = dataSource.getConnection();
    +                PreparedStatement ps = conn.prepareStatement(sql)) {
    +            // 参数就是 user_id,然后也是分表键,对 2 取模就是 1,应该是去 student_1 取数据
    +            ps.setInt(1, 1001);
     
    -Java stack information for the threads listed above:
    -===================================================
    -"mythread2":
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f5d4330> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199)
    -        at java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:209)
    -        at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
    -        at com.nicksxs.thread_dump_demo.ThreadDumpDemoApplication$2.run(ThreadDumpDemoApplication.java:34)
    -"mythread1":
    -        at sun.misc.Unsafe.park(Native Method)
    -        - parking to wait for  <0x000000076f5d4360> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)
    -        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870)
    -        at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199)
    -        at java.util.concurrent.locks.ReentrantLock$NonfairSync.lock(ReentrantLock.java:209)
    -        at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
    -        at com.nicksxs.thread_dump_demo.ThreadDumpDemoApplication$1.run(ThreadDumpDemoApplication.java:22)
    +            ResultSet resultSet = ps.executeQuery();
    +            while (resultSet.next()) {
    +                final int id = resultSet.getInt("id");
    +                final String name = resultSet.getString("name");
    +                final int userId = resultSet.getInt("user_id");
    +                final int age = resultSet.getInt("age");
    +                System.out.println("奇数表 id:" + id + " 姓名:" + name
    +                        + " 用户 id:" + userId + " 年龄:" + age );
    +                System.out.println("=============================");
    +            }
    +            // 参数就是 user_id,然后也是分表键,对 2 取模就是 0,应该是去 student_0 取数据
    +            ps.setInt(1, 1000);
    +            resultSet = ps.executeQuery();
    +            while (resultSet.next()) {
    +                final int id = resultSet.getInt("id");
    +                final String name = resultSet.getString("name");
    +                final int userId = resultSet.getInt("user_id");
    +                final int age = resultSet.getInt("age");
    +                System.out.println("偶数表 id:" + id + " 姓名:" + name
    +                        + " 用户 id:" + userId + " 年龄:" + age );
    +                System.out.println("=============================");
    +            }
    +        } catch (SQLException e) {
    +            e.printStackTrace();
    +        }
    +    }
    +

    看下查询结果

    +]]>
    + + Java + + + Java + Sharding-Jdbc + +
    + + 聊聊 Sharding-Jdbc 的简单原理初篇 + /2021/12/26/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E5%8E%9F%E7%90%86%E5%88%9D%E7%AF%87/ + 在上一篇 sharding-jdbc 的介绍中其实碰到过一个问题,这里也引出了一个比较有意思的话题
    就是我在执行 query 的时候犯过一个比较难发现的错误,

    +
    ResultSet resultSet = ps.executeQuery(sql);
    +

    实际上应该是

    +
    ResultSet resultSet = ps.executeQuery();
    +

    而这里的差别就是,是否传 sql 这个参数,首先我们要知道这个 ps 是什么,它也是个接口java.sql.PreparedStatement,而真正的实现类是org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement,我们来看下继承关系

    这里可以看到继承关系里有org.apache.shardingsphere.driver.jdbc.unsupported.AbstractUnsupportedOperationPreparedStatement
    那么在我上面的写错的代码里

    +
    @Override
    +public final ResultSet executeQuery(final String sql) throws SQLException {
    +    throw new SQLFeatureNotSupportedException("executeQuery with SQL for PreparedStatement");
    +}
    +

    这个报错一开始让我有点懵,后来点进去了发现是这么个异常,但是我其实一开始是用的更新语句,以为更新不支持,因为平时使用没有深究过,以为是不是需要使用 Mybatis 才可以执行更新,但是理论上也不应该,再往上看原来这些异常是由 sharding-jdbc 包装的,也就是在上面说的AbstractUnsupportedOperationPreparedStatement,这其实也是一种设计思想,本身 jdbc 提供了一系列接口,由各家去支持,包括 mysql,sql server,oracle 等,而正因为这个设计,所以 sharding-jdbc 也可以在此基础上进行设计,我们可以总体地看下 sharding-jdbc 的实现基础

    看了前面ShardingSpherePreparedStatement的继承关系,应该也能猜到这里的几个类都是实现了 jdbc 的基础接口,

    在前一篇的 demo 中的

    +
    Connection conn = dataSource.getConnection();
    +

    其实就获得了org.apache.shardingsphere.driver.jdbc.core.connection.ShardingSphereConnection#ShardingSphereConnection
    然后获得java.sql.PreparedStatement

    +
    PreparedStatement ps = conn.prepareStatement(sql)
    +

    就是获取了org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement
    然后就是执行

    +
    ResultSet resultSet = ps.executeQuery();
    +

    然后获得结果
    org.apache.shardingsphere.driver.jdbc.core.resultset.ShardingSphereResultSet

    +

    其实像 mybatis 也是基于这样去实现的

    +]]>
    + + Java + + + Java + Sharding-Jdbc + +
    + + 聊聊 dubbo 的线程池 + /2021/04/04/%E8%81%8A%E8%81%8A-dubbo-%E7%9A%84%E7%BA%BF%E7%A8%8B%E6%B1%A0/ + 之前没注意到这一块,只是比较模糊的印象 dubbo 自己基于 ThreadPoolExecutor 定义了几个线程池,但是没具体看过,主要是觉得就是为了避免使用 jdk 自带的那几个(java.util.concurrent.Executors),防止出现那些问题
    看下代码目录主要是这几个

    +
      +
    • FixedThreadPool:创建一个复用固定个数线程的线程池。
      简单看下代码
      public Executor getExecutor(URL url) {
      +        String name = url.getParameter("threadname", "Dubbo");
      +        int threads = url.getParameter("threads", 200);
      +        int queues = url.getParameter("queues", 0);
      +        return new ThreadPoolExecutor(threads, threads, 0L, TimeUnit.MILLISECONDS, (BlockingQueue)(queues == 0 ? new SynchronousQueue() : (queues < 0 ? new LinkedBlockingQueue() : new LinkedBlockingQueue(queues))), new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      +    }
      +可以看到核心线程数跟最大线程数一致,也就是说就不会在核心线程数和最大线程数之间动态变化了
    • +
    • LimitedThreadPool:创建一个线程池,这个线程池中线程个数随着需要量动态增加,但是数量不超过配置的阈值的个数,另外空闲线程不会被回收,会一直存在。
      public Executor getExecutor(URL url) {
      +        String name = url.getParameter("threadname", "Dubbo");
      +        int cores = url.getParameter("corethreads", 0);
      +        int threads = url.getParameter("threads", 200);
      +        int queues = url.getParameter("queues", 0);
      +        return new ThreadPoolExecutor(cores, threads, 9223372036854775807L, TimeUnit.MILLISECONDS, (BlockingQueue)(queues == 0 ? new SynchronousQueue() : (queues < 0 ? new LinkedBlockingQueue() : new LinkedBlockingQueue(queues))), new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      +    }
      +这个特点主要是创建了保活时间特别长,即可以认为不会被回收了
    • +
    • EagerThreadPool :创建一个线程池,这个线程池当所有核心线程都处于忙碌状态时候,创建新的线程来执行新任务,而不是把任务放入线程池阻塞队列。
      public Executor getExecutor(URL url) {
      +        String name = url.getParameter("threadname", "Dubbo");
      +        int cores = url.getParameter("corethreads", 0);
      +        int threads = url.getParameter("threads", 2147483647);
      +        int queues = url.getParameter("queues", 0);
      +        int alive = url.getParameter("alive", 60000);
      +        TaskQueue<Runnable> taskQueue = new TaskQueue(queues <= 0 ? 1 : queues);
      +        EagerThreadPoolExecutor executor = new EagerThreadPoolExecutor(cores, threads, (long)alive, TimeUnit.MILLISECONDS, taskQueue, new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      +        taskQueue.setExecutor(executor);
      +        return executor;
      +    }
      +这个是改动最多的一个了,因为需要实现这个机制,有兴趣的可以详细看下
    • +
    • CachedThreadPool: 创建一个自适应线程池,当线程处于空闲1分钟时候,线程会被回收,当有新请求到来时候会创建新线程
      public Executor getExecutor(URL url) {
      +        String name = url.getParameter("threadname", "Dubbo");
      +        int cores = url.getParameter("corethreads", 0);
      +        int threads = url.getParameter("threads", 2147483647);
      +        int queues = url.getParameter("queues", 0);
      +        int alive = url.getParameter("alive", 60000);
      +        return new ThreadPoolExecutor(cores, threads, (long)alive, TimeUnit.MILLISECONDS, (BlockingQueue)(queues == 0 ? new SynchronousQueue() : (queues < 0 ? new LinkedBlockingQueue() : new LinkedBlockingQueue(queues))), new NamedThreadFactory(name, true), new AbortPolicyWithReport(name, url));
      +    }
      +这里可以看到线程池的配置,核心是 0,最大线程数是 2147483647,保活时间是一分钟
      只是非常简略的介绍下,有兴趣可以自行阅读代码。
    • +
    +]]>
    + + Java + Dubbo - 线程池 + Dubbo + 线程池 + ThreadPool + + + Java + Dubbo + ThreadPool + 线程池 + FixedThreadPool + LimitedThreadPool + EagerThreadPool + CachedThreadPool + +
    + + 聊聊 mysql 的 MVCC 续篇 + /2020/05/02/%E8%81%8A%E8%81%8A-mysql-%E7%9A%84-MVCC-%E7%BB%AD%E7%AF%87/ + 上一篇聊了mysql 的 innodb 引擎基于 read view 实现的 mvcc 和事务隔离级别,可能有些细心的小伙伴会发现一些问题,第一个是在 RC 级别下的事务提交后的可见性,这里涉及到了三个参数,m_low_limit_id,m_up_limit_id,m_ids,之前看到知乎的一篇写的非常不错的文章,但是就在这一点上似乎有点疑惑,这里基于源码和注释来解释下这个问题

    +
    /**
    +Opens a read view where exactly the transactions serialized before this
    +point in time are seen in the view.
    +@param id		Creator transaction id */
     
    -Found 1 deadlock.
    -

    前面的信息其实上次就看过了,后面就可以发现有个死锁了,

    上面比较长,把主要的截出来,就是这边的,这点就很强大了。

    -

    jmap

    惯例还是看一下帮助信息

    这个相对命令比较多,不过因为现在 dump 下来我们可能会用文件模式,然后将文件下载下来使用 mat 进行分析,所以可以使用
    jmap -dump:live,format=b,file=heap.bin <pid>
    命令照着上面看的就是打印活着的对象,然后以二进制格式,文件名叫 heap.bin 然后最后就是进程 id,打印出来以后可以用 mat 打开

    这样就可以很清晰的看到应用里的各种信息,jmap 直接在命令中还可以看很多信息,比如使用jmap -histo <pid>打印对象的实例数和对象占用的内存

    jmap -finalizerinfo <pid> 打印正在等候回收的对象

    -

    小tips

    对于一些应用内存已经占满了,jstack 和 jmap 可能会连不上的情况,可以使用-F参数强制打印线程或者 dump 文件,但是要注意这两者使用的用户必须与 java 进程启动用户一致,并且使用的 jdk 也要一致

    +void ReadView::prepare(trx_id_t id) { + ut_ad(mutex_own(&trx_sys->mutex)); + + m_creator_trx_id = id; + + m_low_limit_no = m_low_limit_id = m_up_limit_id = trx_sys->max_trx_id;
    +

    m_low_limit_id赋的值是trx_sys->max_trx_id,代表的是当前系统最小的未分配的事务 id,所以呢,举个例子,当前有三个活跃事务,事务 id 分别是 100,200,300,而 m_up_limit_id = 100, m_low_limit_id = 301,当事务 id 是 200 的提交之后,它的更新就是可以被 100 和 300 看到,而不是说 m_ids 里没了 200,并且 200 比 100 大就应该不可见了

    +

    幻读

    还有一个问题是幻读的问题,这貌似也是个高频面试题,啥意思呢,或者说跟它最常拿来比较的脏读,脏读是指读到了别的事务未提交的数据,因为未提交,严格意义上来讲,不一定是会被最后落到库里,可能会回滚,也就是在 read uncommitted 级别下会出现的问题,但是幻读不太一样,幻读是指两次查询的结果数量不一样,比如我查了第一次是 select * from table1 where id < 10 for update,查出来了一条结果 id 是 5,然后再查一下发现出来了一条 id 是 5,一条 id 是 7,那是不是有点尴尬了,其实呢这个点我觉得脏读跟幻读也比较是从原理层面来命名,如果第一次接触的同学发觉有点不理解也比较正常,因为从逻辑上讲总之都是数据不符合预期,但是基于源码层面其实是不同的情况,幻读是在原先的 read view 无法完全解决的,怎么解决呢,简单的来说就是锁咯,我们知道innodb 是基于 record lock 行锁的,但是貌似没有办法解决这种问题,那么 innodb 就引入了 gap lock 间隙锁,比如上面说的情况下,id 小于 10 的情况下,是都应该锁住的,gap lock 其实是基于索引结构来锁的,因为索引树除了树形结构之外,还有一个next record 的指针,gap lock 也是基于这个来锁的
    看一下 mysql 的文档

    +
    +

    SELECT … FOR UPDATE sets an exclusive next-key lock on every record the search encounters. However, only an index record lock is required for statements that lock rows using a unique index to search for a unique row.

    +
    +

    对于一个 for update 查询,在 RR 级别下,会设置一个 next-key lock在每一条被查询到的记录上,next-lock 又是啥呢,其实就是 gap 锁和 record 锁的结合体,比如我在数据库里有 id 是 1,3,5,7,10,对于上面那条查询,查出来的结果就是 1,3,5,7,那么按照文档里描述的,对于这几条记录都会加上next-key lock,也就是(-∞, 1], (1, 3], (3, 5], (5, 7], (7, 10) 这些区间和记录会被锁起来,不让插入,再唠叨一下呢,就是其实如果是只读的事务,光 read view 一致性读就够了,如果是有写操作的呢,就需要锁了。

    ]]> - Java - Thread dump - 问题排查 - 工具 + Mysql + C + 数据结构 + 源码 + Mysql - Java - JPS - JStack - JMap + mysql + 数据结构 + 源码 + mvcc + read view + gap lock + next-key lock + 幻读 @@ -16571,6 +15709,37 @@ constexpr size_t DATA_ROLL_PTR_LEN 幻读 + + 聊聊 redis 缓存的应用问题 + /2021/01/31/%E8%81%8A%E8%81%8A-redis-%E7%BC%93%E5%AD%98%E7%9A%84%E5%BA%94%E7%94%A8%E9%97%AE%E9%A2%98/ + 前面写过一系列的 redis 源码分析的,但是实际上很多的问题还是需要结合实际的使用,然后其实就避不开缓存使用的三个著名问题,穿透,击穿和雪崩,这三个概念也是有着千丝万缕的关系,

    +

    缓存穿透

    缓存穿透是指当数据库中本身就不存在这个数据的时候,使用一般的缓存策略时访问不到缓存后就访问数据库,但是因为数据库也没数据,所以如果不做任何策略优化的话,这类数据就每次都会访问一次数据库,对数据库压力也会比较大。

    +

    缓存击穿

    缓存击穿跟穿透比较类似的,都是访问缓存不在,然后去访问数据库,与穿透不一样的是击穿是在数据库中存在数据,但是可能由于第一次访问,或者缓存过期了,需要访问到数据库,这对于访问量小的情况其实算是个正常情况,但是随着请求量变高就会引发一些性能隐患。

    +

    缓存雪崩

    缓存雪崩就是击穿的大规模集群效应,当大量的缓存过期失效的时候,这些请求都是直接访问到数据库了,会对数据库造成很大的压力。

    +

    对于以上三种场景也有一些比较常见的解决方案,但也不能说是万无一失的,需要随着业务去寻找合适的方案

    +

    解决缓存穿透

    对于数据库中就没这个数据的时候,一种是可以对这个 key 设置下空值,即以一个特定的表示是数据库不存在的,这种情况需要合理地调整过期时间,当这个 key 在数据库中有数据了的话,也需要有策略去更新这个值,并且如果这类 key 非常多,这个方法就会不太合适,就可以使用第二种方法,就是布隆过滤器,bloom filter,前置一个布隆过滤器,当这个 key 在数据库不存在的话,先用布隆过滤器挡一道,如果不在的话就直接返回了,当然布隆过滤器不是绝对的准确的

    +

    解决缓存击穿

    当一个 key 的缓存过期了,如果大量请求过来访问这个 key,请求都会落在数据库里,这个时候就可以使用一些类似于互斥锁的方式去让一个线程去访问数据库,更新缓存,但是这里其实也有个问题,就是如果是热点 key 其实这种方式也比较危险,万一更新失败,或者更新操作的时候耗时比较久,就会有一大堆请求卡在那,这种情况可能需要有一些异步提前刷新缓存,可以结合具体场景选择方式

    +

    解决缓存雪崩

    雪崩的情况是指大批量的 key 都一起过期了,击穿的放大版,大批量的请求都打到数据库上了,一方面有可能直接缓存不可用了,就需要用集群化高可用的缓存服务,然后对于实际使用中也可以使用本地缓存结合 redis 缓存,去提高可用性,再配合一些限流措施,然后就是缓存使用过程总的过期时间最好能加一些随机值,防止在同一时间过期而导致雪崩,结合互斥锁防止大量请求打到数据库。

    +]]>
    + + Redis + 应用 + 缓存 + 缓存 + 穿透 + 击穿 + 雪崩 + + + Redis + 缓存穿透 + 缓存击穿 + 缓存雪崩 + 布隆过滤器 + bloom filter + 互斥锁 + +
    聊聊 mysql 索引的一些细节 /2020/12/27/%E8%81%8A%E8%81%8A-mysql-%E7%B4%A2%E5%BC%95%E7%9A%84%E4%B8%80%E4%BA%9B%E7%BB%86%E8%8A%82/ @@ -16636,37 +15805,6 @@ $ procedure - - 聊聊 redis 缓存的应用问题 - /2021/01/31/%E8%81%8A%E8%81%8A-redis-%E7%BC%93%E5%AD%98%E7%9A%84%E5%BA%94%E7%94%A8%E9%97%AE%E9%A2%98/ - 前面写过一系列的 redis 源码分析的,但是实际上很多的问题还是需要结合实际的使用,然后其实就避不开缓存使用的三个著名问题,穿透,击穿和雪崩,这三个概念也是有着千丝万缕的关系,

    -

    缓存穿透

    缓存穿透是指当数据库中本身就不存在这个数据的时候,使用一般的缓存策略时访问不到缓存后就访问数据库,但是因为数据库也没数据,所以如果不做任何策略优化的话,这类数据就每次都会访问一次数据库,对数据库压力也会比较大。

    -

    缓存击穿

    缓存击穿跟穿透比较类似的,都是访问缓存不在,然后去访问数据库,与穿透不一样的是击穿是在数据库中存在数据,但是可能由于第一次访问,或者缓存过期了,需要访问到数据库,这对于访问量小的情况其实算是个正常情况,但是随着请求量变高就会引发一些性能隐患。

    -

    缓存雪崩

    缓存雪崩就是击穿的大规模集群效应,当大量的缓存过期失效的时候,这些请求都是直接访问到数据库了,会对数据库造成很大的压力。

    -

    对于以上三种场景也有一些比较常见的解决方案,但也不能说是万无一失的,需要随着业务去寻找合适的方案

    -

    解决缓存穿透

    对于数据库中就没这个数据的时候,一种是可以对这个 key 设置下空值,即以一个特定的表示是数据库不存在的,这种情况需要合理地调整过期时间,当这个 key 在数据库中有数据了的话,也需要有策略去更新这个值,并且如果这类 key 非常多,这个方法就会不太合适,就可以使用第二种方法,就是布隆过滤器,bloom filter,前置一个布隆过滤器,当这个 key 在数据库不存在的话,先用布隆过滤器挡一道,如果不在的话就直接返回了,当然布隆过滤器不是绝对的准确的

    -

    解决缓存击穿

    当一个 key 的缓存过期了,如果大量请求过来访问这个 key,请求都会落在数据库里,这个时候就可以使用一些类似于互斥锁的方式去让一个线程去访问数据库,更新缓存,但是这里其实也有个问题,就是如果是热点 key 其实这种方式也比较危险,万一更新失败,或者更新操作的时候耗时比较久,就会有一大堆请求卡在那,这种情况可能需要有一些异步提前刷新缓存,可以结合具体场景选择方式

    -

    解决缓存雪崩

    雪崩的情况是指大批量的 key 都一起过期了,击穿的放大版,大批量的请求都打到数据库上了,一方面有可能直接缓存不可用了,就需要用集群化高可用的缓存服务,然后对于实际使用中也可以使用本地缓存结合 redis 缓存,去提高可用性,再配合一些限流措施,然后就是缓存使用过程总的过期时间最好能加一些随机值,防止在同一时间过期而导致雪崩,结合互斥锁防止大量请求打到数据库。

    -]]>
    - - Redis - 应用 - 缓存 - 缓存 - 穿透 - 击穿 - 雪崩 - - - Redis - 缓存穿透 - 缓存击穿 - 缓存雪崩 - 布隆过滤器 - bloom filter - 互斥锁 - -
    聊聊Java中的单例模式 /2019/12/21/%E8%81%8A%E8%81%8AJava%E4%B8%AD%E7%9A%84%E5%8D%95%E4%BE%8B%E6%A8%A1%E5%BC%8F/ @@ -17055,972 +16193,1834 @@ $ org.springframework.boot.autoconfigure.webservices.WebServicesAutoConfiguration,\ org.springframework.boot.autoconfigure.webservices.client.WebServiceTemplateAutoConfiguration -# Failure analyzers -org.springframework.boot.diagnostics.FailureAnalyzer=\ -org.springframework.boot.autoconfigure.data.redis.RedisUrlSyntaxFailureAnalyzer,\ -org.springframework.boot.autoconfigure.diagnostics.analyzer.NoSuchBeanDefinitionFailureAnalyzer,\ -org.springframework.boot.autoconfigure.flyway.FlywayMigrationScriptMissingFailureAnalyzer,\ -org.springframework.boot.autoconfigure.jdbc.DataSourceBeanCreationFailureAnalyzer,\ -org.springframework.boot.autoconfigure.jdbc.HikariDriverConfigurationFailureAnalyzer,\ -org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryBeanCreationFailureAnalyzer,\ -org.springframework.boot.autoconfigure.session.NonUniqueSessionRepositoryFailureAnalyzer +# Failure analyzers +org.springframework.boot.diagnostics.FailureAnalyzer=\ +org.springframework.boot.autoconfigure.data.redis.RedisUrlSyntaxFailureAnalyzer,\ +org.springframework.boot.autoconfigure.diagnostics.analyzer.NoSuchBeanDefinitionFailureAnalyzer,\ +org.springframework.boot.autoconfigure.flyway.FlywayMigrationScriptMissingFailureAnalyzer,\ +org.springframework.boot.autoconfigure.jdbc.DataSourceBeanCreationFailureAnalyzer,\ +org.springframework.boot.autoconfigure.jdbc.HikariDriverConfigurationFailureAnalyzer,\ +org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryBeanCreationFailureAnalyzer,\ +org.springframework.boot.autoconfigure.session.NonUniqueSessionRepositoryFailureAnalyzer + +# Template availability providers +org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider=\ +org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider,\ +org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider,\ +org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider,\ +org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider,\ +org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider + +# DataSource initializer detectors +org.springframework.boot.sql.init.dependency.DatabaseInitializerDetector=\ +org.springframework.boot.autoconfigure.flyway.FlywayMigrationInitializerDatabaseInitializerDetector +
+ +

上面根据 org.springframework.boot.autoconfigure.EnableAutoConfiguration 获取的各个配置类,在通过反射加载就能得到一堆 JavaConfig配置类,然后再根据 ConditionalOnProperty等条件配置加载具体的 bean,大致就是这么个逻辑

+]]>
+ + Java + SpringBoot + + + Java + Spring + SpringBoot + 自动装配 + AutoConfiguration + +
+ + 聊聊一次 brew update 引发的血案 + /2020/06/13/%E8%81%8A%E8%81%8A%E4%B8%80%E6%AC%A1-brew-update-%E5%BC%95%E5%8F%91%E7%9A%84%E8%A1%80%E6%A1%88/ + 熟悉我的人(谁熟悉你啊🙄)知道我以前写过 PHP,虽然现在在工作中没用到了,但是自己的一些小工具还是会用 PHP 来写,但是在 Mac 碰到了一个环境相关的问题,因为我也是个更新狂魔,用了 brew 之后因为 gfw 的原因,如果长时间不更新,有时候要装一个用它装一个软件的话,前置的更新耗时就会让人非常头大,所以我基本会隔天 update 一下,但是这样会带来一个很心烦的问题,就是像这样,因为我是要用一个固定版本的 PHP,如果一直升需要一直配扩展啥的也很麻烦,如果一直升级 PHP 到最新版可能会比较少碰到这个问题

+
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.64.dylib
+

这是什么鬼啊,然后我去这个目录下看了下,已经都是libicui18n.67.dylib了,而且它没有把原来的版本保留下来,首先这个是个叫 icu4c是啥玩意,谷歌了一下

+
+

ICU4C是ICU在C/C++平台下的版本, ICU(International Component for Unicode)是基于”IBM公共许可证”的,与开源组织合作研究的, 用于支持软件国际化的开源项目。ICU4C提供了C/C++平台强大的国际化开发能力,软件开发者几乎可以使用ICU4C解决任何国际化的问题,根据各地的风俗和语言习惯,实现对数字、货币、时间、日期、和消息的格式化、解析,对字符串进行大小写转换、整理、搜索和排序等功能,必须一提的是,ICU4C提供了强大的BIDI算法,对阿拉伯语等BIDI语言提供了完善的支持。

+
+

然后首先想到的解决方案就是能不能我使用brew install icu4c@64来重装下原来的版本,发现不行,并木有,之前的做法就只能是去网上把 64 的下载下来,然后放到这个目录,比较麻烦不智能,虽然没抱着希望在谷歌着,不过这次竟然给我找到了一个我认为非常 nice 的解决方案,因为是在 Stack Overflow 找到的,本着写给像我这样的小小白看的,那就稍微翻译一下
第一步,我们到 brew的目录下

+
cd $(brew --prefix)/Homebrew/Library/Taps/homebrew/homebrew-core/Formula
+

这个可以理解为是 maven 的 pom 文件,不过有很多不同之处,使用ruby 写的,然后一个文件对应一个组件或者软件,那我们看下有个叫icu4c.rb的文件,
第二步看看它的提交历史

+
git log --follow icu4c.rb
+

在 git log 的海洋中寻找,寻找它的(64版本)的身影

第三步注意这三个红框,Stack Overflow 给出来的答案这一步是找到这个 commit id 直接切出一个新分支

+
git checkout -b icu4c-63 e7f0f10dc63b1dc1061d475f1a61d01b70ef2cb7
+

其实注意 commit id 旁边的红框,这个是有tag 的,可以直接

+
git checkout icu4c-64
+

PS: 因为我的问题是出在 64 的问题,Stack Overflow 回答的是 63 的,反正是一样的解决方法
第四部,切回去之后我们就可以用 brew 提供的基于文件的安装命令来重新装上 64 版本

+
brew reinstall ./icu4c.rb
+

然后就是第五步,切换版本

+
brew switch icu4c 64.2
+

最后把分支切回来

+
git checkout master
+

是不是感觉很厉害的解决方法,大佬还提供了一个更牛的,直接写个 zsh 方法

+
# zsh
+function hiicu64() {
+  local last_dir=$(pwd)
+
+  cd $(brew --prefix)/Homebrew/Library/Taps/homebrew/homebrew-core/Formula
+  git checkout icu4c-4
+  brew reinstall ./icu4c.rb
+  brew switch icu4c 64.2
+  git checkout master
+
+  cd $last_dir
+}
+

对应自己的版本改改版本号就可以了,非常好用。

+]]>
+ + Mac + PHP + Homebrew + PHP + icu4c + + + Mac + PHP + Homebrew + icu4c + zsh + +
+ + 聊聊传说中的 ThreadLocal + /2021/05/30/%E8%81%8A%E8%81%8A%E4%BC%A0%E8%AF%B4%E4%B8%AD%E7%9A%84-ThreadLocal/ + 说来也惭愧,这个 ThreadLocal 其实一直都是一知半解,而且看了一下之后还发现记错了,所以还是记录下
原先记忆里的都是反过来,一个 ThreadLocal 是里面按照 thread 作为 key,存储线程内容的,真的是半解都米有,完全是错的,这样就得用 concurrentHashMap 这种去存储并且要锁定线程了,然后内容也只能存一个了,想想简直智障

+

究竟是啥结构

比如我们在代码中 new 一个 ThreadLocal,

+
public static void main(String[] args) {
+        ThreadLocal<Man> tl = new ThreadLocal<>();
+
+        new Thread(() -> {
+            try {
+                TimeUnit.SECONDS.sleep(2);
+            } catch (InterruptedException e) {
+                e.printStackTrace();
+            }
+            System.out.println(tl.get());
+        }).start();
+        new Thread(() -> {
+            try {
+                TimeUnit.SECONDS.sleep(1);
+            } catch (InterruptedException e) {
+                e.printStackTrace();
+            }
+            tl.set(new Man());
+        }).start();
+    }
+
+    static class Man {
+        String name = "nick";
+    }
+

这里构造了两个线程,一个先往里设值,一个后从里取,运行看下结果,

知道这个用法的话肯定知道是取不到值的,只是具体的原理原来搞错了,我们来看下设值 set 方法

+
public void set(T value) {
+    Thread t = Thread.currentThread();
+    ThreadLocalMap map = getMap(t);
+    if (map != null)
+        map.set(this, value);
+    else
+        createMap(t, value);
+}
+

写博客这会我才明白我原来咋会错得这么离谱,看到第一行代码 t 就是当前线程,然后第二行就是用这个线程去getMap,然后我是把这个当成从 map 里取值了,其实这里是

+
ThreadLocalMap getMap(Thread t) {
+    return t.threadLocals;
+}
+

获取 t 的 threadLocals 成员变量,那这个 threadLocals 又是啥呢

它其实是线程 Thread 中的一个类型是java.lang.ThreadLocal.ThreadLocalMap的成员变量
这是 ThreadLocal 的一个静态成员变量

+
static class ThreadLocalMap {
+
+        /**
+         * The entries in this hash map extend WeakReference, using
+         * its main ref field as the key (which is always a
+         * ThreadLocal object).  Note that null keys (i.e. entry.get()
+         * == null) mean that the key is no longer referenced, so the
+         * entry can be expunged from table.  Such entries are referred to
+         * as "stale entries" in the code that follows.
+         */
+        static class Entry extends WeakReference<ThreadLocal<?>> {
+            /** The value associated with this ThreadLocal. */
+            Object value;
+
+            Entry(ThreadLocal<?> k, Object v) {
+                super(k);
+                value = v;
+            }
+        }
+    }
+

全部代码有点长,只截取了一小部分,然后我们再回头来分析前面说的 set 过程,再 copy 下代码

+
public void set(T value) {
+    Thread t = Thread.currentThread();
+    ThreadLocalMap map = getMap(t);
+    if (map != null)
+        map.set(this, value);
+    else
+        createMap(t, value);
+}
+

获取到 map 以后呢,如果 map 不为空,就往 map 里 set,这里注意 key 是啥,其实是当前这个 ThreadLocal,这里就比较明白了究竟是啥结构,每个线程都会维护自身的 ThreadLocalMap,它是线程的一个成员变量,当创建 ThreadLocal 的时候,进行设值的时候其实是往这个 map 里以 ThreadLocal 作为 key,往里设 value。

+

内存泄漏是什么鬼

这里又要看下前面的 ThreadLocalMap 结构了,类似 HashMap,它有个 Entry 结构,在设置的时候会先包装成一个 Entry

+
private void set(ThreadLocal<?> key, Object value) {
+
+        // We don't use a fast path as with get() because it is at
+        // least as common to use set() to create new entries as
+        // it is to replace existing ones, in which case, a fast
+        // path would fail more often than not.
 
-# Template availability providers
-org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider=\
-org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider,\
-org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider,\
-org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider,\
-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider,\
-org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider
+        Entry[] tab = table;
+        int len = tab.length;
+        int i = key.threadLocalHashCode & (len-1);
 
-# DataSource initializer detectors
-org.springframework.boot.sql.init.dependency.DatabaseInitializerDetector=\
-org.springframework.boot.autoconfigure.flyway.FlywayMigrationInitializerDatabaseInitializerDetector
-
+ for (Entry e = tab[i]; + e != null; + e = tab[i = nextIndex(i, len)]) { + ThreadLocal<?> k = e.get(); -

上面根据 org.springframework.boot.autoconfigure.EnableAutoConfiguration 获取的各个配置类,在通过反射加载就能得到一堆 JavaConfig配置类,然后再根据 ConditionalOnProperty等条件配置加载具体的 bean,大致就是这么个逻辑

+ if (k == key) { + e.value = value; + return; + } + + if (k == null) { + replaceStaleEntry(key, value, i); + return; + } + } + + tab[i] = new Entry(key, value); + int sz = ++size; + if (!cleanSomeSlots(i, sz) && sz >= threshold) + rehash(); +}
+

这里其实比较重要的就是前面的 Entry 的构造方法,Entry 是个 WeakReference 的子类,然后在构造方法里可以看到 key 会被包装成一个弱引用,这里为什么使用弱引用,其实是方便这个 key 被回收,如果前面的 ThreadLocal tl实例被设置成 null 了,如果这里是直接的强引用的话,就只能等到线程整个回收了,但是其实是弱引用也会有问题,主要是因为这个 value,如果在 ThreadLocal tl 被设置成 null 了,那么其实这个 value 就会没法被访问到,所以最好的操作还是在使用完了就 remove 掉

+]]>
+ + Java + + + Java + ThreadLocal + 弱引用 + 内存泄漏 + WeakReference + +
+ + 聊聊厦门旅游的好与不好 + /2021/04/11/%E8%81%8A%E8%81%8A%E5%8E%A6%E9%97%A8%E6%97%85%E6%B8%B8%E7%9A%84%E5%A5%BD%E4%B8%8E%E4%B8%8D%E5%A5%BD/ + 这几天去了趟厦门,原来几年前就想去了,本来都请好假了,后面因为一些事情没去成,这次刚好公司组织,就跟 LD 一起去了厦门,也不洋洋洒洒地写游记了,后面可能会有,今天先来总结下好的地方和比较坑的地方。
这次主要去了中山路、鼓浪屿、曾厝(cuo)垵、植物园、灵玲马戏团,因为住的离环岛路比较近,还有幸现场看了下厦门马拉松,其中

+

中山路

这里看上去是有点民国时期的建筑风格,部分像那种电视里的租界啥的,不过这次去的时候都在翻修,路一大半拦起来了,听导游说这里往里面走有个局口街,然后上次听前同事说厦门比较有名的就是沙茶面和海蛎煎,不出意料的不太爱吃,沙茶面比较普通,可能是没吃到正宗的,海蛎煎吃不惯,倒是有个大叔的沙茶里脊还不错,在局口街那,还有小哥在那拍,应该也算是个网红打卡点了,然后吃了个油条麻糍也还不错,总体如果是看建筑的话可能最近不是个好时间,个人也没这方面爱好,吃的话最好多打听打听沙茶面跟海蛎煎哪里正宗。如果不知道哪家好吃,也不爱看这类建筑的可以排个坑。

+

鼓浪屿

鼓浪屿也是完全没啥概念,需要乘船过去,但是只要二十分钟,岛上没有机动车,基本都靠走,有几个比较有名的地方,菽庄花园,里面有钢琴博物馆,对这个感兴趣的可以去看看,旁边是沙滩还可以逛逛,然后有各种博物馆,风琴啥的,岛上最大的特色是巷子多,道听途说有三百多条小巷,还有几个网红打卡点,周杰伦晴天墙,还有个最美转角,都是挤满了人排队打卡拍照,不过如果不着急,慢慢悠悠逛逛还是不错的,比较推荐,推荐值☆☆

+

曾厝垵

一直读不对这个字,都是叫:那个曾什么垵,愧对语文老师,这里到算是意外之喜,鼓浪屿回来已经挺累了,不过由于比较饿(什么原因后面说),并且离住的地方不远,就过去逛了逛,东西还蛮好吃的,芒果挺便宜,一大杯才十块,无骨鸡爪很贵,不是特别爱,臭豆腐不错的,也不算很贵,这里想起来,那边八婆婆的豆乳烧仙草还不错的,去中山路那会喝了,来曾厝垵也买了,奶茶爱好者可以试试,含糖量应该很高,不爱甜食或者减肥的同学慎重考虑好了再尝试,晚上那边从牌坊出来,沿着环岛路挺多夜宵店什么的,非常推荐,推荐值☆☆☆☆

+

植物园

植物园还是挺名副其实的,有热带植物,沙漠多肉,因为赶时间逛得不多,热带雨林植物那太多人了,都是在那拍照,而且我指的拍照都是拍人照,本身就很小的路,各种十八线网红,或者普通游客在那摆 pose 拍照,挺无语的;沙漠多肉比较惊喜,好多比人高的仙人掌,一大片的仙人球,很可恶的是好多大仙人掌上都有人刻字,越来越体会到,我们社会人多了,什么样的都有,而且不少;还看了下百花厅,但没什么特别的,可能赶时间比较着急,没仔细看,比较推荐,推荐值☆☆☆

+

灵玲马戏团

对这个其实比较排斥,主要是比较晚了,跑的有点远(我太懒了),一开始真的挺拉低体验感受的,上来个什么书法家,现场画马,卖画;不过后面的还算值回票价,主题是花木兰,空中动作应该很考验基本功,然后那些老外的飞轮还跳绳(不知道学名叫啥),动物那块不太忍心看,应该是吃了不少苦头,不过人都这样就往后点再心疼动物吧。

+

总结

厦门是个非常适合干饭人的地方,吃饭的地方大部分是差不多一桌菜十个左右就完了,而且上来就一大碗饭,一瓶雪碧一瓶可乐,对于经常是家里跟亲戚吃饭都得十几二十个菜的乡下人来说,不太吃得惯这样的🤦‍♂️,当然很有可能是我们预算不足,点的差。但是有一点是我回杭州深有感触的,感觉杭州司机的素质真的是跟厦门的司机差了比较多,杭州除非公交车停了,否则人行道很难看到主动让人的,当然这里拿厦门这个旅游城市来对比也不是很公平,不过这也是体现城市现代化文明水平的一个维度吧。

+]]>
+ + 生活 + 旅游 + + + 生活 + 杭州 + 旅游 + 厦门 + 中山路 + 局口街 + 鼓浪屿 + 曾厝垵 + 植物园 + 马戏团 + 沙茶面 + 海蛎煎 + +
+ + 聊聊我刚学会的应用诊断方法 + /2020/05/22/%E8%81%8A%E8%81%8A%E6%88%91%E5%88%9A%E5%AD%A6%E4%BC%9A%E7%9A%84%E5%BA%94%E7%94%A8%E8%AF%8A%E6%96%AD%E6%96%B9%E6%B3%95/ + 因为传说中的出身问题,我以前写的是PHP,在使用 swoole 之前,基本的应用调试手段就是简单粗暴的 var_dump,exit,对于单进程模型的 PHP 也是简单有效,技术栈换成 Java 之后,就变得没那么容易,一方面是需要编译,另一方面是一般都是基于 spring 的项目,如果问题定位比较模糊,那框架层的是很难靠简单的 System.out.println 或者打 log 解决,(PS:我觉得可能我写的东西比较适合从 PHP 这种弱类型语言转到 Java 的小白同学)这个时候一方面因为是 Java,有了非常好用的 idea IDE 的支持,可以各种花式调试,条件断点尤其牛叉,但是又因为有 Spring+Java 的双重原因,有些情况下单步调试可以把手按废掉,这也是我之前一直比较困惑苦逼的点,后来随着慢慢精(jiang)进(you)之后,比如对于一个 oom 的情况,我们可以通过启动参数加上-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=xx/xx 来配置溢出时的堆dump 日志,获取到这个文件后,我们可以通过像 Memory Analyzer (MAT)[https://www.eclipse.org/mat/] (The Eclipse Memory Analyzer is a fast and feature-rich Java heap analyzer that helps you find memory leaks and reduce memory consumption.)来查看诊断问题所在,之前用到的时候是因为有个死循环一直往链表里塞数据,属于比较简单的,后来一次是由于运维进行应用迁移时按默认的统一配置了堆内存大小,导致内存的确不够用,所以溢出了,
今天想说的其实主要是我们的 thread dump,这也是我最近才真正用的一个方法,可能真的很小白了,用过 ide 的单步调试其实都知道会有一个一层层的玩意,比如函数从 A,调用了 B,再从 B 调用了 C,一直往下(因为是 Java,所以还有很多🤦‍♂️),这个其实也是大部分语言的调用模型,利用了栈这个数据结构,通过这个结构我们可以知道代码的调用链路,由于对于一个 spring 应用,在本身框架代码量非常庞大的情况下,外加如果应用代码也是非常多的时候,有时候通过单步调试真的很难短时间定位到问题,需要非常大的耐心和仔细观察,当然不是说完全不行,举个例子当我的应用经常启动需要非常长的时间,因为本身应用有非常多个 bean,比较难说究竟是 bean 的加载的确很慢还是有什么异常原因,这种时候就可以使用 thread dump 了,具体怎么操作呢

如果在idea 中运行或者调试时,可以直接点击这个照相机一样的按钮,右边就会出现了左边会显示所有的线程,右边会显示线程栈,

+
"main@1" prio=5 tid=0x1 nid=NA runnable
+  java.lang.Thread.State: RUNNABLE
+	  at TreeDistance.treeDist(TreeDistance.java:64)
+	  at TreeDistance.treeDist(TreeDistance.java:65)
+	  at TreeDistance.treeDist(TreeDistance.java:65)
+	  at TreeDistance.treeDist(TreeDistance.java:65)
+	  at TreeDistance.main(TreeDistance.java:45)
+

这就是我们主线程的堆栈信息了,main 表示这个线程名,prio表示优先级,默认是 5,tid 表示线程 id,nid 表示对应的系统线程,后面的runnable 表示目前线程状态,因为是被我打了断点,所以是就许状态,然后下面就是对应的线程栈内容了,在TreeDistance类的 treeDist方法中,对应的文件行数是 64 行。
这里使用 thread dump一般也不会是上面我截图代码里的这种代码量很少的,一般是大型项目,有时候跑着跑着没反应,又不知道跑到哪了,特别是一些刚接触的大项目或者需要定位一个大项目的一个疑难问题,一时没思路时,可以使用这个方法,个人觉得非常有帮助。

+]]>
+ + Java + Thread dump + 问题排查 + 工具 + + + Java + Thread dump + +
+ + 聊聊如何识别和意识到日常生活中的各类危险 + /2021/06/06/%E8%81%8A%E8%81%8A%E5%A6%82%E4%BD%95%E8%AF%86%E5%88%AB%E5%92%8C%E6%84%8F%E8%AF%86%E5%88%B0%E6%97%A5%E5%B8%B8%E7%94%9F%E6%B4%BB%E4%B8%AD%E7%9A%84%E5%90%84%E7%B1%BB%E5%8D%B1%E9%99%A9/ + 这篇博客的灵感又是来自于我从绍兴来杭州的路上,在我们进站以后上电梯快到的时候,突然前面不动了,右边我能看到的是有个人的行李箱一时拎不起来,另一边后面看到其实是个小孩子在那哭闹,一位妈妈就在那停着安抚或者可能有点手足无措,其实这一点应该是在几年前慢慢意识到是个非常危险的场景,特别是像绍兴北站这样上去站台是非常长的电梯,因为最近扩建改造,车次减少了很多,所以每一班都有很多人,检票上站台的电梯都是满员运转,试想这种情况,如果刚才那位妈妈再多停留一点时间,很可能就会出现后面的人上不来被挤下去,再严重点就是踩踏事件,但是这类情况很少人真的意识到,非常明显的例子就是很多人拿着比较大比较重的行李箱,不走垂梯,并且在快到的时候没有提前准备好,有可能在玩手机啥的,如果提不动,后面又是挤满人了,就很可能出现前面说的这种情况,并且其实这种是非紧急情况,大多数人都没有心理准备,一旦发生后果可能就会很严重,例如火灾地震疏散大部分人或者说负责引导的都是指示要有序撤离,防止踩踏,但是普通坐个扶梯,一般都不会有这个意识,但是如果这个时间比较长,出现了人员站不住往后倒了,真的会很严重。所以如果自己是带娃的或者带了很重的行李箱的,请提前做好准备,看到前面有人带的,最好也保持一定距离。
还有比如日常走路,旁边有车子停着的情况,比较基本的看车灯有没有亮着,亮着的是否是倒车灯,这种应该特别注意远离,至少保持距离,不能挨着走,很多人特别是一些老年人,在一些人比较多的路上,往往完全无视旁边这些车的状态,我走我的路,谁敢阻拦我,管他车在那动不动,其实真的非常危险,车子本身有视线死角,再加上司机的驾驶习惯和状态,想去送死跟碰瓷的除外,还有就是有一些车会比较特殊,车子发动着,但是没灯,可能是车子灯坏了或者司机通过什么方式关了灯,这种比较难避开,不过如果车子打着了,一般会有比较大的热量散发,车子刚灭了也会有,反正能远离点尽量远离,从轿车的车前面走过挨着走要比从屁股后面挨着走稍微安全一些,但也最好不要挨着车走。
最后一点其实是我觉得是我自己比较怕死,一般对来向的车或者从侧面出来的车会做更长的预判距离,特别是电瓶车,一般是不让人的,像送外卖的小哥,的确他们不太容易,但是真的很危险啊,基本就生死看刹车,能刹住就赚了,刹不住就看身子骨扛不扛撞了,只是这里要多说点又要谈到资本的趋利性了,总是想法设法的压榨以获取更多的利益,也不扯远了,能远离就远离吧。

+]]>
+ + 生活 + + + 生活 + 糟心事 + 扶梯 + 踩踏 + 安全 + 电瓶车 + +
+ + 聊聊我的远程工作体验 + /2022/06/26/%E8%81%8A%E8%81%8A%E6%88%91%E7%9A%84%E8%BF%9C%E7%A8%8B%E5%B7%A5%E4%BD%9C%E4%BD%93%E9%AA%8C/ + 发生疫情之后,因为正好是春节假期,假期结束的时候还不具备回工作地点办公的条件,所以史无前例地开始了远程办公,以前对于远程办公的概念还停留在国外一些有“格局”的企业会允许员工远程办公,当然对于远程办公这个事情本身我个人也并不是全然支持的态度,其中涉及到很多方面,首先远程办公并不代表就是不用去办公地点上班,可以在家里摸鱼,相对能够得到较高报酬的能够远程办公的企业需要在远程办公期间能够有高效的产出,并且也需要像在公司办公地点一样,能随时被联系到,第二点是薪资福利之外的社保公积金,除非薪资相比非远程办公的企业高出比较多,不然没法 cover 企业额外缴纳的社保公积金,听说有部分企业也会远程办公点给员工上社保,但是毕竟能做到这点的很少,在允许远程办公的企业数量这个本来就不大的基数里,大概率是少之又少了。
疫情这个特殊原因开始的远程办公体验也算是开了个之前不太容易开的头,也跟我前面说的第一点有关系,大部分的企业也会担心员工远程办公是否有与在公司办公地点办公一样或者比较接近的办公效率。同时我们在开始远程办公的时候也碰到了因为原先没做过相应准备而导致的许多问题,首先基础设施上就有几个问题,第一个是办公电脑的问题,因为整个公司各个部门的工作性质和内容不同,并不是每个部门都是配笔记本的,或者有些部门并不需要想研发一样带上电脑 on call,所以那么使用台式机或者没有将笔记本带回家的则需要自己准备电脑或者让公司邮寄。第二个是远程网络的问题,像我们公司有研发团队平时也已经准备好了 vpn,但是在这种时候我们没准备好的是 vpn 带宽,毕竟平时只会偶尔有需要连一下 vpn 到公司网络,像这样大量员工都需要连接 vpn 进行工作的话,我们的初步体验就是网络卡的不行,一些远程调试工作没法进行,并且还有一些问题是可能只有我们研发会碰到,比如我们的线上测试服务器网络在办公地点是有网络打通的,但是我们在家就没办法连接,还有就是沟通效率相关,因为这是个全国性的情况,线上会议工具原先都是为特定用户使用,并且视频音频实时传输所需要的带宽质量要求也是比较高的,大规模的远程会议沟通需求让这些做线上会议的服务也算是碰上了类似双十一的大考了,我们是先后使用了 zoom,腾讯会议跟钉钉视频会议,使用体验上来说是 zoom 做得相对比较成熟和稳定,不过后面腾讯会议跟钉钉视频会议也开始赶上来。
前面说的这几个点都是得有远程办公经验的公司才会提前做好相应的准备,比如可以做动态网络扩容,能够在需要大量员工连接公司网络的情况下快速响应提升带宽,另一些则是偏软性的,比如如如何在远程办公的条件下控制我们项目进度,如果保证沟通信息是否能像当面沟通那样准确传达,这方面其实我的经验也是边实操边优化的,最开始我们可能为了高效同步消息,会频繁的使用视频会议沟通,这其实并不能解决沟通效率问题,反而打扰了正常的工作,后续我们在特别是做项目过程中就通过相对简单的每日早会和日报机制,将每天的进度与问题风险点进行同步确认,只与相关直接干系人进行视频电话沟通确认,并且要保持一个思维,即远程办公比较适宜的是相对比较成熟的团队,平常工作和合作都已经有默契或者说规则并且能够遵守,在这个前提下,将目光专注于做的事情而不是管到具体的人有没有全天都在高效工作。同样也希望国内的环境能够有更多的远程火种成长起来,让它成为更好的工作方式,WLB!

+]]>
+ + 生活 + + + 生活 + 远程办公 + +
+ + 聊聊最近平淡的生活之又聊通勤 + /2021/11/07/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB/ + 一直以来过着特别平淡普通的生活,不过大多数人应该都这样吧,也许有些人可以把平凡的生活过得精彩,最简单的说明就是朋友圈吧,看我一年的盆友圈虽然在发,不过大概 90%的都是发发跑步的打卡,偶尔会有稀稀拉拉的点赞,天天上班,也不喜欢发什么状态,觉得没什么人关注,索性不发。

+

只是这么平淡的生活就有一些自己比较心烦纠结的,之前有提到过的交通,最近似乎又发现了一点,就真相总是让人跌破眼镜,以前觉得我可能是胆子比较小,所以会觉得怎么路上这些电瓶都是这么肆无忌惮的往我冲过来,后面慢慢有一种借用电视剧读心神探的概念,安全距离,觉得大部分人跟我一样,骑电瓶车什么的总还是有个安全距离,只是可能这个安全距离对于不同的人不一样,那些骑电瓶车的潜意识里的安全距离是非常短,所以经常会骑车离着你非常近才会刹车,但是这个安全距离理论最近又被推翻了,因为经历过几次电瓶车就是已经跟你有身体接触了,但是没到把人撞倒的程度,似乎这些骑电瓶车的觉得步行的行人在人行道上是空气,蹭一下也无所谓,反正不能挡我的路,总感觉要不是我在前面骑自行车太慢挡着电瓶车,不然他们都能起飞去干掉 F35 解放湾湾了;

+

另一个问题应该是说我们交通规则普及的太少,虽然我们没有路权这个名词概念,但是其实是有这个优先级的,包括像杭州是以公交车在人行道礼让行人闻名的,其实这个文明的行为只限于人行道在直行路中间的,大部分在十字路口,右转的公交车很少会让直行人行道的,前提是直行的绿灯的时候,特别是像公交车这样,车身特别长,右转的时候会有比较大的死角,如果是公交车先转,行人或者自行车很容易被卷进去,非常危险的,私家车就更不用说了,反正右转即使人行道上人非常多要转的也是一秒都不等,所以我自己在开车的时候是尽量在右转的时候等人行道上的行人或者骑车的走完,因为总会觉得我是不是有点双标,骑车走路的时候希望开车的能按规则让我,自己开车的时候又想赶紧开走,所以在开车的时候尽量做到让行车和骑车的。

+

还有个其实是写着写着想起来的,比如我骑车左转的时候,因为我是左转到对角那就到了,跟那些左转后要再直行的不一样,我们应该在学车的时候也学过,超车要从左边超,但是往往那些骑电瓶车的在左转的时候会从我右边超过来再往左边撇过去,如果留的空间大还好,有些电瓶车就是如果车头超过了就不管他的车屁股,如果我不减速,自行车就被刮倒了,可能的确是别人就不是人,只要不把你撞倒就无所谓,反正为了你自己不被撞倒你肯定会让的。

+]]>
+ + 生活 + + + 生活 + 糟心事 + 规则 + 电瓶车 + 骑车 + +
+ + 聊聊我理解的分布式事务 + /2020/05/17/%E8%81%8A%E8%81%8A%E6%88%91%E7%90%86%E8%A7%A3%E7%9A%84%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/ + 前面说了mysql数据库的事务相关的,那事务是用来干嘛的,这里得补一下ACID,

+
+

ACID,是指数据库管理系统DBMS)在写入或更新资料的过程中,为保证事务(transaction)是正确可靠的,所必须具备的四个特性:原子性(atomicity,或称不可分割性)、一致性(consistency)、隔离性(isolation,又称独立性)、持久性(durability)。

+
+
    +
  • Atomicity(原子性):一个事务(transaction)中的所有操作,或者全部完成,或者全部不完成,不会结束在中间某个环节。事务在执行过程中发生错误,会被回滚(Rollback)到事务开始前的状态,就像这个事务从来没有执行过一样。即,事务不可分割、不可约简。[1]

    +
  • +
  • Consistency(一致性):在事务开始之前和事务结束以后,数据库的完整性没有被破坏。这表示写入的资料必须完全符合所有的预设约束触发器级联回滚等。[1]

    +
  • +
  • Isolation(隔离性):数据库允许多个并发事务同时对其数据进行读写和修改的能力,隔离性可以防止多个事务并发执行时由于交叉执行而导致数据的不一致。事务隔离分为不同级别,包括未提交读(Read uncommitted)、提交读(read committed)、可重复读(repeatable read)和串行化(Serializable)。[1]

    +
  • +
  • Durability(持久性):事务处理结束后,对数据的修改就是永久的,即便系统故障也不会丢失。[1]

    +
  • +
+

在mysql中,借助于MVCC,各种级别的锁,日志等特性来实现了事务的ACID,但是这个我们通常是对于一个数据库服务的定义,常见的情况下我们的数据库随着业务发展也会从单实例变成多实例,组成主从Master-Slave架构,这个时候其实会有一些问题随之出现,比如说主从同步延迟,假如在业务代码中做了读写分离,对于一些敏感度较低的数据其实问题不是很大,只要主从延迟不到特别夸张的地步一般都是可以忍受的,但是对于一些核心的业务数据,比如订单之类的,不能忍受数据不一致,下了单了,付了款了,一刷订单列表,发现这个订单还没支付,甚至订单都没在,这对于用户来讲是恨不能容忍的错误,那么这里就需要一些措施,要不就不读写分离,要不就在 redis 这类缓存下订单,或者支付后加个延时等,这些都是一些补偿措施,并且这也是一个不太切当的例子,比较合适的例子也可以用这个下单来说,一般在电商平台下单会有挺多要做的事情,比如像下面这个图

+

+

下单的是后要冻结核销优惠券,如果账户里有钱要冻结扣除账户里的钱,如果使用了J 豆也一样,可能还有 E 卡,忽略我借用的平台,因为目前一般后台服务化之后,可能每一项都是对应的一个后台服务,我们期望的执行过程是要不全成功,要不就全保持执行前状态,不能是部分扣减核销成功了,部分还不行,所以我们处理这种情况会引入一些通用的方案,第一种叫二阶段提交,

+
+

二阶段提交(英语:Two-phase Commit)是指在计算机网络以及数据库领域内,为了使基于分布式系统架构下的所有节点在进行事务提交时保持一致性而设计的一种算法。通常,二阶段提交也被称为是一种协议(Protocol)。在分布式系统中,每个节点虽然可以知晓自己的操作时成功或者失败,却无法知道其他节点的操作的成功或失败。当一个事务跨越多个节点时,为了保持事务的ACID特性,需要引入一个作为协调者的组件来统一掌控所有节点(称作参与者)的操作结果并最终指示这些节点是否要把操作结果进行真正的提交(比如将更新后的数据写入磁盘等等)。因此,二阶段提交的算法思路可以概括为: 参与者将操作成败通知协调者,再由协调者根据所有参与者的反馈情报决定各参与者是否要提交操作还是中止操作。

+
+

对于上面的例子,我们将整个过程分成两个阶段,首先是提交请求阶段,这个阶段大概需要做的是确定资源存在,锁定资源,可能还要做好失败后回滚的准备,如果这些都 ok 了那么就响应成功,这里其实用到了一个叫事务的协调者的角色,类似于裁判员,每个节点都反馈第一阶段成功后,开始执行第二阶段,也就是实际执行操作,这里也是需要所有节点都反馈成功后才是执行成功,要不就是失败回滚。其实常用的分布式事务的解决方案主要也是基于此方案的改进,比如后面介绍的三阶段提交,有三阶段提交就是因为二阶段提交比较尴尬的几个点,

+
    +
  • 第一是对于两阶段提交,其中默认只有协调者有超时时间,当一个参与者进入卡死状态时只能依赖协调者的超时来结束任务,这中间的时间参与者都是锁定着资源
  • +
  • 第二是协调者的单点问题,万一挂了,参与者就会在那傻等着
  • +
+

所以三阶段提交引入了各节点的超时机制和一个准备阶段,首先是一个can commit阶段,询问下各个节点有没有资源,能不能进行操作,这个阶段不阻塞,只是提前做个摸底,这个阶段其实人畜无害,但是能提高成功率,在这个阶段如果就有节点反馈是不接受的,那就不用执行下去了,也没有锁资源,然后第二阶段是 pre commit ,这个阶段做的事情跟原来的 第一阶段比较类似,然后是第三阶段do commit,其实三阶段提交我个人觉得只是加了个超时,和准备阶段,好像木有根本性的解决的两阶段提交的问题,后续可以再看看一些论文来思考讨论下。

+

2020年05月24日22:11 更新
这里跟朋友讨论了下,好像想通了最核心的一点,对于前面说的那个场景,如果是两阶段提交,如果各个节点中有一个没回应,并且协调者也挂了,这个时候会有什么情况呢,再加一个假设,其实比如这个一阶段其实是检验就失败的,理论上应该大家都释放资源,那么对于这种异常情况,其他的参与者就不知所措了,就傻傻地锁着资源阻塞着,那么三阶段提交的意义就出现了,把第一阶段拆开,那么即使在这个阶段出现上述的异常,即也不会锁定资源,同时参与者也有超时机制,在第二阶段锁定资源出现异常是,其他参与者节点等超时后就自动释放资源了,也就没啥问题了,不过对于那种异常恢复后的一些情况还是没有很好地解决,需要借助 zk 等,后面有空可以讲讲 paxos 跟 raft 等

+]]>
+ + 分布式事务 + 两阶段提交 + 三阶段提交 + + + 分布式事务 + 两阶段提交 + 三阶段提交 + 2PC + 3PC + +
+ + 聊聊最近平淡的生活之《花束般的恋爱》观后感 + /2021/12/31/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB%E4%B9%8B%E3%80%8A%E8%8A%B1%E6%9D%9F%E8%88%AC%E7%9A%84%E6%81%8B%E7%88%B1%E3%80%8B%E8%A7%82%E5%90%8E%E6%84%9F/ + 周末在领导的提议下看了豆瓣的年度榜单,本来感觉没啥心情看的,看到主演有有村架纯就觉得可以看一下,颜值即正义嘛,男主小麦跟女主小娟(后面简称小麦跟小娟)是两个在一次非常偶然的没赶上地铁末班车事件中相识,这里得说下日本这种通宵营业的店好像挺不错的,看着也挺正常,国内估计只有酒吧之类的可以。晚上去的地方是有点暗暗的,好像也有点类似酒吧,旁边有类似于 dj 那种,然后同桌的还有除了男女主的另外一对男女,也是因为没赶上地铁末班车的,但也是陌生人,然后小麦突然看到了有个非常有名的电影人,小娟竟然也认识,然后旁边那对完全不认识,还在那吹自己看过很多电影,比如《肖申克的救赎》,于是男女主都特别鄙夷地看着他们,然后他们又去了另一个有点像泡澡的地方席地而坐,他们发现了自己的鞋子都是一样的,然后在女的去上厕所的时候,小麦暗恋的学姐也来了,然后小麦就去跟学姐他们一起坐了,小娟回来后有点不开心就说去朋友家睡,幸好小麦看出来了(他竟然看出来了,本来以为应该是没填过恋爱很木讷的),就追出去,然后就去了小麦家,到了家小娟发现小麦家的书柜上的书简直就跟她自己家的一模一样,小麦还给小娟吹了头发,一起吃烤饭团,看电影,第二天送小娟上了公交,还约好了一起看木乃伊展,然而并没有交换联系方式,但是他们还是约上了一起看了木乃伊展,在餐馆就出现了片头那一幕的来源,因为餐馆他们想一起听歌,就用有线耳机一人一个耳朵听,但是旁边就有个大叔说“你们是不是不爱音乐,左右耳朵是不一样的,只有一起听才是真正的音乐”这样的话,然后的剧情有点跳,因为是指他们一直在这家餐馆吃饭,中间有他们一起出去玩情节穿插着,也是在这他们确立了关系,可以说主体就是体现了他们非常的合拍和默契,就像一些影评说的,这部电影是说如何跟百分百合拍的人分手,然后就是正常的恋爱开始啪啪啪,一直腻在床上,也没去就业说明会,后面也有讲了一点小麦带着小娟去认识他的朋友,也把小娟介绍给了他们认识,这里算是个小伏笔,后面他们分手也有这里的人的一些关系,接下去的剧情说实话我是不太喜欢的,如果一部八分的电影只是说恋爱被现实打败的话,我觉得在我这是不合格的,但是事实也是这样,小麦其实是有家里的资助,所以后面还是按自己的喜好给一些机构画点插画,小娟则要出去工作,因为小娟家庭观念也是要让她出去有正经工作,用脚指头想也能知道肯定不顺利,然后就是暂时在一家蛋糕店工作,小麦就每天去接小娟,日子过得甜甜蜜蜜,后面小娟在自己的努力下考了个什么资格证,去了一家医院还是什么做前台行政,这中间当然就有父母来见面吃饭了,他们在开始恋爱不久就同居合租了,然后小娟父母就是来说要让她有个正经工作,对男的说的话就是人生就是责任这类的话,而小麦爸爸算是个导火索,因为小麦家里是做烟花生意的,他爸让他就做烟花生意,因为要回老家,并且小麦也不想做,所以就拒绝了,然后他爸就说不给他每个月五万的资助,这也导致了小麦需要去找工作,这个过程也是很辛苦,本来想要年前找好工作,然后事与愿违,后面有一次小娟被同事吐槽怎么从来不去团建,于是她就去了(我以为会拒绝),正在团建的时候小麦给她电话,说找到工作了,是一个创业物流公司这种,这里剧情就是我觉得比较俗套的,小麦各种被虐,累成狗,但是就像小娟爸爸说的话,人生就是责任,所以一直在坚持,但是这样也导致了跟小娟的交流也越来越少,他们原来最爱的漫画,爱玩的游戏,也只剩小娟一个人看,一个人玩,而正是这个时候,小娟说她辞掉了工作,去做一个不是太靠谱的漫画改造的密室逃脱,然后这里其实有一点后面争议很大的,就是这个工作其实是前面小麦介绍给小娟的那些朋友中一个的女朋友介绍的,而在有个剧情就是小娟有一次在这个密室逃脱的老板怀里醒过来,是在 KTV 那样的场景里,这就有很多人觉得小娟是不是出轨了,我觉得其实不那么重要,因为这个离职的事情已经让一切矛盾都摆在眼前,小麦其实是接受这种需要承担责任的生活,也想着要跟小娟结婚,但是小娟似乎还是想要过着那样理想的生活,做自己想做的事情,看自己爱看的漫画,也要小麦能像以前那样一直那么默契的有着相同的爱好,这里的触发点其实还有个是那个小麦的朋友(也就是他女朋友介绍小娟那个不靠谱工作的)的葬礼上,小麦在参加完葬礼后有挺多想倾诉的,而小娟只是想睡了,这个让小麦第二天起来都不想理小娟,只是这里我不太理解,难道这点闹情绪都不能接受吗,所谓的合拍也只是毫无限制的情况下的合拍吧,真正的生活怎么可能如此理想呢,即使没有物质生活的压力,也会有其他的各种压力和限制,在这之后其实小麦想说的是小娟是不是没有想跟自己继续在一起的想法了,而小娟觉得都不说话了,还怎么结婚呢,后面其实导演搞了个小 trick,突然放了异常婚礼,但是不是男女主的,我并不觉得这个桥段很好,在婚礼里男女主都觉得自己想要跟对方说分手了,但是当他们去了最开始一直去的餐馆的时候,一个算是一个现实映照的就是他们一直坐的位子被占了,可能也是导演想通过这个来说明他们已经回不去了,在餐馆交谈的时候,小麦其实是说他们结婚吧,并没有想前面婚礼上预设地要分手,但是小娟放弃了,不想结婚,因为不想过那样的生活了,而小麦觉得可能生活就是那样,不可能一直保持刚恋爱时候的那种感觉,生活就是责任,人生就意味着责任。

+

我的一些观点也在前面说了,恋爱到婚姻,即使物质没问题,经济没问题,也会有各种各样的问题,需要一起去解决,因为结婚就意味着需要相互扶持,而不是各取所需,可能我的要求比较高,后面男女主在分手后还一起住了一段时间,我原来还在想会不会通过这个方式让他们继续去磨合同步,只是我失望了,最后给个打分可能是 5 到 6 分吧,勉强及格,好的影视剧应该源于生活高于生活,这一部可能还比不上生活。

+]]>
+ + 生活 + + + 生活 + 看剧 + +
+ + 聊聊最近平淡的生活之看《神探狄仁杰》 + /2021/12/19/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB%E4%B9%8B%E7%9C%8B%E3%80%8A%E7%A5%9E%E6%8E%A2%E7%8B%84%E4%BB%81%E6%9D%B0%E3%80%8B/ + 其实最近看的不止这一部,前面看了《继承者们》,《少年包青天》这些,就一起聊下,其中看《继承者们》算是个人比较喜欢,以前就有这种看剧的习惯,这个跟《一生一世》里任嘉伦说自己看《寻秦记》看了几十遍一样,我看喜欢的剧也基本上会看不止五遍,继承者们是有帅哥美女看,而且印象中剧情也挺甜的,一般情况下最好是已经有点遗忘剧情了,因为我个人觉得看剧分两种,无聊了又心情不太好,可以看些这类轻松又看过的剧,可以不完全专心地看剧,另外有心情专心看的时候,可以看一些需要思考,一些探案类的或者烧脑类。
最近看了《神探狄仁杰》,因为跟前面看的《少年包青天》都是这类古装探案剧,正好有些感想,《少年包青天》算是儿时阴影,本来是不太会去看的,正好有一次有机会跟 LD 一起看了会就也觉得比较有意思就看了下去,不得不说,以前的这些剧还是很不错的,包括剧情和演员,第一部一共是 40 集,看的过程中也发现了大概是五个案子,平均八集一个案子,整体节奏还是比较慢的,但是基本每个案子其实都是构思得很巧妙,很久以前看过但是现在基本不太记得剧情了,每个案子在前面几集的时候基本都猜不到犯案逻辑,但是在看了狄仁杰之后,发现两部剧也有比较大的差别,少年包青天相对来说逻辑性会更强一些,个人主观觉得推理的严谨性更高,可能剧本打磨上更将就一下,而狄仁杰因为要提现他的个人强项,不比少年包青天中有公孙策一时瑜亮的情节,狄仁杰中分工明确,李元芳是个武力担当,曾泰是捧哏的,相对来说是狄仁杰在案子里从始至终地推进案情,有些甚至有些玄乎,会有一些跳脱跟不合理,有些像是狄仁杰的奇遇,不过这些想法是私人的观点,并不是想要评孰优孰劣;第二个感受是不知道是不是年代关系,特别是少年包青天,每个案件的大 boss 基本都不是个完全的坏人,甚至都是比较情有可原的可怜人,因为一些特殊原因,而好几个都是包拯身边的人,这一点其实跟狄仁杰里第一个使团惊魂案件比较类似,虎敬晖也是个人物形象比较丰满的角色,不是个标签化的淡薄形象,跟金木兰的感情和反叛行动在最后都说明的缘由,而且也有随着跟狄仁杰一起办案被其影响感化,最终为了救狄仁杰而被金木兰所杀,只是这样金木兰这个角色就会有些偏执和符号化,当然剧本肯定不是能面面俱到,这样的剧本已经比现在很多流量剧的好很多了。还想到了前阵子看的《指环王》中的白袍萨鲁曼在剧中也是个比较单薄的角色,这样的电影彪炳影史也没办法把个个人物都设计得完整有血有肉,或者说这本来也是应该有侧重点,当然其实我也不觉得指环王就是绝对的最好的,因为相对来说故事情节的复杂性等真的不如西游记,只是在 86 版之后的各种乱七八糟的翻牌和乱拍已经让这个真正的王者神话故事有点力不从心,这里边有部西游记后传是个人还比较喜欢的,虽然武打动作比较鬼畜,但是剧情基本是无敌的,在西游的架构上衍生出来这么完整丰富的故事,人物角色也都有各自的出彩点。
说回狄仁杰,在这之前也看过徐克拍的几部狄仁杰的电影版,第一部刘德华拍得相对完成度更高,故事性也可圈可点,后面几部就是剧情拉胯,靠特效拉回来一点分,虽说这个也是所谓的狄仁杰宇宙的构思在里面但是现在来看基本是跟西游那些差不多,完全没有整体性可言,打一枪换一个地方,演员也没有延续性,剧情也是前后跳脱,没什么关联跟承上启下,导致质量层次不一,更不用谈什么狄仁杰宇宙了,不过这个事情也是难说,原因很多,现在资本都是更加趋利的,一些需要更长久时间才能有回报的投资是很难获得资本青睐,所以只能将重心投给选择一些流量明星,而本来应该将资源投给剧本打磨的基本就没了,再深入说也没意义了,社会现状就是这样。
还有一点感想是,以前的剧里的拍摄环境还是比较惨的,看着一些房子,甚至皇宫都是比较破旧的,地面还是石板这种,想想以前的演员的环境再想想现在的,比如成龙说的,以前他拍剧就是啪摔了,问这条有没有过,过了就直接送医院,而不是现在可能手蹭破点皮就大叫,甚至还有饭圈这些破事。

+]]>
+ + 生活 + + + 生活 + 看剧 + +
+ + 聊聊最近平淡的生活之看看老剧 + /2021/11/21/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB%E4%B9%8B%E7%9C%8B%E7%9C%8B%E8%80%81%E5%89%A7/ + 最近因为也没什么好看的新剧和综艺所以就看看一些以前看过的老剧,我是个非常念旧的人吧,很多剧都会反反复复地看,一方面之前看过觉得好看的的确是一直记着,还有就是平时工作完了回来就想能放松下,剧情太纠结的,太烧脑的都不喜欢,也就是我常挂在口头的不喜欢看费脑子的剧,跟我不喜欢狼人杀的原因也类似。

+

前面其实是看的太阳的后裔,跟 LD 一起看的,之前其实算是看过一点,但是没有看的很完整,并且很多剧情也忘了,只是这个我我可能看得更少一点,因为最开始的时候觉得男主应该是男二,可能对长得这样的男主并且是这样的人设有点失望,感觉不是特别像个特种兵,但是由于本来也比较火,而且 LD 比较喜欢就从这个开始看了,有两个点是比较想说的

+

韩剧虽然被吐槽的很多,但是很多剧的质量,情节把控还是优于目前非常多国内剧的,相对来说剧情发展的前后承接不是那么硬凹出来的,而且人设都立得住,这个是非常重要的,很多国内剧怎么说呢,就是当爹的看起来就比儿子没大几岁,三四十岁的人去演一个十岁出头的小姑娘,除非容貌异常,比如刘晓庆这种,不然就会觉得导演在把我们观众当傻子。瞬间就没有想看下去的欲望了。

+

再一点就是情节是大众都能接受度比较高的,现在有很多普遍会找一些新奇的视角,比如卖腐,想某某令,两部都叫某某令,这其实是一个点,延伸出去就是跟前面说的一点有点类似,xx 老祖,人看着就二三十,叫 xx 老祖,(喜欢的人轻喷哈)然后名字有一堆,同一个人物一会叫这个名字,一会又叫另一个名字,然后一堆死表情。

+

因为今天有个特殊的事情发生,所以简短的写(shui)一篇了

]]>
- Java - SpringBoot + 生活 - Java - Spring - SpringBoot - 自动装配 - AutoConfiguration + 生活 + 看剧
- 聊聊一次 brew update 引发的血案 - /2020/06/13/%E8%81%8A%E8%81%8A%E4%B8%80%E6%AC%A1-brew-update-%E5%BC%95%E5%8F%91%E7%9A%84%E8%A1%80%E6%A1%88/ - 熟悉我的人(谁熟悉你啊🙄)知道我以前写过 PHP,虽然现在在工作中没用到了,但是自己的一些小工具还是会用 PHP 来写,但是在 Mac 碰到了一个环境相关的问题,因为我也是个更新狂魔,用了 brew 之后因为 gfw 的原因,如果长时间不更新,有时候要装一个用它装一个软件的话,前置的更新耗时就会让人非常头大,所以我基本会隔天 update 一下,但是这样会带来一个很心烦的问题,就是像这样,因为我是要用一个固定版本的 PHP,如果一直升需要一直配扩展啥的也很麻烦,如果一直升级 PHP 到最新版可能会比较少碰到这个问题

-
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.64.dylib
-

这是什么鬼啊,然后我去这个目录下看了下,已经都是libicui18n.67.dylib了,而且它没有把原来的版本保留下来,首先这个是个叫 icu4c是啥玩意,谷歌了一下

-
-

ICU4C是ICU在C/C++平台下的版本, ICU(International Component for Unicode)是基于”IBM公共许可证”的,与开源组织合作研究的, 用于支持软件国际化的开源项目。ICU4C提供了C/C++平台强大的国际化开发能力,软件开发者几乎可以使用ICU4C解决任何国际化的问题,根据各地的风俗和语言习惯,实现对数字、货币、时间、日期、和消息的格式化、解析,对字符串进行大小写转换、整理、搜索和排序等功能,必须一提的是,ICU4C提供了强大的BIDI算法,对阿拉伯语等BIDI语言提供了完善的支持。

-
-

然后首先想到的解决方案就是能不能我使用brew install icu4c@64来重装下原来的版本,发现不行,并木有,之前的做法就只能是去网上把 64 的下载下来,然后放到这个目录,比较麻烦不智能,虽然没抱着希望在谷歌着,不过这次竟然给我找到了一个我认为非常 nice 的解决方案,因为是在 Stack Overflow 找到的,本着写给像我这样的小小白看的,那就稍微翻译一下
第一步,我们到 brew的目录下

-
cd $(brew --prefix)/Homebrew/Library/Taps/homebrew/homebrew-core/Formula
-

这个可以理解为是 maven 的 pom 文件,不过有很多不同之处,使用ruby 写的,然后一个文件对应一个组件或者软件,那我们看下有个叫icu4c.rb的文件,
第二步看看它的提交历史

-
git log --follow icu4c.rb
-

在 git log 的海洋中寻找,寻找它的(64版本)的身影

第三步注意这三个红框,Stack Overflow 给出来的答案这一步是找到这个 commit id 直接切出一个新分支

-
git checkout -b icu4c-63 e7f0f10dc63b1dc1061d475f1a61d01b70ef2cb7
-

其实注意 commit id 旁边的红框,这个是有tag 的,可以直接

-
git checkout icu4c-64
-

PS: 因为我的问题是出在 64 的问题,Stack Overflow 回答的是 63 的,反正是一样的解决方法
第四部,切回去之后我们就可以用 brew 提供的基于文件的安装命令来重新装上 64 版本

-
brew reinstall ./icu4c.rb
-

然后就是第五步,切换版本

-
brew switch icu4c 64.2
-

最后把分支切回来

-
git checkout master
-

是不是感觉很厉害的解决方法,大佬还提供了一个更牛的,直接写个 zsh 方法

-
# zsh
-function hiicu64() {
-  local last_dir=$(pwd)
-
-  cd $(brew --prefix)/Homebrew/Library/Taps/homebrew/homebrew-core/Formula
-  git checkout icu4c-4
-  brew reinstall ./icu4c.rb
-  brew switch icu4c 64.2
-  git checkout master
-
-  cd $last_dir
-}
-

对应自己的版本改改版本号就可以了,非常好用。

+ 聊聊给亲戚朋友的老电脑重装系统那些事儿 + /2021/05/09/%E8%81%8A%E8%81%8A%E7%BB%99%E4%BA%B2%E6%88%9A%E6%9C%8B%E5%8F%8B%E7%9A%84%E8%80%81%E7%94%B5%E8%84%91%E9%87%8D%E8%A3%85%E7%B3%BB%E7%BB%9F%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/ + 前面这个五一回去之前,LD 姐姐跟我说电脑很卡了,想让我重装系统,问了下 LD 可能是那个 09 年买的笔记本,想想有点害怕[捂脸],前年有一次好像让我帮忙装了她同事的一个三星的笔记本,本着一些系统洁癖,所以就从开始找纯净版的 win7 家庭版,因为之前那些本基本都自带 win7 的家庭版,而且把激活码就贴在机器下面,然后从三星官网去找官方驱动,还好这个机型的驱动还在,先做了系统镜像,其实感觉这种情况需要两个 U 盘,一个 U 盘装系统作为安装启动盘,一个放驱动,毕竟不是专业装系统的,然后因为官方驱动需要一个个下载一个个安装,然后驱动文件下载的地方还没标明是 32 位还是 64 位的,结果还被 LD 姐姐催着,一直问好没好,略尴尬,索性还是找个一键安装的

+

这次甚至更夸张,上次还让带回去,我准备好了系统镜像啥的,第二天装,这次直接带了两个老旧笔记本过来说让当天就装好,感觉有点像被当修电脑的使,又说这些电脑其实都不用了的,都是为了她们当医生的要每年看会课,然后只能用电脑浏览器看,结果都在用 360 浏览器,真的是万恶的 360,其实以前对 360 没啥坏印象,毕竟以前也经常用,只是对于这些老电脑,360 全家桶真的就是装了就废了,2G 的内存,开机就开着 360 安全卫士,360 杀毒,有一个还装了腾讯电脑管家,然后腾讯视频跟爱奇艺也开机启动了,然后还打开 360 浏览器看课,就算再好的系统也吃不消这么用,重装了系统,还是这么装这些东西,也是分分钟变卡,可惜他们都没啥这类概念。

+

对于他们要看的课,更搞笑的是,明明在页面上注明了说要使用 IE 浏览器,结果他们都在用 360 浏览器看,但是这个也不能完全怪他们,因为实在是现在的 IE 啥的也有开始不兼容 flash 的配置,需要开启兼容配置,但是只要开启了之后就可以直接用 IE 看,比 360 靠谱很多, 资源占用也比较少,360 估计是基于 chromium 加了很多内置的插件,本身 chromium 也是内存大户,但是说这些其实他们也不懂,总觉得找我免费装下系统能撑一段时间,反正对我来说也应该很简单(他们觉得),实际上开始工作以后,我自己想装个双系统都是上淘宝买别人的服务装的,台式机更是几年没动过系统了,因为要重装一大堆软件,数据备份啥的,还有驱动什么的,分区格式,那些驱动精灵啥的也都是越来越坑,一装就给你带一堆垃圾软件。

+

感悟是,总觉得学计算机的就应该会装系统,会修电脑,之前亲戚还拿着一个完全开不起来的笔记本让我来修,这真的是,我说可以找官方维修的,结果我说我搞不定,她直接觉得是修不好了,直接电脑都懒得拿回去了,后面又一次反复解释了才明白,另外就是 360 全家桶,别说老电脑了,新机器都不太吃得消。

]]>
- Mac - PHP - Homebrew - PHP - icu4c + 生活 - Mac - PHP - Homebrew - icu4c - zsh + 生活 + 装电脑 + 老电脑 + 360 全家桶 + 修电脑的
- 聊聊传说中的 ThreadLocal - /2021/05/30/%E8%81%8A%E8%81%8A%E4%BC%A0%E8%AF%B4%E4%B8%AD%E7%9A%84-ThreadLocal/ - 说来也惭愧,这个 ThreadLocal 其实一直都是一知半解,而且看了一下之后还发现记错了,所以还是记录下
原先记忆里的都是反过来,一个 ThreadLocal 是里面按照 thread 作为 key,存储线程内容的,真的是半解都米有,完全是错的,这样就得用 concurrentHashMap 这种去存储并且要锁定线程了,然后内容也只能存一个了,想想简直智障

-

究竟是啥结构

比如我们在代码中 new 一个 ThreadLocal,

-
public static void main(String[] args) {
-        ThreadLocal<Man> tl = new ThreadLocal<>();
+    聊聊这次换车牌及其他
+    /2022/02/20/%E8%81%8A%E8%81%8A%E8%BF%99%E6%AC%A1%E6%8D%A2%E8%BD%A6%E7%89%8C%E5%8F%8A%E5%85%B6%E4%BB%96/
+    去年 8 月份运气比较好,摇到了车牌,本来其实应该很早就开始摇的,前面第一次换工作没注意社保断缴了一个月,也是大意失荆州,后面到了 17 年社保满两年了,好像只摇了一次,还是就没摇过,有点忘了,好像是什么原因导致那次也没摇成功,但是后面暂住证就取消了,需要居住证,居住证又要一年及以上的租房合同,并且那会买车以后也不怎么开,住的地方车位还好,但是公司车位一个月要两三千,甚至还是打车上下班比较实惠,所以也没放在心上,后面摇到房以后,也觉得应该准备起来车子,就开始办了居住证,居住证其实还可以用劳动合同,而且办起来也挺快,大概是三四月份开始摇,到 8 月份的某一天收到短信说摇到了,一开始还挺开心,不过心里抱着也不怎么开,也没怎么大放在心上,不过这里有一点就是我把那个照片直接发出去,上面有着我的身份证号,被 LD 说了一顿,以后也应该小心点,但是后面不知道是哪里看了下,说杭州上牌已经需要国六标准的车了,瞬间感觉是空欢喜了,可是有同事说是可以的,我就又打了官方的电话,结果说可以的,要先转籍,然后再做上牌。

+

转籍其实是很方便的,在交警 12123 App 上申请就行了,在转籍以后,需要去实地验车,验车的话,在支付宝-杭州交警生活号里进行预约,找就近的车管所就好,需要准备一些东西,首先是行驶证,机动车登记证书,身份证,居住证,还有车上需要准备的东西是要有三脚架和反光背心,反光背心是最近几个月开始要的,问过之前去验车的只需要三脚架就好了,预约好了的话建议是赶上班时间越早越好,不然过去排队时间要很久,而且人多了以后会很乱,各种插队,而且有很多都是汽车销售,一个销售带着一堆车,我们附近那个进去的小路没一会就堵满车,进去需要先排队,然后扫码,接着交资料,这两个都排着队,如果去晚了就要排很久的队,交完资料才是排队等验车,验车就是打开引擎盖,有人会帮忙拓印发动机车架号,然后验车的会各种检查一下,车里面,还有后备箱,建议车内整理干净点,后备箱不要放杂物,检验完了之后,需要把三脚架跟反光背心放在后备箱盖子上,人在旁边拍个照,然后需要把车牌遮住后再拍个车子的照片,再之后就是去把车牌卸了,这个多吐槽下,那边应该是本来那边师傅帮忙卸车牌,结果他就说是教我们拆,虽然也不算难,但是不排除师傅有在偷懒,完了之后就是把旧车牌交回去,然后需要在手机上(警察叔叔 App)提交各种资料,包括身份证,行驶证,机动车登记证书,提交了之后就等寄车牌过来了。

+

这里面缺失的一个环节就是选号了,选号杭州有两个方式,一种就是根据交管局定期发布的选号号段,可以自定义拼 20 个号,在手机上的交警 12123 App 上可以三个一组的形式提交,如果有没被选走的,就可以预选到这个了,但是这种就是也需要有一定策略,最新出的号段能选中的概率大一点,然后数字全是 8,6 这种的肯定会一早就被选走,然后如果跟我一样可以提前选下尾号,因为尾号数字影响限号,我比较有可能周五回家,所以得避开 5,0 的,第二种就是 50 选一跟以前新车选号一样,就不介绍了。第一种选中了以后可以在前面交还旧车牌的时候填上等着寄过来了,因为我是第一种选中的,第二种也可以在手机上选,也在可以在交还车牌的时候现场选。

+

总体过程其实是 LD 在各种查资料跟帮我跑来跑去,要不是 LD,估计在交管局那边我就懵逼了,各种插队,而且车子开着车子,也不能随便跑,所以建议办这个的时候有个人一起比较好。

+]]>
+ + 生活 + + + 生活 + 换车牌 + + + + 聊聊部分公交车的设计bug + /2021/12/05/%E8%81%8A%E8%81%8A%E9%83%A8%E5%88%86%E5%85%AC%E4%BA%A4%E8%BD%A6%E7%9A%84%E8%AE%BE%E8%AE%A1bug/ + 今天惯例坐公交回住的地方,不小心撞了头,原因是我们想坐倒数第二排,然后LD 走在我后面,我就走到最后一排中间等着,但是最后一排是高一截的,等 LD 坐进去以后,我就往前走,结果撞到了车顶的扶手杆子的一端,差点撞昏了去,这里我觉得其实杆子长度应该短一点,不然从最后一排出来,还是有比较大概率因为没注意看而撞到头,特别是没注意看的情况,发力其实会比较大,一头撞上就会像我这样,眼前一黑,又痛得要死。
还有一点就是座位设计了,先来看个图

图里大致画了两条线,因为可能是轮胎还是什么原因,后排中间会有那么大的突起,但是看两条红线可以发现,靠近过道的座位边缘跟地面突起的边缘不是一样宽的,这样导致的结果就是坐着的时候有一个脚没地儿搁,要不就得侧着斜着坐,或者就是一个脚悬空,短程的可能还好,路程远一点还是比较难受的,特别是像我现在这样,大腿外侧有点难受的情况,就会更难受。
虽然说这两个点,基本是屁用没有,但是我也是在自己这个博客说说,也当是个树洞了。

+]]>
+ + 生活 + + + 生活 + 公交 + 杭州 + +
+ + 聊聊那些加塞狗 + /2021/01/17/%E8%81%8A%E8%81%8A%E9%82%A3%E4%BA%9B%E5%8A%A0%E5%A1%9E%E7%8B%97/ + 今天真的是被气得不轻,情况是碰到一个有 70 多秒的直行红灯,然后直行就排了很长的队,但是左转车道没车,就有好几辆车占着左转车道,准备往直行车道插队加塞,一般这种加塞的,会挑个不太计较的,如果前面一辆不让的话就再等等,我因为赶着回家,就不想让,结果那辆车几次车头直接往里冲,当时怒气值基本已经蓄满了,我真的是分毫都不想让,如果路上都是让着这种人的,那么这种情况只会越来越严重,我理解的这种心态,就赌你怕麻烦,多一事不如少一事,结果就是每次都能顺利插队加塞,其实延伸到我们社会中的种种实质性的排队或者等同于排队的情况,都已经有这种惯有思维,一方面这种不符合规则,可能在严重程度上容易被很多人所忽视,基本上已经被很多人当成是“合理”行为,另一方面,对于这些“微小”的违规行为,本身管理层面也基本没有想要管的意思,就更多的成为了纵容这些行为的导火索,并且大多数人都是想着如果不让,发生点小剐小蹭的要浪费很多时间精力来处理,甚至会觉得会被别人觉得自己太小气等等,诸多内外成本结合起来,会真的去硬刚的可能少之又少了,这样也就让更多的人觉得这种行为是被默许的,再举个非常小的例子,以我们公司疫情期间的盒饭发放为例,有两个比较“有意思”的事情,第一个就是因为疫情,本来是让排队要间隔一米,但是可能除了我比较怕死会跟前面的人保持点距离基本没别人会不挨着前面的人,甚至我跟我前面的人保持点距离,后面的同学会推着我让我上去;第二个是关于拿饭,这么多人排着队拿饭,然后有部分同学,一个人拿好几份,帮组里其他人的都拿了,有些甚至一个人拿十份,假如这个盒饭发放是说明了可以按部门直接全领了那就没啥问题,但是当时的状况是个人排队领自己的那一份,如果一个同学直接帮着组里十几个人都拿了,后面排队的人是什么感受呢,甚至有些是看到队伍排长了,就找队伍里自己认识的比较靠前的人说你帮我也拿一份,其实作为我这个比较按规矩办事的“愣头青”来说,我是比较不能接受这两件小事里的行为的,再往下说可能就有点偏激了,先说到这~

+]]>
+ + 生活 + 开车 + + + 生活 + 开车 + 加塞 + 糟心事 + 规则 + +
+ + 记一个容器中 dubbo 注册的小知识点 + /2022/10/09/%E8%AE%B0%E4%B8%80%E4%B8%AA%E5%AE%B9%E5%99%A8%E4%B8%AD-dubbo-%E6%B3%A8%E5%86%8C%E7%9A%84%E5%B0%8F%E7%9F%A5%E8%AF%86%E7%82%B9/ + 在目前环境下使用容器部署Java应用还是挺普遍的,但是有一些问题也是随之而来需要解决的,比如容器中应用的dubbo注册,在比较早的版本的dubbo中,就是简单地获取网卡的ip地址。
具体代码在这个方法里 com.alibaba.dubbo.config.ServiceConfig#doExportUrlsFor1Protocol

+
private void doExportUrlsFor1Protocol(ProtocolConfig protocolConfig, List<URL> registryURLs) {
+        String name = protocolConfig.getName();
+        if (name == null || name.length() == 0) {
+            name = "dubbo";
+        }
 
-        new Thread(() -> {
+        String host = protocolConfig.getHost();
+        if (provider != null && (host == null || host.length() == 0)) {
+            host = provider.getHost();
+        }
+        boolean anyhost = false;
+        if (NetUtils.isInvalidLocalHost(host)) {
+            anyhost = true;
             try {
-                TimeUnit.SECONDS.sleep(2);
-            } catch (InterruptedException e) {
-                e.printStackTrace();
+                host = InetAddress.getLocalHost().getHostAddress();
+            } catch (UnknownHostException e) {
+                logger.warn(e.getMessage(), e);
             }
-            System.out.println(tl.get());
-        }).start();
-        new Thread(() -> {
-            try {
-                TimeUnit.SECONDS.sleep(1);
-            } catch (InterruptedException e) {
-                e.printStackTrace();
+            if (NetUtils.isInvalidLocalHost(host)) {
+                if (registryURLs != null && registryURLs.size() > 0) {
+                    for (URL registryURL : registryURLs) {
+                        try {
+                            Socket socket = new Socket();
+                            try {
+                                SocketAddress addr = new InetSocketAddress(registryURL.getHost(), registryURL.getPort());
+                                socket.connect(addr, 1000);
+                                host = socket.getLocalAddress().getHostAddress();
+                                break;
+                            } finally {
+                                try {
+                                    socket.close();
+                                } catch (Throwable e) {}
+                            }
+                        } catch (Exception e) {
+                            logger.warn(e.getMessage(), e);
+                        }
+                    }
+                }
+                if (NetUtils.isInvalidLocalHost(host)) {
+                    host = NetUtils.getLocalHost();
+                }
             }
-            tl.set(new Man());
-        }).start();
-    }
-
-    static class Man {
-        String name = "nick";
-    }
-

这里构造了两个线程,一个先往里设值,一个后从里取,运行看下结果,

知道这个用法的话肯定知道是取不到值的,只是具体的原理原来搞错了,我们来看下设值 set 方法

-
public void set(T value) {
-    Thread t = Thread.currentThread();
-    ThreadLocalMap map = getMap(t);
-    if (map != null)
-        map.set(this, value);
-    else
-        createMap(t, value);
-}
-

写博客这会我才明白我原来咋会错得这么离谱,看到第一行代码 t 就是当前线程,然后第二行就是用这个线程去getMap,然后我是把这个当成从 map 里取值了,其实这里是

-
ThreadLocalMap getMap(Thread t) {
-    return t.threadLocals;
-}
-

获取 t 的 threadLocals 成员变量,那这个 threadLocals 又是啥呢

它其实是线程 Thread 中的一个类型是java.lang.ThreadLocal.ThreadLocalMap的成员变量
这是 ThreadLocal 的一个静态成员变量

-
static class ThreadLocalMap {
+        }
+

通过jdk自带的方法 java.net.InetAddress#getLocalHost来获取本机地址,这样子对于容器来讲,获取到容器内部ip注册上去其实是没办法被调用到的,
而在之后的版本中例如dubbo 2.6.5,则可以通过在docker中设置环境变量的形式来注入docker所在的宿主机地址,
代码同样在com.alibaba.dubbo.config.ServiceConfig#doExportUrlsFor1Protocol这个方法中,但是获取host的方法变成了 com.alibaba.dubbo.config.ServiceConfig#findConfigedHosts

+
private String findConfigedHosts(ProtocolConfig protocolConfig, List<URL> registryURLs, Map<String, String> map) {
+        boolean anyhost = false;
 
-        /**
-         * The entries in this hash map extend WeakReference, using
-         * its main ref field as the key (which is always a
-         * ThreadLocal object).  Note that null keys (i.e. entry.get()
-         * == null) mean that the key is no longer referenced, so the
-         * entry can be expunged from table.  Such entries are referred to
-         * as "stale entries" in the code that follows.
-         */
-        static class Entry extends WeakReference<ThreadLocal<?>> {
-            /** The value associated with this ThreadLocal. */
-            Object value;
+        String hostToBind = getValueFromConfig(protocolConfig, Constants.DUBBO_IP_TO_BIND);
+        if (hostToBind != null && hostToBind.length() > 0 && isInvalidLocalHost(hostToBind)) {
+            throw new IllegalArgumentException("Specified invalid bind ip from property:" + Constants.DUBBO_IP_TO_BIND + ", value:" + hostToBind);
+        }
 
-            Entry(ThreadLocal<?> k, Object v) {
-                super(k);
-                value = v;
+        // if bind ip is not found in environment, keep looking up
+        if (hostToBind == null || hostToBind.length() == 0) {
+            hostToBind = protocolConfig.getHost();
+            if (provider != null && (hostToBind == null || hostToBind.length() == 0)) {
+                hostToBind = provider.getHost();
+            }
+            if (isInvalidLocalHost(hostToBind)) {
+                anyhost = true;
+                try {
+                    hostToBind = InetAddress.getLocalHost().getHostAddress();
+                } catch (UnknownHostException e) {
+                    logger.warn(e.getMessage(), e);
+                }
+                if (isInvalidLocalHost(hostToBind)) {
+                    if (registryURLs != null && !registryURLs.isEmpty()) {
+                        for (URL registryURL : registryURLs) {
+                            if (Constants.MULTICAST.equalsIgnoreCase(registryURL.getParameter("registry"))) {
+                                // skip multicast registry since we cannot connect to it via Socket
+                                continue;
+                            }
+                            try {
+                                Socket socket = new Socket();
+                                try {
+                                    SocketAddress addr = new InetSocketAddress(registryURL.getHost(), registryURL.getPort());
+                                    socket.connect(addr, 1000);
+                                    hostToBind = socket.getLocalAddress().getHostAddress();
+                                    break;
+                                } finally {
+                                    try {
+                                        socket.close();
+                                    } catch (Throwable e) {
+                                    }
+                                }
+                            } catch (Exception e) {
+                                logger.warn(e.getMessage(), e);
+                            }
+                        }
+                    }
+                    if (isInvalidLocalHost(hostToBind)) {
+                        hostToBind = getLocalHost();
+                    }
+                }
             }
         }
-    }
-

全部代码有点长,只截取了一小部分,然后我们再回头来分析前面说的 set 过程,再 copy 下代码

-
public void set(T value) {
-    Thread t = Thread.currentThread();
-    ThreadLocalMap map = getMap(t);
-    if (map != null)
-        map.set(this, value);
-    else
-        createMap(t, value);
-}
-

获取到 map 以后呢,如果 map 不为空,就往 map 里 set,这里注意 key 是啥,其实是当前这个 ThreadLocal,这里就比较明白了究竟是啥结构,每个线程都会维护自身的 ThreadLocalMap,它是线程的一个成员变量,当创建 ThreadLocal 的时候,进行设值的时候其实是往这个 map 里以 ThreadLocal 作为 key,往里设 value。

-

内存泄漏是什么鬼

这里又要看下前面的 ThreadLocalMap 结构了,类似 HashMap,它有个 Entry 结构,在设置的时候会先包装成一个 Entry

-
private void set(ThreadLocal<?> key, Object value) {
-
-        // We don't use a fast path as with get() because it is at
-        // least as common to use set() to create new entries as
-        // it is to replace existing ones, in which case, a fast
-        // path would fail more often than not.
-
-        Entry[] tab = table;
-        int len = tab.length;
-        int i = key.threadLocalHashCode & (len-1);
-
-        for (Entry e = tab[i];
-             e != null;
-             e = tab[i = nextIndex(i, len)]) {
-            ThreadLocal<?> k = e.get();
 
-            if (k == key) {
-                e.value = value;
-                return;
-            }
+        map.put(Constants.BIND_IP_KEY, hostToBind);
 
-            if (k == null) {
-                replaceStaleEntry(key, value, i);
-                return;
-            }
+        // registry ip is not used for bind ip by default
+        String hostToRegistry = getValueFromConfig(protocolConfig, Constants.DUBBO_IP_TO_REGISTRY);
+        if (hostToRegistry != null && hostToRegistry.length() > 0 && isInvalidLocalHost(hostToRegistry)) {
+            throw new IllegalArgumentException("Specified invalid registry ip from property:" + Constants.DUBBO_IP_TO_REGISTRY + ", value:" + hostToRegistry);
+        } else if (hostToRegistry == null || hostToRegistry.length() == 0) {
+            // bind ip is used as registry ip by default
+            hostToRegistry = hostToBind;
         }
 
-        tab[i] = new Entry(key, value);
-        int sz = ++size;
-        if (!cleanSomeSlots(i, sz) && sz >= threshold)
-            rehash();
-}
-

这里其实比较重要的就是前面的 Entry 的构造方法,Entry 是个 WeakReference 的子类,然后在构造方法里可以看到 key 会被包装成一个弱引用,这里为什么使用弱引用,其实是方便这个 key 被回收,如果前面的 ThreadLocal tl实例被设置成 null 了,如果这里是直接的强引用的话,就只能等到线程整个回收了,但是其实是弱引用也会有问题,主要是因为这个 value,如果在 ThreadLocal tl 被设置成 null 了,那么其实这个 value 就会没法被访问到,所以最好的操作还是在使用完了就 remove 掉

-]]>
- - Java - - - Java - ThreadLocal - 弱引用 - 内存泄漏 - WeakReference - -
- - 聊聊厦门旅游的好与不好 - /2021/04/11/%E8%81%8A%E8%81%8A%E5%8E%A6%E9%97%A8%E6%97%85%E6%B8%B8%E7%9A%84%E5%A5%BD%E4%B8%8E%E4%B8%8D%E5%A5%BD/ - 这几天去了趟厦门,原来几年前就想去了,本来都请好假了,后面因为一些事情没去成,这次刚好公司组织,就跟 LD 一起去了厦门,也不洋洋洒洒地写游记了,后面可能会有,今天先来总结下好的地方和比较坑的地方。
这次主要去了中山路、鼓浪屿、曾厝(cuo)垵、植物园、灵玲马戏团,因为住的离环岛路比较近,还有幸现场看了下厦门马拉松,其中

-

中山路

这里看上去是有点民国时期的建筑风格,部分像那种电视里的租界啥的,不过这次去的时候都在翻修,路一大半拦起来了,听导游说这里往里面走有个局口街,然后上次听前同事说厦门比较有名的就是沙茶面和海蛎煎,不出意料的不太爱吃,沙茶面比较普通,可能是没吃到正宗的,海蛎煎吃不惯,倒是有个大叔的沙茶里脊还不错,在局口街那,还有小哥在那拍,应该也算是个网红打卡点了,然后吃了个油条麻糍也还不错,总体如果是看建筑的话可能最近不是个好时间,个人也没这方面爱好,吃的话最好多打听打听沙茶面跟海蛎煎哪里正宗。如果不知道哪家好吃,也不爱看这类建筑的可以排个坑。

-

鼓浪屿

鼓浪屿也是完全没啥概念,需要乘船过去,但是只要二十分钟,岛上没有机动车,基本都靠走,有几个比较有名的地方,菽庄花园,里面有钢琴博物馆,对这个感兴趣的可以去看看,旁边是沙滩还可以逛逛,然后有各种博物馆,风琴啥的,岛上最大的特色是巷子多,道听途说有三百多条小巷,还有几个网红打卡点,周杰伦晴天墙,还有个最美转角,都是挤满了人排队打卡拍照,不过如果不着急,慢慢悠悠逛逛还是不错的,比较推荐,推荐值☆☆

-

曾厝垵

一直读不对这个字,都是叫:那个曾什么垵,愧对语文老师,这里到算是意外之喜,鼓浪屿回来已经挺累了,不过由于比较饿(什么原因后面说),并且离住的地方不远,就过去逛了逛,东西还蛮好吃的,芒果挺便宜,一大杯才十块,无骨鸡爪很贵,不是特别爱,臭豆腐不错的,也不算很贵,这里想起来,那边八婆婆的豆乳烧仙草还不错的,去中山路那会喝了,来曾厝垵也买了,奶茶爱好者可以试试,含糖量应该很高,不爱甜食或者减肥的同学慎重考虑好了再尝试,晚上那边从牌坊出来,沿着环岛路挺多夜宵店什么的,非常推荐,推荐值☆☆☆☆

-

植物园

植物园还是挺名副其实的,有热带植物,沙漠多肉,因为赶时间逛得不多,热带雨林植物那太多人了,都是在那拍照,而且我指的拍照都是拍人照,本身就很小的路,各种十八线网红,或者普通游客在那摆 pose 拍照,挺无语的;沙漠多肉比较惊喜,好多比人高的仙人掌,一大片的仙人球,很可恶的是好多大仙人掌上都有人刻字,越来越体会到,我们社会人多了,什么样的都有,而且不少;还看了下百花厅,但没什么特别的,可能赶时间比较着急,没仔细看,比较推荐,推荐值☆☆☆

-

灵玲马戏团

对这个其实比较排斥,主要是比较晚了,跑的有点远(我太懒了),一开始真的挺拉低体验感受的,上来个什么书法家,现场画马,卖画;不过后面的还算值回票价,主题是花木兰,空中动作应该很考验基本功,然后那些老外的飞轮还跳绳(不知道学名叫啥),动物那块不太忍心看,应该是吃了不少苦头,不过人都这样就往后点再心疼动物吧。

-

总结

厦门是个非常适合干饭人的地方,吃饭的地方大部分是差不多一桌菜十个左右就完了,而且上来就一大碗饭,一瓶雪碧一瓶可乐,对于经常是家里跟亲戚吃饭都得十几二十个菜的乡下人来说,不太吃得惯这样的🤦‍♂️,当然很有可能是我们预算不足,点的差。但是有一点是我回杭州深有感触的,感觉杭州司机的素质真的是跟厦门的司机差了比较多,杭州除非公交车停了,否则人行道很难看到主动让人的,当然这里拿厦门这个旅游城市来对比也不是很公平,不过这也是体现城市现代化文明水平的一个维度吧。

+ map.put(Constants.ANYHOST_KEY, String.valueOf(anyhost)); + + return hostToRegistry; + }
+

String hostToRegistry = getValueFromConfig(protocolConfig, Constants.DUBBO_IP_TO_REGISTRY);
就是这一行,

+
private String getValueFromConfig(ProtocolConfig protocolConfig, String key) {
+    String protocolPrefix = protocolConfig.getName().toUpperCase() + "_";
+    String port = ConfigUtils.getSystemProperty(protocolPrefix + key);
+    if (port == null || port.length() == 0) {
+        port = ConfigUtils.getSystemProperty(key);
+    }
+    return port;
+}
+

也就是配置了DUBBO_IP_TO_REGISTRY这个环境变量

]]>
- 生活 - 旅游 + java - 生活 - 杭州 - 旅游 - 厦门 - 中山路 - 局口街 - 鼓浪屿 - 曾厝垵 - 植物园 - 马戏团 - 沙茶面 - 海蛎煎 + dubbo
- 聊聊如何识别和意识到日常生活中的各类危险 - /2021/06/06/%E8%81%8A%E8%81%8A%E5%A6%82%E4%BD%95%E8%AF%86%E5%88%AB%E5%92%8C%E6%84%8F%E8%AF%86%E5%88%B0%E6%97%A5%E5%B8%B8%E7%94%9F%E6%B4%BB%E4%B8%AD%E7%9A%84%E5%90%84%E7%B1%BB%E5%8D%B1%E9%99%A9/ - 这篇博客的灵感又是来自于我从绍兴来杭州的路上,在我们进站以后上电梯快到的时候,突然前面不动了,右边我能看到的是有个人的行李箱一时拎不起来,另一边后面看到其实是个小孩子在那哭闹,一位妈妈就在那停着安抚或者可能有点手足无措,其实这一点应该是在几年前慢慢意识到是个非常危险的场景,特别是像绍兴北站这样上去站台是非常长的电梯,因为最近扩建改造,车次减少了很多,所以每一班都有很多人,检票上站台的电梯都是满员运转,试想这种情况,如果刚才那位妈妈再多停留一点时间,很可能就会出现后面的人上不来被挤下去,再严重点就是踩踏事件,但是这类情况很少人真的意识到,非常明显的例子就是很多人拿着比较大比较重的行李箱,不走垂梯,并且在快到的时候没有提前准备好,有可能在玩手机啥的,如果提不动,后面又是挤满人了,就很可能出现前面说的这种情况,并且其实这种是非紧急情况,大多数人都没有心理准备,一旦发生后果可能就会很严重,例如火灾地震疏散大部分人或者说负责引导的都是指示要有序撤离,防止踩踏,但是普通坐个扶梯,一般都不会有这个意识,但是如果这个时间比较长,出现了人员站不住往后倒了,真的会很严重。所以如果自己是带娃的或者带了很重的行李箱的,请提前做好准备,看到前面有人带的,最好也保持一定距离。
还有比如日常走路,旁边有车子停着的情况,比较基本的看车灯有没有亮着,亮着的是否是倒车灯,这种应该特别注意远离,至少保持距离,不能挨着走,很多人特别是一些老年人,在一些人比较多的路上,往往完全无视旁边这些车的状态,我走我的路,谁敢阻拦我,管他车在那动不动,其实真的非常危险,车子本身有视线死角,再加上司机的驾驶习惯和状态,想去送死跟碰瓷的除外,还有就是有一些车会比较特殊,车子发动着,但是没灯,可能是车子灯坏了或者司机通过什么方式关了灯,这种比较难避开,不过如果车子打着了,一般会有比较大的热量散发,车子刚灭了也会有,反正能远离点尽量远离,从轿车的车前面走过挨着走要比从屁股后面挨着走稍微安全一些,但也最好不要挨着车走。
最后一点其实是我觉得是我自己比较怕死,一般对来向的车或者从侧面出来的车会做更长的预判距离,特别是电瓶车,一般是不让人的,像送外卖的小哥,的确他们不太容易,但是真的很危险啊,基本就生死看刹车,能刹住就赚了,刹不住就看身子骨扛不扛撞了,只是这里要多说点又要谈到资本的趋利性了,总是想法设法的压榨以获取更多的利益,也不扯远了,能远离就远离吧。

+ 记录下 Java Stream 的一些高效操作 + /2022/05/15/%E8%AE%B0%E5%BD%95%E4%B8%8B-Java-Lambda-%E7%9A%84%E4%B8%80%E4%BA%9B%E9%AB%98%E6%95%88%E6%93%8D%E4%BD%9C/ + 我们日常在代码里处理一些集合逻辑的时候用到 Stream 其实还挺多的,普通的取值过滤集合一般都是结合 ide 的提示就能搞定了,但是有些不太常用的就在这记录下,争取后面都更新记录下来。

+

自定义 distinctByKey 对结果进行去重

stream 中自带的 distinct 只能对元素进行去重
比如下面代码

+
public static void main(String[] args) {
+        List<Integer> list = new ArrayList<>();
+        list.add(1);
+        list.add(1);
+        list.add(2);
+        list = list.stream().distinct().collect(Collectors.toList());
+        System.out.println(list);
+    }
+

结果就是去了重的

+
[1, 2]
+

但是当我的元素是个复杂对象,我想根据对象里的某个元素进行过滤的时候,就需要用到自定义的 distinctByKey 了,比如下面的想对 userId 进行去重

+
public static void main(String[] args) {
+        List<StudentRecord> list = new ArrayList<>();
+        StudentRecord s1 = new StudentRecord();
+        s1.setUserId(11L);
+        s1.setCourseId(100L);
+        s1.setScore(100);
+        list.add(s1);
+        StudentRecord s2 = new StudentRecord();
+        s2.setUserId(11L);
+        s2.setCourseId(101L);
+        s2.setScore(100);
+        list.add(s2);
+        StudentRecord s3 = new StudentRecord();
+        s3.setUserId(12L);
+        s3.setCourseId(100L);
+        s3.setScore(100);
+        list.add(s3);
+        System.out.println(list.stream().distinct().collect(Collectors.toList()));
+    }
+    @Data
+    static class StudentRecord {
+        Long id;
+        Long userId;
+        Long courseId;
+        Integer score;
+    }
+

结果就是

+
[StudentRecord(id=null, userId=11, courseId=100, score=100), StudentRecord(id=null, userId=11, courseId=101, score=100), StudentRecord(id=null, userId=12, courseId=100, score=100)]
+

因为对象都不一样,所以就没法去重了,这里就需要用

+
public static <T> Predicate<T> distinctByKey(
+            Function<? super T, ?> keyExtractor) {
+
+        Map<Object, Boolean> seen = new ConcurrentHashMap<>();
+        return t -> seen.putIfAbsent(keyExtractor.apply(t), Boolean.TRUE) == null;
+    }
+

然后就可以用它来去重了

+
System.out.println(list.stream().filter(distinctByKey(StudentRecord::getUserId)).collect(Collectors.toList()));
+

看下结果

+
[StudentRecord(id=null, userId=11, courseId=100, score=100), StudentRecord(id=null, userId=12, courseId=100, score=100)]
+

但是说实在的这个功能感觉应该是 stream 默认给实现的

+

使用 java.util.stream.Collectors#groupingBy 对 list 进行分组

这个使用场景还是蛮多的,上面的场景里比如我要对 userId 进行分组,就一行代码就解决了

+
System.out.println(list.stream().collect(Collectors.groupingBy(StudentRecord::getUserId)));
+

结果

{11=[StudentRecord(id=null, userId=11, courseId=100, score=100), StudentRecord(id=null, userId=11, courseId=101, score=100)], 12=[StudentRecord(id=null, userId=12, courseId=100, score=100)]}
+

很方便的变成了以 userId 作为 key,以相同 userIdStudentRecordList 作为 valuemap 结构

]]>
- 生活 + java - 生活 - 糟心事 - 扶梯 - 踩踏 - 安全 - 电瓶车 + java + stream
- 聊聊我刚学会的应用诊断方法 - /2020/05/22/%E8%81%8A%E8%81%8A%E6%88%91%E5%88%9A%E5%AD%A6%E4%BC%9A%E7%9A%84%E5%BA%94%E7%94%A8%E8%AF%8A%E6%96%AD%E6%96%B9%E6%B3%95/ - 因为传说中的出身问题,我以前写的是PHP,在使用 swoole 之前,基本的应用调试手段就是简单粗暴的 var_dump,exit,对于单进程模型的 PHP 也是简单有效,技术栈换成 Java 之后,就变得没那么容易,一方面是需要编译,另一方面是一般都是基于 spring 的项目,如果问题定位比较模糊,那框架层的是很难靠简单的 System.out.println 或者打 log 解决,(PS:我觉得可能我写的东西比较适合从 PHP 这种弱类型语言转到 Java 的小白同学)这个时候一方面因为是 Java,有了非常好用的 idea IDE 的支持,可以各种花式调试,条件断点尤其牛叉,但是又因为有 Spring+Java 的双重原因,有些情况下单步调试可以把手按废掉,这也是我之前一直比较困惑苦逼的点,后来随着慢慢精(jiang)进(you)之后,比如对于一个 oom 的情况,我们可以通过启动参数加上-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=xx/xx 来配置溢出时的堆dump 日志,获取到这个文件后,我们可以通过像 Memory Analyzer (MAT)[https://www.eclipse.org/mat/] (The Eclipse Memory Analyzer is a fast and feature-rich Java heap analyzer that helps you find memory leaks and reduce memory consumption.)来查看诊断问题所在,之前用到的时候是因为有个死循环一直往链表里塞数据,属于比较简单的,后来一次是由于运维进行应用迁移时按默认的统一配置了堆内存大小,导致内存的确不够用,所以溢出了,
今天想说的其实主要是我们的 thread dump,这也是我最近才真正用的一个方法,可能真的很小白了,用过 ide 的单步调试其实都知道会有一个一层层的玩意,比如函数从 A,调用了 B,再从 B 调用了 C,一直往下(因为是 Java,所以还有很多🤦‍♂️),这个其实也是大部分语言的调用模型,利用了栈这个数据结构,通过这个结构我们可以知道代码的调用链路,由于对于一个 spring 应用,在本身框架代码量非常庞大的情况下,外加如果应用代码也是非常多的时候,有时候通过单步调试真的很难短时间定位到问题,需要非常大的耐心和仔细观察,当然不是说完全不行,举个例子当我的应用经常启动需要非常长的时间,因为本身应用有非常多个 bean,比较难说究竟是 bean 的加载的确很慢还是有什么异常原因,这种时候就可以使用 thread dump 了,具体怎么操作呢

如果在idea 中运行或者调试时,可以直接点击这个照相机一样的按钮,右边就会出现了左边会显示所有的线程,右边会显示线程栈,

-
"main@1" prio=5 tid=0x1 nid=NA runnable
-  java.lang.Thread.State: RUNNABLE
-	  at TreeDistance.treeDist(TreeDistance.java:64)
-	  at TreeDistance.treeDist(TreeDistance.java:65)
-	  at TreeDistance.treeDist(TreeDistance.java:65)
-	  at TreeDistance.treeDist(TreeDistance.java:65)
-	  at TreeDistance.main(TreeDistance.java:45)
-

这就是我们主线程的堆栈信息了,main 表示这个线程名,prio表示优先级,默认是 5,tid 表示线程 id,nid 表示对应的系统线程,后面的runnable 表示目前线程状态,因为是被我打了断点,所以是就许状态,然后下面就是对应的线程栈内容了,在TreeDistance类的 treeDist方法中,对应的文件行数是 64 行。
这里使用 thread dump一般也不会是上面我截图代码里的这种代码量很少的,一般是大型项目,有时候跑着跑着没反应,又不知道跑到哪了,特别是一些刚接触的大项目或者需要定位一个大项目的一个疑难问题,一时没思路时,可以使用这个方法,个人觉得非常有帮助。

+ 记录下 phpunit 的入门使用方法 + /2022/10/16/%E8%AE%B0%E5%BD%95%E4%B8%8B-phpunit-%E7%9A%84%E5%85%A5%E9%97%A8%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95/ + 这周开始打算写个比较简单的php工具包,然后顺带学习使用下php的单元测试,通过phpunit还是比较方便的,首先就composer require phpunit/phpunit
安装下 phpunit, 前面包就是通过 composer init 创建,装完依赖后就可以把自动加载代码生成下 composer dump-autoload
目录结构差不多这样

+
.
+├── composer.json
+├── composer.lock
+├── oldfile.txt
+├── phpunit.xml
+├── src
+│   └── Rename.php
+└── tests
+    └── RenameTest.php
+
+2 directories, 6 files
+

src/是源码,tests/是放的单测,比较重要的是phpunit.xml

+
<?xml version="1.0" encoding="UTF-8"?>
+<phpunit colors="true" bootstrap="vendor/autoload.php">
+    <testsuites>
+        <testsuite name="php-rename">
+            <directory>./tests/</directory>
+        </testsuite>
+    </testsuites>
+</phpunit>
+

其中bootstrap就是需要把依赖包的自动加载入口配上,因为这个作为一个package,也会指出命名空间
然后就是testsuite的路径,源码中

+
<?php
+namespace Nicksxs\PhpRename;
+
+class Rename
+{
+    public static function renameSingleFile($file, $newFileName): bool
+    {
+        if(!is_file($file)) {
+            echo "it's not a file";
+            return false;
+        }
+        $fileInfo = pathinfo($file);
+        return rename($file, $fileInfo["dirname"] . DIRECTORY_SEPARATOR . $newFileName . "." . $fileInfo["extension"]);
+    }
+}
+

就是一个简单的重命名
然后test代码是这样,

+
<?php
+
+// require_once 'vendor/autoload.php';
+
+use PHPUnit\Framework\TestCase;
+use Nicksxs\PhpRename\Rename;
+use function PHPUnit\Framework\assertEquals;
+
+class RenameTest extends TestCase 
+{
+    public function setUp() :void
+    {
+        $myfile = fopen(__DIR__ . DIRECTORY_SEPARATOR . "oldfile.txt", "w") or die("Unable to open file!");
+        $txt = "file test1\n";
+        fwrite($myfile, $txt);
+        fclose($myfile);
+    }
+    public function testRename()
+    {
+        Rename::renameSingleFile(__DIR__ . DIRECTORY_SEPARATOR . "oldfile.txt", "newfile");
+        assertEquals(is_file(__DIR__ . DIRECTORY_SEPARATOR . "newfile.txt"), true);
+    }
+
+    protected function tearDown(): void
+    {
+        unlink(__DIR__ . DIRECTORY_SEPARATOR . "newfile.txt");
+    }
+}
+

setUptearDown 就是初始化跟结束清理的,但是注意如果不指明 __DIR__ ,待会的目录就会在执行 vendor/bin/phpunit 下面,
或者也可以指定在一个 tmp/ 目录下
最后就可以通过vendor/bin/phpunit 来执行测试
执行结果

+
❯ vendor/bin/phpunit
+PHPUnit 9.5.25 by Sebastian Bergmann and contributors.
+
+.                                                                   1 / 1 (100%)
+
+Time: 00:00.005, Memory: 6.00 MB
+
+OK (1 test, 1 assertion)
]]>
- Java - Thread dump - 问题排查 - 工具 + php - Java - Thread dump + php
- 聊聊我理解的分布式事务 - /2020/05/17/%E8%81%8A%E8%81%8A%E6%88%91%E7%90%86%E8%A7%A3%E7%9A%84%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/ - 前面说了mysql数据库的事务相关的,那事务是用来干嘛的,这里得补一下ACID,

-
-

ACID,是指数据库管理系统DBMS)在写入或更新资料的过程中,为保证事务(transaction)是正确可靠的,所必须具备的四个特性:原子性(atomicity,或称不可分割性)、一致性(consistency)、隔离性(isolation,又称独立性)、持久性(durability)。

-
-
    -
  • Atomicity(原子性):一个事务(transaction)中的所有操作,或者全部完成,或者全部不完成,不会结束在中间某个环节。事务在执行过程中发生错误,会被回滚(Rollback)到事务开始前的状态,就像这个事务从来没有执行过一样。即,事务不可分割、不可约简。[1]

    -
  • -
  • Consistency(一致性):在事务开始之前和事务结束以后,数据库的完整性没有被破坏。这表示写入的资料必须完全符合所有的预设约束触发器级联回滚等。[1]

    -
  • -
  • Isolation(隔离性):数据库允许多个并发事务同时对其数据进行读写和修改的能力,隔离性可以防止多个事务并发执行时由于交叉执行而导致数据的不一致。事务隔离分为不同级别,包括未提交读(Read uncommitted)、提交读(read committed)、可重复读(repeatable read)和串行化(Serializable)。[1]

    -
  • -
  • Durability(持久性):事务处理结束后,对数据的修改就是永久的,即便系统故障也不会丢失。[1]

    -
  • -
-

在mysql中,借助于MVCC,各种级别的锁,日志等特性来实现了事务的ACID,但是这个我们通常是对于一个数据库服务的定义,常见的情况下我们的数据库随着业务发展也会从单实例变成多实例,组成主从Master-Slave架构,这个时候其实会有一些问题随之出现,比如说主从同步延迟,假如在业务代码中做了读写分离,对于一些敏感度较低的数据其实问题不是很大,只要主从延迟不到特别夸张的地步一般都是可以忍受的,但是对于一些核心的业务数据,比如订单之类的,不能忍受数据不一致,下了单了,付了款了,一刷订单列表,发现这个订单还没支付,甚至订单都没在,这对于用户来讲是恨不能容忍的错误,那么这里就需要一些措施,要不就不读写分离,要不就在 redis 这类缓存下订单,或者支付后加个延时等,这些都是一些补偿措施,并且这也是一个不太切当的例子,比较合适的例子也可以用这个下单来说,一般在电商平台下单会有挺多要做的事情,比如像下面这个图

-

-

下单的是后要冻结核销优惠券,如果账户里有钱要冻结扣除账户里的钱,如果使用了J 豆也一样,可能还有 E 卡,忽略我借用的平台,因为目前一般后台服务化之后,可能每一项都是对应的一个后台服务,我们期望的执行过程是要不全成功,要不就全保持执行前状态,不能是部分扣减核销成功了,部分还不行,所以我们处理这种情况会引入一些通用的方案,第一种叫二阶段提交,

-
-

二阶段提交(英语:Two-phase Commit)是指在计算机网络以及数据库领域内,为了使基于分布式系统架构下的所有节点在进行事务提交时保持一致性而设计的一种算法。通常,二阶段提交也被称为是一种协议(Protocol)。在分布式系统中,每个节点虽然可以知晓自己的操作时成功或者失败,却无法知道其他节点的操作的成功或失败。当一个事务跨越多个节点时,为了保持事务的ACID特性,需要引入一个作为协调者的组件来统一掌控所有节点(称作参与者)的操作结果并最终指示这些节点是否要把操作结果进行真正的提交(比如将更新后的数据写入磁盘等等)。因此,二阶段提交的算法思路可以概括为: 参与者将操作成败通知协调者,再由协调者根据所有参与者的反馈情报决定各参与者是否要提交操作还是中止操作。

-
-

对于上面的例子,我们将整个过程分成两个阶段,首先是提交请求阶段,这个阶段大概需要做的是确定资源存在,锁定资源,可能还要做好失败后回滚的准备,如果这些都 ok 了那么就响应成功,这里其实用到了一个叫事务的协调者的角色,类似于裁判员,每个节点都反馈第一阶段成功后,开始执行第二阶段,也就是实际执行操作,这里也是需要所有节点都反馈成功后才是执行成功,要不就是失败回滚。其实常用的分布式事务的解决方案主要也是基于此方案的改进,比如后面介绍的三阶段提交,有三阶段提交就是因为二阶段提交比较尴尬的几个点,

-
    -
  • 第一是对于两阶段提交,其中默认只有协调者有超时时间,当一个参与者进入卡死状态时只能依赖协调者的超时来结束任务,这中间的时间参与者都是锁定着资源
  • -
  • 第二是协调者的单点问题,万一挂了,参与者就会在那傻等着
  • -
-

所以三阶段提交引入了各节点的超时机制和一个准备阶段,首先是一个can commit阶段,询问下各个节点有没有资源,能不能进行操作,这个阶段不阻塞,只是提前做个摸底,这个阶段其实人畜无害,但是能提高成功率,在这个阶段如果就有节点反馈是不接受的,那就不用执行下去了,也没有锁资源,然后第二阶段是 pre commit ,这个阶段做的事情跟原来的 第一阶段比较类似,然后是第三阶段do commit,其实三阶段提交我个人觉得只是加了个超时,和准备阶段,好像木有根本性的解决的两阶段提交的问题,后续可以再看看一些论文来思考讨论下。

-

2020年05月24日22:11 更新
这里跟朋友讨论了下,好像想通了最核心的一点,对于前面说的那个场景,如果是两阶段提交,如果各个节点中有一个没回应,并且协调者也挂了,这个时候会有什么情况呢,再加一个假设,其实比如这个一阶段其实是检验就失败的,理论上应该大家都释放资源,那么对于这种异常情况,其他的参与者就不知所措了,就傻傻地锁着资源阻塞着,那么三阶段提交的意义就出现了,把第一阶段拆开,那么即使在这个阶段出现上述的异常,即也不会锁定资源,同时参与者也有超时机制,在第二阶段锁定资源出现异常是,其他参与者节点等超时后就自动释放资源了,也就没啥问题了,不过对于那种异常恢复后的一些情况还是没有很好地解决,需要借助 zk 等,后面有空可以讲讲 paxos 跟 raft 等

+ 记录下 phpunit 的入门使用方法之setUp和tearDown + /2022/10/23/%E8%AE%B0%E5%BD%95%E4%B8%8B-phpunit-%E7%9A%84%E5%85%A5%E9%97%A8%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E4%B9%8BsetUp%E5%92%8CtearDown/ + 可能是太久没写单测了,写个单测发现不符合预期,后来验证下才反应过来
我们来看下demo

+
class RenameTest extends TestCase
+{
+    public function setUp(): void
+    {
+        var_dump("setUp");
+    }
+
+    public function test1()
+    {
+        var_dump("test1");
+        assertEquals(1, 1);
+    }
+
+    public function test2()
+    {
+        var_dump("test2");
+        assertEquals(1, 1);
+    }
+
+    protected function tearDown(): void
+    {
+        var_dump("tearDown");
+    }
+}
+

因为我是想写个重命名的小工具,希望通过setUptearDown做一些文件初始化和清理工作,但是我把两个case的初始化跟清理工作写到了单个setUptearDown中,这样就出现了异常的错误
通过上面的示例代码,可以看到执行结果

+
❯ vendor/bin/phpunit
+PHPUnit 9.5.25 by Sebastian Bergmann and contributors.
+
+.string(5) "setUp"
+string(5) "test1"
+string(8) "tearDown"
+.                                                                  2 / 2 (100%)string(5) "setUp"
+string(5) "test2"
+string(8) "tearDown"
+
+
+Time: 00:00.005, Memory: 6.00 MB
+
+OK (2 tests, 2 assertions)
+

其实就是很简单的会在每个test方法前后都执行setUptearDown

]]>
- 分布式事务 - 两阶段提交 - 三阶段提交 + php - 分布式事务 - 两阶段提交 - 三阶段提交 - 2PC - 3PC + php
- 聊聊我的远程工作体验 - /2022/06/26/%E8%81%8A%E8%81%8A%E6%88%91%E7%9A%84%E8%BF%9C%E7%A8%8B%E5%B7%A5%E4%BD%9C%E4%BD%93%E9%AA%8C/ - 发生疫情之后,因为正好是春节假期,假期结束的时候还不具备回工作地点办公的条件,所以史无前例地开始了远程办公,以前对于远程办公的概念还停留在国外一些有“格局”的企业会允许员工远程办公,当然对于远程办公这个事情本身我个人也并不是全然支持的态度,其中涉及到很多方面,首先远程办公并不代表就是不用去办公地点上班,可以在家里摸鱼,相对能够得到较高报酬的能够远程办公的企业需要在远程办公期间能够有高效的产出,并且也需要像在公司办公地点一样,能随时被联系到,第二点是薪资福利之外的社保公积金,除非薪资相比非远程办公的企业高出比较多,不然没法 cover 企业额外缴纳的社保公积金,听说有部分企业也会远程办公点给员工上社保,但是毕竟能做到这点的很少,在允许远程办公的企业数量这个本来就不大的基数里,大概率是少之又少了。
疫情这个特殊原因开始的远程办公体验也算是开了个之前不太容易开的头,也跟我前面说的第一点有关系,大部分的企业也会担心员工远程办公是否有与在公司办公地点办公一样或者比较接近的办公效率。同时我们在开始远程办公的时候也碰到了因为原先没做过相应准备而导致的许多问题,首先基础设施上就有几个问题,第一个是办公电脑的问题,因为整个公司各个部门的工作性质和内容不同,并不是每个部门都是配笔记本的,或者有些部门并不需要想研发一样带上电脑 on call,所以那么使用台式机或者没有将笔记本带回家的则需要自己准备电脑或者让公司邮寄。第二个是远程网络的问题,像我们公司有研发团队平时也已经准备好了 vpn,但是在这种时候我们没准备好的是 vpn 带宽,毕竟平时只会偶尔有需要连一下 vpn 到公司网络,像这样大量员工都需要连接 vpn 进行工作的话,我们的初步体验就是网络卡的不行,一些远程调试工作没法进行,并且还有一些问题是可能只有我们研发会碰到,比如我们的线上测试服务器网络在办公地点是有网络打通的,但是我们在家就没办法连接,还有就是沟通效率相关,因为这是个全国性的情况,线上会议工具原先都是为特定用户使用,并且视频音频实时传输所需要的带宽质量要求也是比较高的,大规模的远程会议沟通需求让这些做线上会议的服务也算是碰上了类似双十一的大考了,我们是先后使用了 zoom,腾讯会议跟钉钉视频会议,使用体验上来说是 zoom 做得相对比较成熟和稳定,不过后面腾讯会议跟钉钉视频会议也开始赶上来。
前面说的这几个点都是得有远程办公经验的公司才会提前做好相应的准备,比如可以做动态网络扩容,能够在需要大量员工连接公司网络的情况下快速响应提升带宽,另一些则是偏软性的,比如如如何在远程办公的条件下控制我们项目进度,如果保证沟通信息是否能像当面沟通那样准确传达,这方面其实我的经验也是边实操边优化的,最开始我们可能为了高效同步消息,会频繁的使用视频会议沟通,这其实并不能解决沟通效率问题,反而打扰了正常的工作,后续我们在特别是做项目过程中就通过相对简单的每日早会和日报机制,将每天的进度与问题风险点进行同步确认,只与相关直接干系人进行视频电话沟通确认,并且要保持一个思维,即远程办公比较适宜的是相对比较成熟的团队,平常工作和合作都已经有默契或者说规则并且能够遵守,在这个前提下,将目光专注于做的事情而不是管到具体的人有没有全天都在高效工作。同样也希望国内的环境能够有更多的远程火种成长起来,让它成为更好的工作方式,WLB!

+ 记录下 redis 的一些使用方法 + /2022/10/30/%E8%AE%B0%E5%BD%95%E4%B8%8B-redis-%E7%9A%84%E4%B8%80%E4%BA%9B%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95/ + 虽然说之前讲解过一些redis源码相关的,但是说实话,redis的各种使用其实有时候有点生疏,或者在一些特定的使用场景中,一些使用方法还是需要学习和记录的

+

获取所有数据

获取list类型的所有元素,可以使用 lrange , 直接用lrange key 0 -1
比如

这里有一些方便的就是可以不用知道长度,直接全返回,或者如果想拿到特定区间的就可以直接指定起止范围,

这样就不用一个个pop出来

+

裁剪list

前面用了lrange取得了一个范围的数据,如果想将数据直接移除,那可以用 ltrim ,

这两个命令就可以从list里取出批量数据,并且能从list里删除这部分数据

]]>
- 生活 + redis - 生活 - 远程办公 + redis
- 聊聊最近平淡的生活之又聊通勤 - /2021/11/07/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB/ - 一直以来过着特别平淡普通的生活,不过大多数人应该都这样吧,也许有些人可以把平凡的生活过得精彩,最简单的说明就是朋友圈吧,看我一年的盆友圈虽然在发,不过大概 90%的都是发发跑步的打卡,偶尔会有稀稀拉拉的点赞,天天上班,也不喜欢发什么状态,觉得没什么人关注,索性不发。

-

只是这么平淡的生活就有一些自己比较心烦纠结的,之前有提到过的交通,最近似乎又发现了一点,就真相总是让人跌破眼镜,以前觉得我可能是胆子比较小,所以会觉得怎么路上这些电瓶都是这么肆无忌惮的往我冲过来,后面慢慢有一种借用电视剧读心神探的概念,安全距离,觉得大部分人跟我一样,骑电瓶车什么的总还是有个安全距离,只是可能这个安全距离对于不同的人不一样,那些骑电瓶车的潜意识里的安全距离是非常短,所以经常会骑车离着你非常近才会刹车,但是这个安全距离理论最近又被推翻了,因为经历过几次电瓶车就是已经跟你有身体接触了,但是没到把人撞倒的程度,似乎这些骑电瓶车的觉得步行的行人在人行道上是空气,蹭一下也无所谓,反正不能挡我的路,总感觉要不是我在前面骑自行车太慢挡着电瓶车,不然他们都能起飞去干掉 F35 解放湾湾了;

-

另一个问题应该是说我们交通规则普及的太少,虽然我们没有路权这个名词概念,但是其实是有这个优先级的,包括像杭州是以公交车在人行道礼让行人闻名的,其实这个文明的行为只限于人行道在直行路中间的,大部分在十字路口,右转的公交车很少会让直行人行道的,前提是直行的绿灯的时候,特别是像公交车这样,车身特别长,右转的时候会有比较大的死角,如果是公交车先转,行人或者自行车很容易被卷进去,非常危险的,私家车就更不用说了,反正右转即使人行道上人非常多要转的也是一秒都不等,所以我自己在开车的时候是尽量在右转的时候等人行道上的行人或者骑车的走完,因为总会觉得我是不是有点双标,骑车走路的时候希望开车的能按规则让我,自己开车的时候又想赶紧开走,所以在开车的时候尽量做到让行车和骑车的。

-

还有个其实是写着写着想起来的,比如我骑车左转的时候,因为我是左转到对角那就到了,跟那些左转后要再直行的不一样,我们应该在学车的时候也学过,超车要从左边超,但是往往那些骑电瓶车的在左转的时候会从我右边超过来再往左边撇过去,如果留的空间大还好,有些电瓶车就是如果车头超过了就不管他的车屁股,如果我不减速,自行车就被刮倒了,可能的确是别人就不是人,只要不把你撞倒就无所谓,反正为了你自己不被撞倒你肯定会让的。

+ 记录下 zookeeper 集群迁移和易错点 + /2022/05/29/%E8%AE%B0%E5%BD%95%E4%B8%8B-zookeeper-%E9%9B%86%E7%BE%A4%E8%BF%81%E7%A7%BB/ + 前阵子做了zk 的集群升级迁移,大概情况是原来是一个三节点的 zk 集群(最小可用
大概是

+
zk1 192.168.2.1
+zk2 192.168.2.2
+zk3 192.168.2.3
+

在 zoo.cfg 中的配置就是如下

+
server.1=192.168.2.1:2888:3888
+server.2=192.168.2.2:2888:3888
+server.3=192.168.2.3:2888:3888
+

加节点

需要将集群迁移到 192.168.2.4(简称 zk4),192.168.2.5(简称 zk5),192.168.2.6(简称 zk6) 这三台机器上,目前新的这三台机器上是没有 zk 部署的, 我们想要的是数据不丢失,那主要考虑的就是滚动升级,这里我其实犯了几个错误,也特别说明下
首先我们想要新的三台机器加进去,所以我在zk4,zk5,zk6 的配置是这样

+
server.1=192.168.2.1:2888:3888
+server.2=192.168.2.2:2888:3888
+server.3=192.168.2.3:2888:3888
+server.4=192.168.2.4:2888:3888
+server.5=192.168.2.5:2888:3888
+server.6=192.168.2.6:2888:3888
+

这样起来发现状态是该节点没起来,
PS:查看当前节点状态可以通过 ./zkServer.sh status 来查看
第一个问题是我需要一个myid文件,标识我是哪个节点,里面的内容就写 456 这样就行了,并且这个文件的路径应该在配置文件中指定的dataDir=数据目录下
第二个问题是困扰我比较久的,我在按上面的配置启动节点后,发现这几个节点都是没起来的,并且有 FastLeaderElection@xxx - Notification time out: 60000 这个报错,一开始以为是网络不通,端口没开这些原因,检查了下都是通的,结果原因其实跟我之前的一个考虑是相关的,当有六个节点的时候,理论上需要有半数以上的节点可用,集群才会是健康的,但是按我这个方式起来,其实我配置了六个节点,但是其中三个都是不可用的(包括自身节点),那么它自然是没办法正常工作,所以这里其实也需要滚动添加,类似于这样
我的 zk4 的配置应该是这样

+
server.1=192.168.2.1:2888:3888
+server.2=192.168.2.2:2888:3888
+server.3=192.168.2.3:2888:3888
+server.4=192.168.2.4:2888:3888
+

然后 zk5 的配置

+
server.1=192.168.2.1:2888:3888
+server.2=192.168.2.2:2888:3888
+server.3=192.168.2.3:2888:3888
+server.4=192.168.2.4:2888:3888
+server.5=192.168.2.5:2888:3888
+

接着 zk6 的配置就可以是全部了

+
server.1=192.168.2.1:2888:3888
+server.2=192.168.2.2:2888:3888
+server.3=192.168.2.3:2888:3888
+server.4=192.168.2.4:2888:3888
+server.5=192.168.2.5:2888:3888
+server.6=192.168.2.6:2888:3888
+

然后为了集群完全更新,就继续在 zk4zk5 加上其他节点,这样我的 6 节点集群就起来了

+

下节点

这里我踩了另外一个坑,或者说没搞清楚两种方式的差别,

+

第一种

首先说说我没采用的第一种方式,(也是比较合理的)其实上面这个集群有个明显的问题,老集群其实还是各自认了一个三节点的集群,其中 zk3 是主节点,对于 zk1,zk2,zk3 来说它们能看到的就只有这三个节点,对于后三个 zk4,zk5,zk6 节点来说他们能连上其余五个节点,可以认为这是个六节点的集群,那么比较合理的操作应该是在老的三节点上把后面三个也都加进来,即每个节点的配置里 server 都有 6 个,然后我再对老的节点进行下线,这里下线需要注意的比较理想的是下一个节点就要修改配置,挪掉下线的节点后进行一遍重启,比如我知道了集群中的 leader 是在 zk3 上面,那么我先将 zk1 和 zk2 下掉,那么在我将 zk1 下线的之后,我将其他的五个节点都删除 zk1 的配置,然后重启,这样其实不是必须,但相对会可靠些,理论上我也可以在下掉 zk1 和 zk2 之后再修改配置重启其余节点。而当只剩下 zk3,zk4,zk5,zk6 四个节点的集群后,并且每个节点里的配置也只有这四个 server,我再下线 zk3 这个 leader 的时候,就会进行选举,再选出新的 leader,因为刚好是三节点,同样保证了最小可用。

+

第二种

这也是我踩坑的一种方式,就是我没有修改原来三节点的配置,并且我一开始以为可以通过下线 zk1,zk2,zk3(进行选举)的方式完成下线,然后再进行重启,但是这种方式就是我上面说的,原来的三节点里我下掉 zk1 还是能够正常运行,但是我下线 zk2 的时候,这个集群就等于是挂了,小于最小可用了,这样三节点都挂了,而且对于新加入的三个节点来说,又回到了最初起不来一样状态,六节点里只有三节点在线,导致整个集群都挂了,所以对于我这样的操作来说,我需要滚动修改启动,在下线 zk1 的时候就需要把 zk4,zk5,zk6 中的 zk1 移除后重启,当然这样唯一的好处就是可以少重启几个,同样继续下线 zk2 的时候,把 zk2 移除掉再重启,其实在移除 zk1 后修改重启后,在下线 zk2 的时候,集群就会重新选举了,因为 zk2 下线的时候,zk3 还是会一起下线。这个是我们需要特别注意的

]]>
- 生活 + java - 生活 - 糟心事 - 规则 - 电瓶车 - 骑车 + zookeeper
- 聊聊最近平淡的生活之《花束般的恋爱》观后感 - /2021/12/31/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB%E4%B9%8B%E3%80%8A%E8%8A%B1%E6%9D%9F%E8%88%AC%E7%9A%84%E6%81%8B%E7%88%B1%E3%80%8B%E8%A7%82%E5%90%8E%E6%84%9F/ - 周末在领导的提议下看了豆瓣的年度榜单,本来感觉没啥心情看的,看到主演有有村架纯就觉得可以看一下,颜值即正义嘛,男主小麦跟女主小娟(后面简称小麦跟小娟)是两个在一次非常偶然的没赶上地铁末班车事件中相识,这里得说下日本这种通宵营业的店好像挺不错的,看着也挺正常,国内估计只有酒吧之类的可以。晚上去的地方是有点暗暗的,好像也有点类似酒吧,旁边有类似于 dj 那种,然后同桌的还有除了男女主的另外一对男女,也是因为没赶上地铁末班车的,但也是陌生人,然后小麦突然看到了有个非常有名的电影人,小娟竟然也认识,然后旁边那对完全不认识,还在那吹自己看过很多电影,比如《肖申克的救赎》,于是男女主都特别鄙夷地看着他们,然后他们又去了另一个有点像泡澡的地方席地而坐,他们发现了自己的鞋子都是一样的,然后在女的去上厕所的时候,小麦暗恋的学姐也来了,然后小麦就去跟学姐他们一起坐了,小娟回来后有点不开心就说去朋友家睡,幸好小麦看出来了(他竟然看出来了,本来以为应该是没填过恋爱很木讷的),就追出去,然后就去了小麦家,到了家小娟发现小麦家的书柜上的书简直就跟她自己家的一模一样,小麦还给小娟吹了头发,一起吃烤饭团,看电影,第二天送小娟上了公交,还约好了一起看木乃伊展,然而并没有交换联系方式,但是他们还是约上了一起看了木乃伊展,在餐馆就出现了片头那一幕的来源,因为餐馆他们想一起听歌,就用有线耳机一人一个耳朵听,但是旁边就有个大叔说“你们是不是不爱音乐,左右耳朵是不一样的,只有一起听才是真正的音乐”这样的话,然后的剧情有点跳,因为是指他们一直在这家餐馆吃饭,中间有他们一起出去玩情节穿插着,也是在这他们确立了关系,可以说主体就是体现了他们非常的合拍和默契,就像一些影评说的,这部电影是说如何跟百分百合拍的人分手,然后就是正常的恋爱开始啪啪啪,一直腻在床上,也没去就业说明会,后面也有讲了一点小麦带着小娟去认识他的朋友,也把小娟介绍给了他们认识,这里算是个小伏笔,后面他们分手也有这里的人的一些关系,接下去的剧情说实话我是不太喜欢的,如果一部八分的电影只是说恋爱被现实打败的话,我觉得在我这是不合格的,但是事实也是这样,小麦其实是有家里的资助,所以后面还是按自己的喜好给一些机构画点插画,小娟则要出去工作,因为小娟家庭观念也是要让她出去有正经工作,用脚指头想也能知道肯定不顺利,然后就是暂时在一家蛋糕店工作,小麦就每天去接小娟,日子过得甜甜蜜蜜,后面小娟在自己的努力下考了个什么资格证,去了一家医院还是什么做前台行政,这中间当然就有父母来见面吃饭了,他们在开始恋爱不久就同居合租了,然后小娟父母就是来说要让她有个正经工作,对男的说的话就是人生就是责任这类的话,而小麦爸爸算是个导火索,因为小麦家里是做烟花生意的,他爸让他就做烟花生意,因为要回老家,并且小麦也不想做,所以就拒绝了,然后他爸就说不给他每个月五万的资助,这也导致了小麦需要去找工作,这个过程也是很辛苦,本来想要年前找好工作,然后事与愿违,后面有一次小娟被同事吐槽怎么从来不去团建,于是她就去了(我以为会拒绝),正在团建的时候小麦给她电话,说找到工作了,是一个创业物流公司这种,这里剧情就是我觉得比较俗套的,小麦各种被虐,累成狗,但是就像小娟爸爸说的话,人生就是责任,所以一直在坚持,但是这样也导致了跟小娟的交流也越来越少,他们原来最爱的漫画,爱玩的游戏,也只剩小娟一个人看,一个人玩,而正是这个时候,小娟说她辞掉了工作,去做一个不是太靠谱的漫画改造的密室逃脱,然后这里其实有一点后面争议很大的,就是这个工作其实是前面小麦介绍给小娟的那些朋友中一个的女朋友介绍的,而在有个剧情就是小娟有一次在这个密室逃脱的老板怀里醒过来,是在 KTV 那样的场景里,这就有很多人觉得小娟是不是出轨了,我觉得其实不那么重要,因为这个离职的事情已经让一切矛盾都摆在眼前,小麦其实是接受这种需要承担责任的生活,也想着要跟小娟结婚,但是小娟似乎还是想要过着那样理想的生活,做自己想做的事情,看自己爱看的漫画,也要小麦能像以前那样一直那么默契的有着相同的爱好,这里的触发点其实还有个是那个小麦的朋友(也就是他女朋友介绍小娟那个不靠谱工作的)的葬礼上,小麦在参加完葬礼后有挺多想倾诉的,而小娟只是想睡了,这个让小麦第二天起来都不想理小娟,只是这里我不太理解,难道这点闹情绪都不能接受吗,所谓的合拍也只是毫无限制的情况下的合拍吧,真正的生活怎么可能如此理想呢,即使没有物质生活的压力,也会有其他的各种压力和限制,在这之后其实小麦想说的是小娟是不是没有想跟自己继续在一起的想法了,而小娟觉得都不说话了,还怎么结婚呢,后面其实导演搞了个小 trick,突然放了异常婚礼,但是不是男女主的,我并不觉得这个桥段很好,在婚礼里男女主都觉得自己想要跟对方说分手了,但是当他们去了最开始一直去的餐馆的时候,一个算是一个现实映照的就是他们一直坐的位子被占了,可能也是导演想通过这个来说明他们已经回不去了,在餐馆交谈的时候,小麦其实是说他们结婚吧,并没有想前面婚礼上预设地要分手,但是小娟放弃了,不想结婚,因为不想过那样的生活了,而小麦觉得可能生活就是那样,不可能一直保持刚恋爱时候的那种感觉,生活就是责任,人生就意味着责任。

-

我的一些观点也在前面说了,恋爱到婚姻,即使物质没问题,经济没问题,也会有各种各样的问题,需要一起去解决,因为结婚就意味着需要相互扶持,而不是各取所需,可能我的要求比较高,后面男女主在分手后还一起住了一段时间,我原来还在想会不会通过这个方式让他们继续去磨合同步,只是我失望了,最后给个打分可能是 5 到 6 分吧,勉强及格,好的影视剧应该源于生活高于生活,这一部可能还比不上生活。

+ 这周末我又在老丈人家打了天小工 + /2020/08/30/%E8%BF%99%E5%91%A8%E6%9C%AB%E6%88%91%E5%8F%88%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E6%89%93%E4%BA%86%E5%A4%A9%E5%B0%8F%E5%B7%A5/ + 因为活实在比较多,也不太好叫大工(活比较杂散),相比上一次我跟 LD 俩人晚起了一点,我真的是只要有事,早上就醒的很早,准备八点出发的,六点就醒了,然后想继续睡就一直做梦🤦‍♂️,差不多八点半多到的丈人家,他们应该已经干了有一会了,我们到了以后就分配给我撬地板的活,上次说的那个敲掉柜子的房间里,还铺着质地还不错的木地板,但是也不想要了,得撬掉重新铺。
拿着撬棍和榔头就上楼去干了,浙江这几天的天气,最高温度一般 38、9,楼上那个房间也没风扇,有了也不能用,都是灰尘,撬了两下,我感觉我体内的水就像真气爆发一样变成汗炸了出来,眼睛全被汗糊住了,可能大部分人不太了解地板是怎么铺的,一般是在地面先铺一层混凝土,混凝土中间嵌进去规则的长条木条,然后真正的地板一块块的都是钉在那个木条上,用那种气枪钉和普通的钉子,并且块跟块之前还有一个木头的槽结构相互耦合,然后边缘的一圈在用较薄的木板将整个木地板封边(这些词都是我现造的),边缘的用的钉子会更多,所以那几下真的很用力,而且撬地板,得蹲下起来,如此反复,对于我这个体重快超过身高的中年人来说的确是非常大的挑战,接下来继续撬了几个,已经有种要虚脱晕倒的感觉了,及时去喝水擦了汗,又歇了一会,为啥一上来就这么拼呢,主要是因为那个房间丈人在干活的时候是直接看得到的🤦‍♂️,后来被 LD 一顿教育,本来就是去帮忙的,又不是专业做这个的,急啥。
喝了水之后,又稍稍歇了一会,就开始继续撬了,本来觉得这个地板撬着好像还行,房间不大,没多久就撬完了,撬完之后喝了点饮料(补充点糖分,早餐吃得少,有点低血糖),然后看到 LD 在撬下面的木条了,这个动作开始了那天最大的经验值收集行动,前面说了这个木条一般是跟混凝土一块铺上去的,但是谁也没想到,这个混凝土铺上去的时候竟然处理的这么随意,根本没考虑跟下面的贴合,所以撬木条的时候直接把木条跟木条中间大块大块的混凝土一块撬起来了,想想那重量,于是我这靠蛮力干活的,就用力把木条带着混凝土一块撬了起来,还沾沾自喜,但是发现结果是撬起来一块之后,体力值瞬间归零,上一篇我也提到了,其实干这类活也是很有技巧性的,但是上次的是我没学会,可能需要花时间学的,但是这次是LD 用她的纤细胳膊教会我的,我在撬的时候,屏住一口气,双手用力,起,大概是吃好几口奶的力气都用出来了,但是 LD 在我休息的时候,慢慢悠悠的,先把撬棍挤到木条或者混凝土跟下层的缝里,然后往下垫一小块混凝土碎石,然后轻轻松松的扳两下,就撬开了,亏我高中的时候引以为傲的物理成绩,作为物理课代表,这么浅显易懂的杠杆原理都完全不会用到生活里,后面在用这个技巧撬的过程中,真的觉得自己蠢到家了,当然在明白了用点杠杆原理之后,撬地板的活就变得慢慢悠悠,悠哉悠哉的了(其实还是很热的,披着毛巾擦眼睛)。
上午的活差不多完了,后面就是把撬出来的混凝土和地板条丢下去,地上铺着不用了的被子,然后就是午饭和午休环节了,午饭换了一家快餐,味道非常可以,下午的活就比较单调了,帮忙清理了上去扔下来的混凝土碎块跟木条,然后稍微打扫了下,老丈人就让我们回家了,接着上次说的,还是觉得比跑步啥的消耗大太多了,那汗流的,一口就能喝完一瓶 500 毫升左右的矿泉水。

]]>
生活 + 运动 + 跑步 + 干活 生活 - 看剧 + 运动 + 减肥 + 跑步 + 干活
- 聊聊最近平淡的生活之看《神探狄仁杰》 - /2021/12/19/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB%E4%B9%8B%E7%9C%8B%E3%80%8A%E7%A5%9E%E6%8E%A2%E7%8B%84%E4%BB%81%E6%9D%B0%E3%80%8B/ - 其实最近看的不止这一部,前面看了《继承者们》,《少年包青天》这些,就一起聊下,其中看《继承者们》算是个人比较喜欢,以前就有这种看剧的习惯,这个跟《一生一世》里任嘉伦说自己看《寻秦记》看了几十遍一样,我看喜欢的剧也基本上会看不止五遍,继承者们是有帅哥美女看,而且印象中剧情也挺甜的,一般情况下最好是已经有点遗忘剧情了,因为我个人觉得看剧分两种,无聊了又心情不太好,可以看些这类轻松又看过的剧,可以不完全专心地看剧,另外有心情专心看的时候,可以看一些需要思考,一些探案类的或者烧脑类。
最近看了《神探狄仁杰》,因为跟前面看的《少年包青天》都是这类古装探案剧,正好有些感想,《少年包青天》算是儿时阴影,本来是不太会去看的,正好有一次有机会跟 LD 一起看了会就也觉得比较有意思就看了下去,不得不说,以前的这些剧还是很不错的,包括剧情和演员,第一部一共是 40 集,看的过程中也发现了大概是五个案子,平均八集一个案子,整体节奏还是比较慢的,但是基本每个案子其实都是构思得很巧妙,很久以前看过但是现在基本不太记得剧情了,每个案子在前面几集的时候基本都猜不到犯案逻辑,但是在看了狄仁杰之后,发现两部剧也有比较大的差别,少年包青天相对来说逻辑性会更强一些,个人主观觉得推理的严谨性更高,可能剧本打磨上更将就一下,而狄仁杰因为要提现他的个人强项,不比少年包青天中有公孙策一时瑜亮的情节,狄仁杰中分工明确,李元芳是个武力担当,曾泰是捧哏的,相对来说是狄仁杰在案子里从始至终地推进案情,有些甚至有些玄乎,会有一些跳脱跟不合理,有些像是狄仁杰的奇遇,不过这些想法是私人的观点,并不是想要评孰优孰劣;第二个感受是不知道是不是年代关系,特别是少年包青天,每个案件的大 boss 基本都不是个完全的坏人,甚至都是比较情有可原的可怜人,因为一些特殊原因,而好几个都是包拯身边的人,这一点其实跟狄仁杰里第一个使团惊魂案件比较类似,虎敬晖也是个人物形象比较丰满的角色,不是个标签化的淡薄形象,跟金木兰的感情和反叛行动在最后都说明的缘由,而且也有随着跟狄仁杰一起办案被其影响感化,最终为了救狄仁杰而被金木兰所杀,只是这样金木兰这个角色就会有些偏执和符号化,当然剧本肯定不是能面面俱到,这样的剧本已经比现在很多流量剧的好很多了。还想到了前阵子看的《指环王》中的白袍萨鲁曼在剧中也是个比较单薄的角色,这样的电影彪炳影史也没办法把个个人物都设计得完整有血有肉,或者说这本来也是应该有侧重点,当然其实我也不觉得指环王就是绝对的最好的,因为相对来说故事情节的复杂性等真的不如西游记,只是在 86 版之后的各种乱七八糟的翻牌和乱拍已经让这个真正的王者神话故事有点力不从心,这里边有部西游记后传是个人还比较喜欢的,虽然武打动作比较鬼畜,但是剧情基本是无敌的,在西游的架构上衍生出来这么完整丰富的故事,人物角色也都有各自的出彩点。
说回狄仁杰,在这之前也看过徐克拍的几部狄仁杰的电影版,第一部刘德华拍得相对完成度更高,故事性也可圈可点,后面几部就是剧情拉胯,靠特效拉回来一点分,虽说这个也是所谓的狄仁杰宇宙的构思在里面但是现在来看基本是跟西游那些差不多,完全没有整体性可言,打一枪换一个地方,演员也没有延续性,剧情也是前后跳脱,没什么关联跟承上启下,导致质量层次不一,更不用谈什么狄仁杰宇宙了,不过这个事情也是难说,原因很多,现在资本都是更加趋利的,一些需要更长久时间才能有回报的投资是很难获得资本青睐,所以只能将重心投给选择一些流量明星,而本来应该将资源投给剧本打磨的基本就没了,再深入说也没意义了,社会现状就是这样。
还有一点感想是,以前的剧里的拍摄环境还是比较惨的,看着一些房子,甚至皇宫都是比较破旧的,地面还是石板这种,想想以前的演员的环境再想想现在的,比如成龙说的,以前他拍剧就是啪摔了,问这条有没有过,过了就直接送医院,而不是现在可能手蹭破点皮就大叫,甚至还有饭圈这些破事。

+ 重看了下《蛮荒记》说说感受 + /2021/10/10/%E9%87%8D%E7%9C%8B%E4%BA%86%E4%B8%8B%E3%80%8A%E8%9B%AE%E8%8D%92%E8%AE%B0%E3%80%8B%E8%AF%B4%E8%AF%B4%E6%84%9F%E5%8F%97/ + 周末把《蛮荒记》看完了,前面是发现微信读书有《搜神记》和《蛮荒记》,但是《搜神记》看了会发现很多都是跳段了,不知道为啥,貌似也没什么少儿不宜的情节,所以就上网找了原版来看,为什么看这个呢,主要还是高中的时候看过,觉得写得很不错,属于那时候的玄幻小说里的独一档,基于山海经创造了一个半架空的大荒宇宙,五族帝尊,人物名都是听说过的,而且又能契合部分历史,整个故事布局非常宏大,并且情节矛盾埋得很深,这里就不对具体情节作介绍了,只是聊聊对书中的一些人物和情节的看法感受。

+

乌丝兰玛是个贯穿两部,甚至在蛮荒的最后还要再搞事情,极其坚定的自以为是的大 boss,其实除了最后被我们的主人公打败,前面几乎就是无所不能,下了一盘无比巨大的棋,主人公都只是其中一个棋子和意外,但是正如很多反派,一直以来都是背着一个信念,并且这个所谓的信念是比较正义的,只是为了这个正义的信念和目标却做了各种丧尽天良的事情,说起来跟灭霸有点像,为了环保哈哈,相对来说感觉姬远玄也只是个最大牌的工具人,或者说是中间人,深爱的妹妹冰夷也意外被蚩尤怒拿一血。

+

但是中间那个赤霞仙子一定要给烈烟石的心上锁,导致最后认不出来蚩尤,也间接导致了蚩尤被杀,如果不考虑最后情节或者推动故事的需求,这个还是我很讨厌的,有点类似于《驴得水》里那个校长,看着貌似是个正常的,做的事情也是正派,但是其实是害人不浅,即使南阳仙子因此被抛进了火山,那也是有贱人在那挑食,并且赤松子是赤飚怒的儿子,烈烟石跟蚩尤又没这层关系,就很像倚天屠龙记里的灭绝师太和极品家丁里的那个玉德仙坊的院主,后者还好一些,前者几乎就是导致周芷若一生悲剧的始作俑者,自己偏执的善恶观,还要给徒弟灌输如此恶毒的理念和让她立下像紧箍咒似的誓言,在人一生中本来就有很多不能如愿的,又被最亲最尊敬的人下了这样的紧箍咒,人生的不幸也加倍了。

+

似乎习惯了总要有个总结的,想说的应该是我觉得这些剧也好,书也好,我觉得最坏的人可能是大部分人眼中的一些次要人物,或者至少大 boss 才是最坏的人,当然这个坏也不是严格的二分法,只是我觉得最让我觉得负面的人物,这些人可能看起来情景出现的不多,只是说了很少的话,做了很少的事,但是在我看来却做了最大的恶。

]]>
生活 生活 - 看剧 + 看书
- 聊聊最近平淡的生活之看看老剧 - /2021/11/21/%E8%81%8A%E8%81%8A%E6%9C%80%E8%BF%91%E5%B9%B3%E6%B7%A1%E7%9A%84%E7%94%9F%E6%B4%BB%E4%B9%8B%E7%9C%8B%E7%9C%8B%E8%80%81%E5%89%A7/ - 最近因为也没什么好看的新剧和综艺所以就看看一些以前看过的老剧,我是个非常念旧的人吧,很多剧都会反反复复地看,一方面之前看过觉得好看的的确是一直记着,还有就是平时工作完了回来就想能放松下,剧情太纠结的,太烧脑的都不喜欢,也就是我常挂在口头的不喜欢看费脑子的剧,跟我不喜欢狼人杀的原因也类似。

-

前面其实是看的太阳的后裔,跟 LD 一起看的,之前其实算是看过一点,但是没有看的很完整,并且很多剧情也忘了,只是这个我我可能看得更少一点,因为最开始的时候觉得男主应该是男二,可能对长得这样的男主并且是这样的人设有点失望,感觉不是特别像个特种兵,但是由于本来也比较火,而且 LD 比较喜欢就从这个开始看了,有两个点是比较想说的

-

韩剧虽然被吐槽的很多,但是很多剧的质量,情节把控还是优于目前非常多国内剧的,相对来说剧情发展的前后承接不是那么硬凹出来的,而且人设都立得住,这个是非常重要的,很多国内剧怎么说呢,就是当爹的看起来就比儿子没大几岁,三四十岁的人去演一个十岁出头的小姑娘,除非容貌异常,比如刘晓庆这种,不然就会觉得导演在把我们观众当傻子。瞬间就没有想看下去的欲望了。

-

再一点就是情节是大众都能接受度比较高的,现在有很多普遍会找一些新奇的视角,比如卖腐,想某某令,两部都叫某某令,这其实是一个点,延伸出去就是跟前面说的一点有点类似,xx 老祖,人看着就二三十,叫 xx 老祖,(喜欢的人轻喷哈)然后名字有一堆,同一个人物一会叫这个名字,一会又叫另一个名字,然后一堆死表情。

-

因为今天有个特殊的事情发生,所以简短的写(shui)一篇了

+ 闲聊下乘公交的用户体验 + /2021/02/28/%E9%97%B2%E8%81%8A%E4%B8%8B%E4%B9%98%E5%85%AC%E4%BA%A4%E7%9A%84%E7%94%A8%E6%88%B7%E4%BD%93%E9%AA%8C/ + 新年开工开车来杭州,因为没有车位加限行今天来就没开车来了,从东站做公交回住的地方,这班神奇的车我之前也吐槽过了,有神奇的乘客和神奇的司机,因为基本上这班车是从我毕业就开始乘了,所以也算是比较熟悉了,以前总体感觉不太好的是乘坐时间太长了,不过这个也不能怪车,是我自己住得远(离东站),后来住到了现在的地方,也算是直达,并且 LD 比较喜欢直达的,不爱更快却要换乘的地铁,所以坐的频率比较高,也说过前面那些比较气人的乘客,自己不好好戴口罩,反而联合一起上车的乘客诽谤司机,说他要吃人了要打人了,也正是这个司机比较有意思,上车就让戴好口罩,还给大家讲,哪里哪里又有疫情了,我觉得其实这个司机还是不错的,特殊时期,对于这种公共交通,这样的确是比较负责任的做法,只是说话方式,语气这个因人而异,他也不是来伺候人的,而且这么一大车人,说了一遍不行,再说一遍,三遍以上了,嗓门大一点也属于正常的人的行为。
还是说回今天要说的,今天这位司机我看着跟前面说的那位有点像,因为上车的时候比较暗没看清脸,主要原因是这位司机开车比较猛,比较急,然后车上因为这个时间点,比较多大学开学来的学生,拎着个行李箱,一开始是前面已经都站满了人,后面还有很多空位,因为后面没地方放行李箱,就因为这样前面站着的有几个就在说司机开慢点,结果司机貌似也没听进去,还是我行我素,过了会又有人说司机开稳一点,就在这个人说完没一会,停在红绿灯路口的车里,就有人问有没有垃圾桶,接着又让司机开门,说晕车太严重了,要下车,司机开了门,我望出去两个妹子下了车,好像在路边草丛吐了,前面开门下车的时候就有人说她们第一次来杭州,可能有点责怪司机开的不稳,也影响了杭州交通给新来杭州的人的感受,说完了事情经过,其实我有蛮多感触,对于杭州公交司机,我大概是大一来了没多久,陪室友去文三路买电脑就晕车,下车的时候在公交车站吐了,可能是从大学开始缺乏锻炼,又饮食不规律,更加容易晕车,大部分晕车我觉得都是我自己的原因,有时候是上车前吃太多了,或者早上起太早,没睡好,没吃东西,反正自己也是挺多原因的,说到司机的原因的话,我觉得可能这班车还算好的,最让我难受的还是上下班高峰的时候,因为经过的那条路是比较重要的主干道,路比较老比较窄,并且还有很多人行道,所以经常一脚油门连带着一脚刹车,真的很难受,这种算是我觉得真的是公交体验比较差的一点,但是这一点呢也不能完全怪公交司机,杭州的路政规划是很垃圾,没看错,是垃圾,所以总体结论是公交还行,主要是路政规划就是垃圾,包括这条主干道这么多人行道,并且两边都是老小区,老年人在上班高峰可能要买菜送娃或者其他事情,在通畅的情况下可能只需要六分钟的路程,有时候因为各种原因,半小时都开不完,扯开去一点,杭州的路,核心的高速说封就封,本来是高架可以直接通到城西,结果没造,到了路本已经很拥挤的时候开始来造隧道,各种破坏,隧道接高架的地方,无尽的加塞,对于我这样的小白司机来说真的是太恶心了,所以我一直想说的就是杭州这个地方房价领先基础设施十年,地铁,高架,高速通通不行,地面道路就更不行了。
总结下,其实杭州的真正的公交体验差,应该还是路造成的,对于前面的那两位妹子来说,有可能是她们来自于公交司机都是开的特别稳,并且路况也很好的地方,也或者是我被虐习惯了🤦‍♂️

]]>
生活 + 公交 生活 - 看剧 + 开车 + 加塞 + 糟心事 + 规则 + 公交 + 路政规划 + 基础设施 + 杭州 + 高速
- 聊聊给亲戚朋友的老电脑重装系统那些事儿 - /2021/05/09/%E8%81%8A%E8%81%8A%E7%BB%99%E4%BA%B2%E6%88%9A%E6%9C%8B%E5%8F%8B%E7%9A%84%E8%80%81%E7%94%B5%E8%84%91%E9%87%8D%E8%A3%85%E7%B3%BB%E7%BB%9F%E9%82%A3%E4%BA%9B%E4%BA%8B%E5%84%BF/ - 前面这个五一回去之前,LD 姐姐跟我说电脑很卡了,想让我重装系统,问了下 LD 可能是那个 09 年买的笔记本,想想有点害怕[捂脸],前年有一次好像让我帮忙装了她同事的一个三星的笔记本,本着一些系统洁癖,所以就从开始找纯净版的 win7 家庭版,因为之前那些本基本都自带 win7 的家庭版,而且把激活码就贴在机器下面,然后从三星官网去找官方驱动,还好这个机型的驱动还在,先做了系统镜像,其实感觉这种情况需要两个 U 盘,一个 U 盘装系统作为安装启动盘,一个放驱动,毕竟不是专业装系统的,然后因为官方驱动需要一个个下载一个个安装,然后驱动文件下载的地方还没标明是 32 位还是 64 位的,结果还被 LD 姐姐催着,一直问好没好,略尴尬,索性还是找个一键安装的

-

这次甚至更夸张,上次还让带回去,我准备好了系统镜像啥的,第二天装,这次直接带了两个老旧笔记本过来说让当天就装好,感觉有点像被当修电脑的使,又说这些电脑其实都不用了的,都是为了她们当医生的要每年看会课,然后只能用电脑浏览器看,结果都在用 360 浏览器,真的是万恶的 360,其实以前对 360 没啥坏印象,毕竟以前也经常用,只是对于这些老电脑,360 全家桶真的就是装了就废了,2G 的内存,开机就开着 360 安全卫士,360 杀毒,有一个还装了腾讯电脑管家,然后腾讯视频跟爱奇艺也开机启动了,然后还打开 360 浏览器看课,就算再好的系统也吃不消这么用,重装了系统,还是这么装这些东西,也是分分钟变卡,可惜他们都没啥这类概念。

-

对于他们要看的课,更搞笑的是,明明在页面上注明了说要使用 IE 浏览器,结果他们都在用 360 浏览器看,但是这个也不能完全怪他们,因为实在是现在的 IE 啥的也有开始不兼容 flash 的配置,需要开启兼容配置,但是只要开启了之后就可以直接用 IE 看,比 360 靠谱很多, 资源占用也比较少,360 估计是基于 chromium 加了很多内置的插件,本身 chromium 也是内存大户,但是说这些其实他们也不懂,总觉得找我免费装下系统能撑一段时间,反正对我来说也应该很简单(他们觉得),实际上开始工作以后,我自己想装个双系统都是上淘宝买别人的服务装的,台式机更是几年没动过系统了,因为要重装一大堆软件,数据备份啥的,还有驱动什么的,分区格式,那些驱动精灵啥的也都是越来越坑,一装就给你带一堆垃圾软件。

-

感悟是,总觉得学计算机的就应该会装系统,会修电脑,之前亲戚还拿着一个完全开不起来的笔记本让我来修,这真的是,我说可以找官方维修的,结果我说我搞不定,她直接觉得是修不好了,直接电脑都懒得拿回去了,后面又一次反复解释了才明白,另外就是 360 全家桶,别说老电脑了,新机器都不太吃得消。

+ 闲话篇-也算碰到了为老不尊和坏人变老了的典型案例 + /2022/05/22/%E9%97%B2%E8%AF%9D%E7%AF%87-%E4%B9%9F%E7%AE%97%E7%A2%B0%E5%88%B0%E4%BA%86%E4%B8%BA%E8%80%81%E4%B8%8D%E5%B0%8A%E5%92%8C%E5%9D%8F%E4%BA%BA%E5%8F%98%E8%80%81%E4%BA%86%E7%9A%84%E5%85%B8%E5%9E%8B%E6%A1%88%E4%BE%8B/ + 在目前的房子也差不多租了四五年了,楼下邻居换了两拨了,我们这栋楼装修了不知道多少次,因为是学区的原因,房子交易的频率还是比较高的,不过比较神奇的我们对门的没换过,而且一直也没什么交集(除了后面说的水管爆裂),就进出的时候偶尔看到应该是住着一对老夫妻,感觉年纪也有个七八十了。

+

对对面这户人家的印象,就是对面的老头子经常是我出门上班去了他回来,看着他颤颤巍巍地走楼梯,我看到了都靠边走,而且有几次还听见好像是他儿子在说他,”年假这么大了,还是少出去吧”,说实话除了这次的事情,之前就有一次水管阀门爆裂了,算是有点交集,那次大概是去年冬天,天气已经很冷了,我们周日下午回来看到楼梯有点湿,但是没什么特别的异常就没怎么注意,到晚上洗完澡,楼下的邻居就来敲门,说我们门外的水表那一直在流水,出门一看真的是懵了,外面水表那在哗哗哗地流水,导致楼梯那就跟水帘洞一样,仔细看看是对面家的水表阀门那在漏水,我只能先用塑料袋包一下,然后大冬天(刚洗完澡)穿着凉拖跑下去找物业保安,走到一楼的时候发现水一直流到一楼了,楼梯上都是水流下来,五楼那是最惨的,感觉门框周边都浸透了,五楼的也是态度比较差的让我一定要把水弄好了,但是前面也说了谁是从对门那户的水表阀那出来的,理论上应该让对面的处理,结果我敲门敲了半天对面都没反应,想着我放着不管也不太好,就去找了物业保安,保安上来看了只能先把总阀关了,我也打电话给维修自来水管的,自来水公司的人过了会也是真的来修了,我那会是挺怕不来修,自来水公司的师傅到了以后拿开一看是对面那户的有个阀门估计是自己换上去的,跟我们这的完全不一样,看上去就比较劣质,师傅也挺气的,大晚上被叫过来,我又尝试着去敲门也还是没人应,也没办法,对面老人家我敲太响到时候出来说我吓到他们啥的,第二天去说也没现场了。

+

前面的这件事是个重要铺垫,前几天 LD 下班后把厨余垃圾套好袋子放在门口,打算等我下班了因为要去做核酸(hz 48 小时核酸)顺便带下去,结果到了七点多,说对面的老太太在那疯狂砸门了,LD 被吓到了不敢开门,老太太在外面一边砸门一边骂,“你们年轻人怎么素质这么差”(他们家也经常在门口放垃圾,我们刚来住的时候在楼梯转角他们就放这个废弃的洗衣机,每次走楼梯带点东西都要小心翼翼地走,不然都过不去,然后我赶紧赶回去,结果她听到我回家了,还特意开门继续骂,“你们年轻人怎么素质这么差,垃圾放在这里”,我说我们刚才放在这,打算待会做核酸的时候去扔掉,结果他们家老头,都已经没了牙齿,在那瞪大眼睛说,“你们早上就放在这了的,”我说是LD 刚才下班了放的,争论了一会,我说这个事情我们门口放了垃圾,这会我就去扔掉了,但是你们家老太太这么砸门总不太好,像之前门口水管爆掉了,我敲了门没人应,我也没要砸门一定把你们叫醒,结果老头老太说我们的水管从来没换过,不可能破的(其实到这,再往后说就没意思了,跟这么不要脸的人说多了也只是瞎扯),一会又回到这个垃圾的问题,那个老头说“你们昨天就放在这里了的”,睁着眼说瞎话可真是 666,感觉不是老太太拦着点他马上就要冲上来揍我了一样,事后我想想,这种情况我大概只能躺地上装死了,当这个事情发生之前我真的快把前面说的事情(水管阀坏了)给忘了,虽然这是理论上不该我来处理,除非是老头老太太请求我帮忙,这事后面我也从没说起过,本来完全没交集,对他们的是怎么样的人也没概念,总觉得年纪大了可能还比较心宽和蔼点,结果没想到就是一典型的坏人变老了,我说你们这么砸门,我老婆都被吓得不敢开门,结果对面老头老太太的儿子也出来了说,“我们就是敲下门,我母亲是机关单位退休的,所以肯定不会敲门很大声的,你老婆觉得吓到了是你们人生观价值观有问题”,听到这话我差点笑出来,连着两个可笑至极的脑残逻辑,无语他妈给无语开门,无语到家了。对门家我们之前有个印象就是因为我们都是顶楼,这边老小区以前都是把前后阳台包进来的,然后社区就来咨询大家的意见是不是统一把包进来的违建拆掉,还特地上来六楼跟他们说,结果对面的老头就说,“我要去住建局投诉你们”,本来这个事情是违法的,但是社区的意思也是征求各位业主的意见,结果感觉是社区上门强拆了一样,为老不尊,坏人变老了的典范了。

]]>
生活 生活 - 装电脑 - 老电脑 - 360 全家桶 - 修电脑的
- 聊聊那些加塞狗 - /2021/01/17/%E8%81%8A%E8%81%8A%E9%82%A3%E4%BA%9B%E5%8A%A0%E5%A1%9E%E7%8B%97/ - 今天真的是被气得不轻,情况是碰到一个有 70 多秒的直行红灯,然后直行就排了很长的队,但是左转车道没车,就有好几辆车占着左转车道,准备往直行车道插队加塞,一般这种加塞的,会挑个不太计较的,如果前面一辆不让的话就再等等,我因为赶着回家,就不想让,结果那辆车几次车头直接往里冲,当时怒气值基本已经蓄满了,我真的是分毫都不想让,如果路上都是让着这种人的,那么这种情况只会越来越严重,我理解的这种心态,就赌你怕麻烦,多一事不如少一事,结果就是每次都能顺利插队加塞,其实延伸到我们社会中的种种实质性的排队或者等同于排队的情况,都已经有这种惯有思维,一方面这种不符合规则,可能在严重程度上容易被很多人所忽视,基本上已经被很多人当成是“合理”行为,另一方面,对于这些“微小”的违规行为,本身管理层面也基本没有想要管的意思,就更多的成为了纵容这些行为的导火索,并且大多数人都是想着如果不让,发生点小剐小蹭的要浪费很多时间精力来处理,甚至会觉得会被别人觉得自己太小气等等,诸多内外成本结合起来,会真的去硬刚的可能少之又少了,这样也就让更多的人觉得这种行为是被默许的,再举个非常小的例子,以我们公司疫情期间的盒饭发放为例,有两个比较“有意思”的事情,第一个就是因为疫情,本来是让排队要间隔一米,但是可能除了我比较怕死会跟前面的人保持点距离基本没别人会不挨着前面的人,甚至我跟我前面的人保持点距离,后面的同学会推着我让我上去;第二个是关于拿饭,这么多人排着队拿饭,然后有部分同学,一个人拿好几份,帮组里其他人的都拿了,有些甚至一个人拿十份,假如这个盒饭发放是说明了可以按部门直接全领了那就没啥问题,但是当时的状况是个人排队领自己的那一份,如果一个同学直接帮着组里十几个人都拿了,后面排队的人是什么感受呢,甚至有些是看到队伍排长了,就找队伍里自己认识的比较靠前的人说你帮我也拿一份,其实作为我这个比较按规矩办事的“愣头青”来说,我是比较不能接受这两件小事里的行为的,再往下说可能就有点偏激了,先说到这~

+ 闲话篇-路遇神逻辑骑车带娃爹 + /2022/05/08/%E9%97%B2%E8%AF%9D%E7%AF%87-%E8%B7%AF%E9%81%87%E7%A5%9E%E9%80%BB%E8%BE%91%E9%AA%91%E8%BD%A6%E5%B8%A6%E5%A8%83%E7%88%B9/ + 周末吃完中饭去买菜,没想到碰到这个神(zhi)奇(zhang)大哥带着两个娃,在非机动车道虽然没有像上班高峰车那么多,但是有送外卖,各种叮咚买菜和普通像我这样骑电驴,骑自行车的人,我的情况可能还特殊点,前面说过电驴买了以后本来网上找到过怎么解除限速的,后面看了下,限速 25 虽然慢,但还是对安全很有好处的,我上下班也不赶这个时间,所以就没解除,其他路上的电瓶车包括这位带娃的大哥可能有不少都不符合国标的限速要求或者解除了限速,这些算是铺垫。

+

那位大哥,骑电瓶车一前一后带着两个娃,在非机动车道靠右边行驶,肉眼估计是在我右前方大概十几米的距离,不知道是小孩不舒服了还是啥,想下来还是就在跟他爹玩耍,我算是比较谨慎骑车的,看到这种情况已经准备好捏刹车了,但是也没想到这个娃这么神,差不多能并排四五辆电瓶车的非机动车道,直接从他爸的车下来跑到了非机动车道的最左边,前面我铺垫了电瓶车 25 码,换算一下大概 1 秒能前进 7 米,我是直接把刹车捏死了,才勉强避免撞上这个小孩,并且当时的情况本来我左后方有另一个大哥是想从我左边超过去,因为我刹车了他也赶紧刹车。

+

现在我们做个假设,假如我刹车不够及时,撞上了这个小孩,会是啥后果呢,小孩人没事还好,即使没事也免不了大吵一架,说我骑车不看前面,然后去医院做检查,负责医药费,如果是有点啥伤了,这事估计是没完了,我是心里一阵后怕。

+

说实话是张口快骂人了,“怎么带小孩的”,结果那大哥竟然还是那套话术,“你们骑车不会慢点的啊,说一下就好了啊,用得着这么说吗”,我是真的被这位的逻辑给打败了,还好是想超我车那大哥刹住车了,他要是刹不住呢,把我撞了我怪谁?这不是追尾事件,是 zhizhang 大哥的小孩鬼探头,下个电瓶车就下车,下来就往另一边跑,我们尽力刹车没撞到这小孩,说他没管好小孩这大哥还觉得自己委屈了?结果我倒是想骂脏话了,结果我左后方的的大哥就跟他说“你这么教小孩教得真好,你真厉害”,果然在中国还是不能好好说话,阴阳怪气才是王道,我前面也说了真的是后怕,为什么我从头到尾都没有说这个小孩不对,我是觉得这个年纪的小孩(估摸着也就五六岁或者再大个一两岁)这种安全意识应该是要父母和学校老师一起教育培养的,在路上不能这么随便乱跑,即使别人撞了他,别人有责任,那小孩的生理伤痛和心理伤害,父母也肯定要心疼的吧,另外对我们来说前面也说了,真的撞到了我们也是很难受的,这个社会里真的是自私自利的人太多了,平时让外卖小哥送爬下楼梯送上来外卖都觉得挺抱歉的,每次的接过来都说谢谢,人家也不容易,换在有些人身上大概会觉得自己花了钱就是大爷,给我送上来是必须的。

]]>
生活 - 开车 生活 - 开车 - 加塞 - 糟心事 - 规则
- 聊聊部分公交车的设计bug - /2021/12/05/%E8%81%8A%E8%81%8A%E9%83%A8%E5%88%86%E5%85%AC%E4%BA%A4%E8%BD%A6%E7%9A%84%E8%AE%BE%E8%AE%A1bug/ - 今天惯例坐公交回住的地方,不小心撞了头,原因是我们想坐倒数第二排,然后LD 走在我后面,我就走到最后一排中间等着,但是最后一排是高一截的,等 LD 坐进去以后,我就往前走,结果撞到了车顶的扶手杆子的一端,差点撞昏了去,这里我觉得其实杆子长度应该短一点,不然从最后一排出来,还是有比较大概率因为没注意看而撞到头,特别是没注意看的情况,发力其实会比较大,一头撞上就会像我这样,眼前一黑,又痛得要死。
还有一点就是座位设计了,先来看个图

图里大致画了两条线,因为可能是轮胎还是什么原因,后排中间会有那么大的突起,但是看两条红线可以发现,靠近过道的座位边缘跟地面突起的边缘不是一样宽的,这样导致的结果就是坐着的时候有一个脚没地儿搁,要不就得侧着斜着坐,或者就是一个脚悬空,短程的可能还好,路程远一点还是比较难受的,特别是像我现在这样,大腿外侧有点难受的情况,就会更难受。
虽然说这两个点,基本是屁用没有,但是我也是在自己这个博客说说,也当是个树洞了。

+ 难得的大扫除 + /2022/04/10/%E9%9A%BE%E5%BE%97%E7%9A%84%E5%A4%A7%E6%89%AB%E9%99%A4/ + 因为房东要来续签合同,记得之前她说要来看看,后来一直都没来成,一方面我们没打扫过也不想被看到,小房子东西从搬进来以后越来越多,虽然不是脏乱差,但也觉得有点不满意干净状态,这里不得不感叹房东家的有钱程度,买了房子自己都没进房子看过,买来只是为了个学籍,去年前房东把房子卖给新房东后,我们还是比较担心会要换房子了,这里其实是个我们在乎的优点略大于缺点的小房子,面积比较小,但是交通便利以及上下班通勤,周边配套也还不错,有个比较大的菜市场,虽然不常去,因为不太会挑不会还价,还是主要去附近一公里左右的超市,可以安静地挑菜,但是说实在的菜场的菜还是比超市新鲜一些。
大扫除说实在的住在这边以后就没有一次真正意义上的大扫除,因为平时也有在正常打扫,只有偶尔的厨房煤气灶和厕所专门清理下,平时扫地拖地都有做,但是因为说实在的这房子也比较老了,地板什么的都有明显的老化,表面上的油漆都已经被磨损掉了,一些污渍很难拖干净,而且包括厨房和厕所的瓷砖都是纹路特别多,加上磨损,基本是污渍很多,特别是厨房的,又有油渍,我们搬进来的时候厨房的地就已经不太干净了,还有一点就是虽然不是在乡下的房子,但是旁边有两条主干道,一般只要开着窗没几天就灰尘积起来了,公司的电脑在家两天不到就一层灰,而且有些灰在地上时间久一点就会变成那种棉絮状的,看起来就会觉得更脏,并且地板我们平时就是扫一下,然后拖一下没明显的脏东西跟大灰尘就好了,有一些脏的就很难拖干净。
这次的算是整体的大扫除,把柜子,桌子,茶几台,窗边的灰尘都要擦掉,有一些角落还是有蛮多灰尘,当然特别难受的就是电脑那些接口,线缆上的,都杂糅在一块,如果要全都解开了理顺了还是比较麻烦,并且得断电,所以还是尽力清理,但没有全弄开了(我承认我是在偷懒,这里得说下清理了键盘,键盘之前都是放着用,也没盖住,按键缝里就很容易积灰也很难清理,这次索性直接把键全拔了,但是里面的清理也还是挺麻烦,因为不是平板一块,而且还有小孔,有些缝隙也比较难擦进去,只能慢慢地用牙线棒裹着抹布还有棉签擦一下,然后把键帽用洗手液什么的都擦一下洗洗干净,最后晾干了装好感觉就是一把新键盘了,后面主要是拖地了,这次最神奇的就是这个拖地,本来我就跟 LD 吹牛说拖地我是专业的,从小拖到大,有些地板缝边上的污渍,我又是用力来回拖,再用脚踩着拖,还是能把一些原来以为拖不掉的污渍给拖干净了,但是后来的厨房就比较难,用洗洁精来回拖感觉一点都起不来,可能是污渍积了太久了,一开始都想要放弃了,就打算拖干就好了,后来突然看到旁边有个洗衣服的板刷,结果竟然能刷起来,这样就停不下来了,说累是真的非常累,感觉刷一块瓷砖就要休息一会,但是整体刷完之后就是焕然一新的赶脚,简直太有成就感了。

]]>
生活 生活 - 公交 - 杭州 + 大扫除
- 聊聊这次换车牌及其他 - /2022/02/20/%E8%81%8A%E8%81%8A%E8%BF%99%E6%AC%A1%E6%8D%A2%E8%BD%A6%E7%89%8C%E5%8F%8A%E5%85%B6%E4%BB%96/ - 去年 8 月份运气比较好,摇到了车牌,本来其实应该很早就开始摇的,前面第一次换工作没注意社保断缴了一个月,也是大意失荆州,后面到了 17 年社保满两年了,好像只摇了一次,还是就没摇过,有点忘了,好像是什么原因导致那次也没摇成功,但是后面暂住证就取消了,需要居住证,居住证又要一年及以上的租房合同,并且那会买车以后也不怎么开,住的地方车位还好,但是公司车位一个月要两三千,甚至还是打车上下班比较实惠,所以也没放在心上,后面摇到房以后,也觉得应该准备起来车子,就开始办了居住证,居住证其实还可以用劳动合同,而且办起来也挺快,大概是三四月份开始摇,到 8 月份的某一天收到短信说摇到了,一开始还挺开心,不过心里抱着也不怎么开,也没怎么大放在心上,不过这里有一点就是我把那个照片直接发出去,上面有着我的身份证号,被 LD 说了一顿,以后也应该小心点,但是后面不知道是哪里看了下,说杭州上牌已经需要国六标准的车了,瞬间感觉是空欢喜了,可是有同事说是可以的,我就又打了官方的电话,结果说可以的,要先转籍,然后再做上牌。

-

转籍其实是很方便的,在交警 12123 App 上申请就行了,在转籍以后,需要去实地验车,验车的话,在支付宝-杭州交警生活号里进行预约,找就近的车管所就好,需要准备一些东西,首先是行驶证,机动车登记证书,身份证,居住证,还有车上需要准备的东西是要有三脚架和反光背心,反光背心是最近几个月开始要的,问过之前去验车的只需要三脚架就好了,预约好了的话建议是赶上班时间越早越好,不然过去排队时间要很久,而且人多了以后会很乱,各种插队,而且有很多都是汽车销售,一个销售带着一堆车,我们附近那个进去的小路没一会就堵满车,进去需要先排队,然后扫码,接着交资料,这两个都排着队,如果去晚了就要排很久的队,交完资料才是排队等验车,验车就是打开引擎盖,有人会帮忙拓印发动机车架号,然后验车的会各种检查一下,车里面,还有后备箱,建议车内整理干净点,后备箱不要放杂物,检验完了之后,需要把三脚架跟反光背心放在后备箱盖子上,人在旁边拍个照,然后需要把车牌遮住后再拍个车子的照片,再之后就是去把车牌卸了,这个多吐槽下,那边应该是本来那边师傅帮忙卸车牌,结果他就说是教我们拆,虽然也不算难,但是不排除师傅有在偷懒,完了之后就是把旧车牌交回去,然后需要在手机上(警察叔叔 App)提交各种资料,包括身份证,行驶证,机动车登记证书,提交了之后就等寄车牌过来了。

-

这里面缺失的一个环节就是选号了,选号杭州有两个方式,一种就是根据交管局定期发布的选号号段,可以自定义拼 20 个号,在手机上的交警 12123 App 上可以三个一组的形式提交,如果有没被选走的,就可以预选到这个了,但是这种就是也需要有一定策略,最新出的号段能选中的概率大一点,然后数字全是 8,6 这种的肯定会一早就被选走,然后如果跟我一样可以提前选下尾号,因为尾号数字影响限号,我比较有可能周五回家,所以得避开 5,0 的,第二种就是 50 选一跟以前新车选号一样,就不介绍了。第一种选中了以后可以在前面交还旧车牌的时候填上等着寄过来了,因为我是第一种选中的,第二种也可以在手机上选,也在可以在交还车牌的时候现场选。

-

总体过程其实是 LD 在各种查资料跟帮我跑来跑去,要不是 LD,估计在交管局那边我就懵逼了,各种插队,而且车子开着车子,也不能随便跑,所以建议办这个的时候有个人一起比较好。

+ 聊一下 RocketMQ 的消息存储之 MMAP + /2021/09/04/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8/ + 这是个很大的话题了,可能会分成两部分说,第一部分就是所谓的零拷贝 ( zero-copy ),这一块其实也不新鲜,我对零拷贝的概念主要来自这篇文章,个人感觉写得非常好,在 rocketmq 中,最大的一块存储就是消息存储,也就是 CommitLog ,当然还有 ConsumeQueue 和 IndexFile,以及其他一些文件,CommitLog 的存储是以一个 1G 大小的文件作为存储单位,写完了就再建一个,那么如何提高这 1G 文件的读写效率呢,就是 mmap,传统意义的读写文件,read,write 都需要由系统调用,来回地在用户态跟内核态进行拷贝切换,

+
read(file, tmp_buf, len);
+write(socket, tmp_buf, len);
+ + + +

vms95Z

+

如上面的图显示的,要在用户态跟内核态进行切换,数据还需要在内核缓冲跟用户缓冲之间拷贝多次,

+
+
    +
  1. 第一步是调用 read,需要在用户态切换成内核态,DMA模块从磁盘中读取文件,并存储在内核缓冲区,相当于是第一次复制
  2. +
  3. 数据从内核缓冲区被拷贝到用户缓冲区,read 调用返回,伴随着内核态又切换成用户态,完成了第二次复制
  4. +
  5. 然后是write 写入,这里也会伴随着用户态跟内核态的切换,数据从用户缓冲区被复制到内核空间缓冲区,完成了第三次复制,这次有点不一样的是数据不是在内核缓冲区了,会复制到 socket buffer 中。
  6. +
  7. write 系统调用返回,又切换回了用户态,然后数据由 DMA 拷贝到协议引擎。
  8. +
+
+

如此就能看出其实默认的读写操作代价是非常大的,而在 rocketmq 等高性能中间件中都有使用的零拷贝技术,其中 rocketmq 使用的是 mmap

+

mmap

mmap基于 OS 的 mmap 的内存映射技术,通过MMU 映射文件,将文件直接映射到用户态的内存地址,使得对文件的操作不再是 write/read,而转化为直接对内存地址的操作,使随机读写文件和读写内存相似的速度。

+
+

mmap 把文件映射到用户空间里的虚拟内存,省去了从内核缓冲区复制到用户空间的过程,文件中的位置在虚拟内存中有了对应的地址,可以像操作内存一样操作这个文件,这样的文件读写文件方式少了数据从内核缓存到用户空间的拷贝,效率很高。

+
+
tmp_buf = mmap(file, len);
+write(socket, tmp_buf, len);
+ +

I68mFx

+
+

第一步:mmap系统调用使得文件内容被DMA引擎复制到内核缓冲区。然后该缓冲区与用户进程共享,在内核和用户内存空间之间不进行任何拷贝。

+

第二步:写系统调用使得内核将数据从原来的内核缓冲区复制到与套接字相关的内核缓冲区。

+

第三步:第三次拷贝发生在DMA引擎将数据从内核套接字缓冲区传递给协议引擎时。

+

通过使用mmap而不是read,我们将内核需要拷贝的数据量减少了一半。当大量的数据被传输时,这将有很好的效果。然而,这种改进并不是没有代价的;在使用mmap+write方法时,有一些隐藏的陷阱。例如当你对一个文件进行内存映射,然后在另一个进程截断同一文件时调用写。你的写系统调用将被总线错误信号SIGBUS打断,因为你执行了一个错误的内存访问。该信号的默认行为是杀死进程并dumpcore–这对网络服务器来说不是最理想的操作。

+

有两种方法可以解决这个问题。

+

第一种方法是为SIGBUS信号安装一个信号处理程序,然后在处理程序中简单地调用返回。通过这样做,写系统调用会返回它在被打断之前所写的字节数,并将errno设置为成功。让我指出,这将是一个糟糕的解决方案,一个治标不治本的解决方案。因为SIGBUS预示着进程出了严重的问题,所以不鼓励使用这种解决方案。

+

第二个解决方案涉及内核的文件租赁(在Windows中称为 “机会锁”)。这是解决这个问题的正确方法。通过在文件描述符上使用租赁,你与内核在一个特定的文件上达成租约。然后你可以向内核请求一个读/写租约。当另一个进程试图截断你正在传输的文件时,内核会向你发送一个实时信号,即RT_SIGNAL_LEASE信号。它告诉你内核即将终止你对该文件的写或读租约。在你的程序访问一个无效的地址和被SIGBUS信号杀死之前,你的写调用会被打断了。写入调用的返回值是中断前写入的字节数,errno将被设置为成功。下面是一些示例代码,显示了如何从内核中获得租约。

+
if(fcntl(fd, F_SETSIG, RT_SIGNAL_LEASE) == -1) {
+    perror("kernel lease set signal");
+    return -1;
+}
+/* l_type can be F_RDLCK F_WRLCK */
+if(fcntl(fd, F_SETLEASE, l_type)){
+    perror("kernel lease set type");
+    return -1;
+}
]]>
- 生活 + MQ + RocketMQ + 消息队列 - 生活 - 换车牌 + MQ + 消息队列 + RocketMQ
- 记一个容器中 dubbo 注册的小知识点 - /2022/10/09/%E8%AE%B0%E4%B8%80%E4%B8%AA%E5%AE%B9%E5%99%A8%E4%B8%AD-dubbo-%E6%B3%A8%E5%86%8C%E7%9A%84%E5%B0%8F%E7%9F%A5%E8%AF%86%E7%82%B9/ - 在目前环境下使用容器部署Java应用还是挺普遍的,但是有一些问题也是随之而来需要解决的,比如容器中应用的dubbo注册,在比较早的版本的dubbo中,就是简单地获取网卡的ip地址。
具体代码在这个方法里 com.alibaba.dubbo.config.ServiceConfig#doExportUrlsFor1Protocol

-
private void doExportUrlsFor1Protocol(ProtocolConfig protocolConfig, List<URL> registryURLs) {
-        String name = protocolConfig.getName();
-        if (name == null || name.length() == 0) {
-            name = "dubbo";
-        }
+    聊一下 RocketMQ 的 DefaultMQPushConsumer 源码
+    /2020/06/26/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84-Consumer/
+    首先看下官方的小 demo

+
public static void main(String[] args) throws InterruptedException, MQClientException {
+
+        /*
+         * Instantiate with specified consumer group name.
+         * 首先是new 一个对象出来,然后指定 Consumer 的 Group
+         * 同一类Consumer的集合,这类Consumer通常消费同一类消息且消费逻辑一致。消费者组使得在消息消费方面,实现负载均衡和容错的目标变得非常容易。要注意的是,消费者组的消费者实例必须订阅完全相同的Topic。RocketMQ 支持两种消息模式:集群消费(Clustering)和广播消费(Broadcasting)。
+         */
+        DefaultMQPushConsumer consumer = new DefaultMQPushConsumer("please_rename_unique_group_name_4");
+
+        /*
+         * Specify name server addresses.
+         * <p/>
+         * 这里可以通知指定环境变量或者设置对象参数的形式指定名字空间服务的地址
+         *
+         * Alternatively, you may specify name server addresses via exporting environmental variable: NAMESRV_ADDR
+         * <pre>
+         * {@code
+         * consumer.setNamesrvAddr("name-server1-ip:9876;name-server2-ip:9876");
+         * }
+         * </pre>
+         */
+
+        /*
+         * Specify where to start in case the specified consumer group is a brand new one.
+         * 指定消费起始点
+         */
+        consumer.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET);
+
+        /*
+         * Subscribe one more more topics to consume.
+         * 指定订阅的 topic 跟 tag,注意后面的是个表达式,可以以 tag1 || tag2 || tag3 传入
+         */
+        consumer.subscribe("TopicTest", "*");
+
+        /*
+         *  Register callback to execute on arrival of messages fetched from brokers.
+         *  注册具体获得消息后的处理方法
+         */
+        consumer.registerMessageListener(new MessageListenerConcurrently() {
+
+            @Override
+            public ConsumeConcurrentlyStatus consumeMessage(List<MessageExt> msgs,
+                ConsumeConcurrentlyContext context) {
+                System.out.printf("%s Receive New Messages: %s %n", Thread.currentThread().getName(), msgs);
+                return ConsumeConcurrentlyStatus.CONSUME_SUCCESS;
+            }
+        });
+
+        /*
+         *  Launch the consumer instance.
+         * 启动消费者
+         */
+        consumer.start();
+
+        System.out.printf("Consumer Started.%n");
+    }
+ +

然后就是看看 start 的过程了

+
/**
+     * This method gets internal infrastructure readily to serve. Instances must call this method after configuration.
+     *
+     * @throws MQClientException if there is any client error.
+     */
+    @Override
+    public void start() throws MQClientException {
+        setConsumerGroup(NamespaceUtil.wrapNamespace(this.getNamespace(), this.consumerGroup));
+        this.defaultMQPushConsumerImpl.start();
+        if (null != traceDispatcher) {
+            try {
+                traceDispatcher.start(this.getNamesrvAddr(), this.getAccessChannel());
+            } catch (MQClientException e) {
+                log.warn("trace dispatcher start failed ", e);
+            }
+        }
+    }
+

具体的逻辑在this.defaultMQPushConsumerImpl.start(),这个 defaultMQPushConsumerImpl 就是

+
/**
+     * Internal implementation. Most of the functions herein are delegated to it.
+     */
+    protected final transient DefaultMQPushConsumerImpl defaultMQPushConsumerImpl;
+ +
public synchronized void start() throws MQClientException {
+        switch (this.serviceState) {
+            case CREATE_JUST:
+                log.info("the consumer [{}] start beginning. messageModel={}, isUnitMode={}", this.defaultMQPushConsumer.getConsumerGroup(),
+                    this.defaultMQPushConsumer.getMessageModel(), this.defaultMQPushConsumer.isUnitMode());
+                // 这里比较巧妙,相当于想设立了个屏障,防止并发启动,不过这里并不是悲观锁,也不算个严格的乐观锁
+                this.serviceState = ServiceState.START_FAILED;
+
+                this.checkConfig();
+
+                this.copySubscription();
+
+                if (this.defaultMQPushConsumer.getMessageModel() == MessageModel.CLUSTERING) {
+                    this.defaultMQPushConsumer.changeInstanceNameToPID();
+                }
+
+                // 这个mQClientFactory,负责管理client(consumer、producer),并提供多中功能接口供各个Service(Rebalance、PullMessage等)调用;大部分逻辑均在这个类中完成
+                this.mQClientFactory = MQClientManager.getInstance().getOrCreateMQClientInstance(this.defaultMQPushConsumer, this.rpcHook);
+
+                // 这个 rebalanceImpl 主要负责决定,当前的consumer应该从哪些Queue中消费消息;
+                this.rebalanceImpl.setConsumerGroup(this.defaultMQPushConsumer.getConsumerGroup());
+                this.rebalanceImpl.setMessageModel(this.defaultMQPushConsumer.getMessageModel());
+                this.rebalanceImpl.setAllocateMessageQueueStrategy(this.defaultMQPushConsumer.getAllocateMessageQueueStrategy());
+                this.rebalanceImpl.setmQClientFactory(this.mQClientFactory);
+
+                // 长连接,负责从broker处拉取消息,然后利用ConsumeMessageService回调用户的Listener执行消息消费逻辑
+                this.pullAPIWrapper = new PullAPIWrapper(
+                    mQClientFactory,
+                    this.defaultMQPushConsumer.getConsumerGroup(), isUnitMode());
+                this.pullAPIWrapper.registerFilterMessageHook(filterMessageHookList);
+
+                if (this.defaultMQPushConsumer.getOffsetStore() != null) {
+                    this.offsetStore = this.defaultMQPushConsumer.getOffsetStore();
+                } else {
+                    switch (this.defaultMQPushConsumer.getMessageModel()) {
+                        case BROADCASTING:
+                            this.offsetStore = new LocalFileOffsetStore(this.mQClientFactory, this.defaultMQPushConsumer.getConsumerGroup());
+                            break;
+                        case CLUSTERING:
+                            this.offsetStore = new RemoteBrokerOffsetStore(this.mQClientFactory, this.defaultMQPushConsumer.getConsumerGroup());
+                            break;
+                        default:
+                            break;
+                    }
+                    this.defaultMQPushConsumer.setOffsetStore(this.offsetStore);
+                }
+                // offsetStore 维护当前consumer的消费记录(offset);有两种实现,Local和Rmote,Local存储在本地磁盘上,适用于BROADCASTING广播消费模式;而Remote则将消费进度存储在Broker上,适用于CLUSTERING集群消费模式;
+                this.offsetStore.load();
+
+                if (this.getMessageListenerInner() instanceof MessageListenerOrderly) {
+                    this.consumeOrderly = true;
+                    this.consumeMessageService =
+                        new ConsumeMessageOrderlyService(this, (MessageListenerOrderly) this.getMessageListenerInner());
+                } else if (this.getMessageListenerInner() instanceof MessageListenerConcurrently) {
+                    this.consumeOrderly = false;
+                    this.consumeMessageService =
+                        new ConsumeMessageConcurrentlyService(this, (MessageListenerConcurrently) this.getMessageListenerInner());
+                }
+
+                // 实现所谓的"Push-被动"消费机制;从Broker拉取的消息后,封装成ConsumeRequest提交给ConsumeMessageSerivce,此service负责回调用户的Listener消费消息;
+                this.consumeMessageService.start();
+
+                boolean registerOK = mQClientFactory.registerConsumer(this.defaultMQPushConsumer.getConsumerGroup(), this);
+                if (!registerOK) {
+                    this.serviceState = ServiceState.CREATE_JUST;
+                    this.consumeMessageService.shutdown();
+                    throw new MQClientException("The consumer group[" + this.defaultMQPushConsumer.getConsumerGroup()
+                        + "] has been created before, specify another name please." + FAQUrl.suggestTodo(FAQUrl.GROUP_NAME_DUPLICATE_URL),
+                        null);
+                }
+
+                mQClientFactory.start();
+                log.info("the consumer [{}] start OK.", this.defaultMQPushConsumer.getConsumerGroup());
+                this.serviceState = ServiceState.RUNNING;
+                break;
+            case RUNNING:
+            case START_FAILED:
+            case SHUTDOWN_ALREADY:
+                throw new MQClientException("The PushConsumer service state not OK, maybe started once, "
+                    + this.serviceState
+                    + FAQUrl.suggestTodo(FAQUrl.CLIENT_SERVICE_NOT_OK),
+                    null);
+            default:
+                break;
+        }
+
+        this.updateTopicSubscribeInfoWhenSubscriptionChanged();
+        this.mQClientFactory.checkClientInBroker();
+        this.mQClientFactory.sendHeartbeatToAllBrokerWithLock();
+        this.mQClientFactory.rebalanceImmediately();
+    }
+

然后我们往下看主要的目光聚焦mQClientFactory.start()

+
public void start() throws MQClientException {
+
+        synchronized (this) {
+            switch (this.serviceState) {
+                case CREATE_JUST:
+                    this.serviceState = ServiceState.START_FAILED;
+                    // If not specified,looking address from name server
+                    if (null == this.clientConfig.getNamesrvAddr()) {
+                        this.mQClientAPIImpl.fetchNameServerAddr();
+                    }
+                    // Start request-response channel
+                    // 这里主要是初始化了个网络客户端
+                    this.mQClientAPIImpl.start();
+                    // Start various schedule tasks
+                    // 定时任务
+                    this.startScheduledTask();
+                    // Start pull service
+                    // 这里重点说下
+                    this.pullMessageService.start();
+                    // Start rebalance service
+                    this.rebalanceService.start();
+                    // Start push service
+                    this.defaultMQProducer.getDefaultMQProducerImpl().start(false);
+                    log.info("the client factory [{}] start OK", this.clientId);
+                    this.serviceState = ServiceState.RUNNING;
+                    break;
+                case START_FAILED:
+                    throw new MQClientException("The Factory object[" + this.getClientId() + "] has been created before, and failed.", null);
+                default:
+                    break;
+            }
+        }
+    }
+

我们来看下这个 pullMessageService,org.apache.rocketmq.client.impl.consumer.PullMessageService,

实现了 runnable 接口,
然后可以看到 run 方法

+
public void run() {
+        log.info(this.getServiceName() + " service started");
 
-        String host = protocolConfig.getHost();
-        if (provider != null && (host == null || host.length() == 0)) {
-            host = provider.getHost();
-        }
-        boolean anyhost = false;
-        if (NetUtils.isInvalidLocalHost(host)) {
-            anyhost = true;
-            try {
-                host = InetAddress.getLocalHost().getHostAddress();
-            } catch (UnknownHostException e) {
-                logger.warn(e.getMessage(), e);
-            }
-            if (NetUtils.isInvalidLocalHost(host)) {
-                if (registryURLs != null && registryURLs.size() > 0) {
-                    for (URL registryURL : registryURLs) {
-                        try {
-                            Socket socket = new Socket();
-                            try {
-                                SocketAddress addr = new InetSocketAddress(registryURL.getHost(), registryURL.getPort());
-                                socket.connect(addr, 1000);
-                                host = socket.getLocalAddress().getHostAddress();
-                                break;
-                            } finally {
-                                try {
-                                    socket.close();
-                                } catch (Throwable e) {}
-                            }
-                        } catch (Exception e) {
-                            logger.warn(e.getMessage(), e);
-                        }
-                    }
-                }
-                if (NetUtils.isInvalidLocalHost(host)) {
-                    host = NetUtils.getLocalHost();
-                }
-            }
-        }
-

通过jdk自带的方法 java.net.InetAddress#getLocalHost来获取本机地址,这样子对于容器来讲,获取到容器内部ip注册上去其实是没办法被调用到的,
而在之后的版本中例如dubbo 2.6.5,则可以通过在docker中设置环境变量的形式来注入docker所在的宿主机地址,
代码同样在com.alibaba.dubbo.config.ServiceConfig#doExportUrlsFor1Protocol这个方法中,但是获取host的方法变成了 com.alibaba.dubbo.config.ServiceConfig#findConfigedHosts

-
private String findConfigedHosts(ProtocolConfig protocolConfig, List<URL> registryURLs, Map<String, String> map) {
-        boolean anyhost = false;
+        while (!this.isStopped()) {
+            try {
+                PullRequest pullRequest = this.pullRequestQueue.take();
+                this.pullMessage(pullRequest);
+            } catch (InterruptedException ignored) {
+            } catch (Exception e) {
+                log.error("Pull Message Service Run Method exception", e);
+            }
+        }
 
-        String hostToBind = getValueFromConfig(protocolConfig, Constants.DUBBO_IP_TO_BIND);
-        if (hostToBind != null && hostToBind.length() > 0 && isInvalidLocalHost(hostToBind)) {
-            throw new IllegalArgumentException("Specified invalid bind ip from property:" + Constants.DUBBO_IP_TO_BIND + ", value:" + hostToBind);
-        }
+        log.info(this.getServiceName() + " service end");
+    }
+

接着在看 pullMessage 方法

+
private void pullMessage(final PullRequest pullRequest) {
+        final MQConsumerInner consumer = this.mQClientFactory.selectConsumer(pullRequest.getConsumerGroup());
+        if (consumer != null) {
+            DefaultMQPushConsumerImpl impl = (DefaultMQPushConsumerImpl) consumer;
+            impl.pullMessage(pullRequest);
+        } else {
+            log.warn("No matched consumer for the PullRequest {}, drop it", pullRequest);
+        }
+    }
+

实际上调用了这个方法,这个方法很长,我在代码里注释下下每一段的功能

+
public void pullMessage(final PullRequest pullRequest) {
+        final ProcessQueue processQueue = pullRequest.getProcessQueue();
+        // 这里开始就是检查状态,确定是否往下执行
+        if (processQueue.isDropped()) {
+            log.info("the pull request[{}] is dropped.", pullRequest.toString());
+            return;
+        }
+
+        pullRequest.getProcessQueue().setLastPullTimestamp(System.currentTimeMillis());
+
+        try {
+            this.makeSureStateOK();
+        } catch (MQClientException e) {
+            log.warn("pullMessage exception, consumer state not ok", e);
+            this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
+            return;
+        }
+
+        if (this.isPause()) {
+            log.warn("consumer was paused, execute pull request later. instanceName={}, group={}", this.defaultMQPushConsumer.getInstanceName(), this.defaultMQPushConsumer.getConsumerGroup());
+            this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_SUSPEND);
+            return;
+        }
+
+        // 这块其实是个类似于限流的功能块,对消息数量和消息大小做限制
+        long cachedMessageCount = processQueue.getMsgCount().get();
+        long cachedMessageSizeInMiB = processQueue.getMsgSize().get() / (1024 * 1024);
+
+        if (cachedMessageCount > this.defaultMQPushConsumer.getPullThresholdForQueue()) {
+            this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_FLOW_CONTROL);
+            if ((queueFlowControlTimes++ % 1000) == 0) {
+                log.warn(
+                    "the cached message count exceeds the threshold {}, so do flow control, minOffset={}, maxOffset={}, count={}, size={} MiB, pullRequest={}, flowControlTimes={}",
+                    this.defaultMQPushConsumer.getPullThresholdForQueue(), processQueue.getMsgTreeMap().firstKey(), processQueue.getMsgTreeMap().lastKey(), cachedMessageCount, cachedMessageSizeInMiB, pullRequest, queueFlowControlTimes);
+            }
+            return;
+        }
+
+        if (cachedMessageSizeInMiB > this.defaultMQPushConsumer.getPullThresholdSizeForQueue()) {
+            this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_FLOW_CONTROL);
+            if ((queueFlowControlTimes++ % 1000) == 0) {
+                log.warn(
+                    "the cached message size exceeds the threshold {} MiB, so do flow control, minOffset={}, maxOffset={}, count={}, size={} MiB, pullRequest={}, flowControlTimes={}",
+                    this.defaultMQPushConsumer.getPullThresholdSizeForQueue(), processQueue.getMsgTreeMap().firstKey(), processQueue.getMsgTreeMap().lastKey(), cachedMessageCount, cachedMessageSizeInMiB, pullRequest, queueFlowControlTimes);
+            }
+            return;
+        }
+
+        // 若不是顺序消费(即DefaultMQPushConsumerImpl.consumeOrderly等于false),则检查ProcessQueue对象的msgTreeMap:TreeMap<Long,MessageExt>变量的第一个key值与最后一个key值之间的差额,该key值表示查询的队列偏移量queueoffset;若差额大于阈值(由DefaultMQPushConsumer. consumeConcurrentlyMaxSpan指定,默认是2000),则调用PullMessageService.executePullRequestLater方法,在50毫秒之后重新将该PullRequest请求放入PullMessageService.pullRequestQueue队列中;并跳出该方法;这里的意思主要就是消息有堆积了,等会再来拉取
+        if (!this.consumeOrderly) {
+            if (processQueue.getMaxSpan() > this.defaultMQPushConsumer.getConsumeConcurrentlyMaxSpan()) {
+                this.executePullRequestLater(pullRequest, PULL_TIME_DELAY_MILLS_WHEN_FLOW_CONTROL);
+                if ((queueMaxSpanFlowControlTimes++ % 1000) == 0) {
+                    log.warn(
+                        "the queue's messages, span too long, so do flow control, minOffset={}, maxOffset={}, maxSpan={}, pullRequest={}, flowControlTimes={}",
+                        processQueue.getMsgTreeMap().firstKey(), processQueue.getMsgTreeMap().lastKey(), processQueue.getMaxSpan(),
+                        pullRequest, queueMaxSpanFlowControlTimes);
+                }
+                return;
+            }
+        } else {
+            if (processQueue.isLocked()) {
+                if (!pullRequest.isLockedFirst()) {
+                    final long offset = this.rebalanceImpl.computePullFromWhere(pullRequest.getMessageQueue());
+                    boolean brokerBusy = offset < pullRequest.getNextOffset();
+                    log.info("the first time to pull message, so fix offset from broker. pullRequest: {} NewOffset: {} brokerBusy: {}",
+                        pullRequest, offset, brokerBusy);
+                    if (brokerBusy) {
+                        log.info("[NOTIFYME]the first time to pull message, but pull request offset larger than broker consume offset. pullRequest: {} NewOffset: {}",
+                            pullRequest, offset);
+                    }
+
+                    pullRequest.setLockedFirst(true);
+                    pullRequest.setNextOffset(offset);
+                }
+            } else {
+                this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
+                log.info("pull message later because not locked in broker, {}", pullRequest);
+                return;
+            }
+        }
+
+        // 以PullRequest.messageQueue对象的topic值为参数从RebalanceImpl.subscriptionInner: ConcurrentHashMap, SubscriptionData>中获取对应的SubscriptionData对象,若该对象为null,考虑到并发的关系,调用executePullRequestLater方法,稍后重试;并跳出该方法;
+        final SubscriptionData subscriptionData = this.rebalanceImpl.getSubscriptionInner().get(pullRequest.getMessageQueue().getTopic());
+        if (null == subscriptionData) {
+            this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
+            log.warn("find the consumer's subscription failed, {}", pullRequest);
+            return;
+        }
+
+        final long beginTimestamp = System.currentTimeMillis();
+
+        // 异步拉取回调,先不讨论细节
+        PullCallback pullCallback = new PullCallback() {
+            @Override
+            public void onSuccess(PullResult pullResult) {
+                if (pullResult != null) {
+                    pullResult = DefaultMQPushConsumerImpl.this.pullAPIWrapper.processPullResult(pullRequest.getMessageQueue(), pullResult,
+                        subscriptionData);
+
+                    switch (pullResult.getPullStatus()) {
+                        case FOUND:
+                            long prevRequestOffset = pullRequest.getNextOffset();
+                            pullRequest.setNextOffset(pullResult.getNextBeginOffset());
+                            long pullRT = System.currentTimeMillis() - beginTimestamp;
+                            DefaultMQPushConsumerImpl.this.getConsumerStatsManager().incPullRT(pullRequest.getConsumerGroup(),
+                                pullRequest.getMessageQueue().getTopic(), pullRT);
+
+                            long firstMsgOffset = Long.MAX_VALUE;
+                            if (pullResult.getMsgFoundList() == null || pullResult.getMsgFoundList().isEmpty()) {
+                                DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
+                            } else {
+                                firstMsgOffset = pullResult.getMsgFoundList().get(0).getQueueOffset();
+
+                                DefaultMQPushConsumerImpl.this.getConsumerStatsManager().incPullTPS(pullRequest.getConsumerGroup(),
+                                    pullRequest.getMessageQueue().getTopic(), pullResult.getMsgFoundList().size());
+
+                                boolean dispatchToConsume = processQueue.putMessage(pullResult.getMsgFoundList());
+                                DefaultMQPushConsumerImpl.this.consumeMessageService.submitConsumeRequest(
+                                    pullResult.getMsgFoundList(),
+                                    processQueue,
+                                    pullRequest.getMessageQueue(),
+                                    dispatchToConsume);
+
+                                if (DefaultMQPushConsumerImpl.this.defaultMQPushConsumer.getPullInterval() > 0) {
+                                    DefaultMQPushConsumerImpl.this.executePullRequestLater(pullRequest,
+                                        DefaultMQPushConsumerImpl.this.defaultMQPushConsumer.getPullInterval());
+                                } else {
+                                    DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
+                                }
+                            }
+
+                            if (pullResult.getNextBeginOffset() < prevRequestOffset
+                                || firstMsgOffset < prevRequestOffset) {
+                                log.warn(
+                                    "[BUG] pull message result maybe data wrong, nextBeginOffset: {} firstMsgOffset: {} prevRequestOffset: {}",
+                                    pullResult.getNextBeginOffset(),
+                                    firstMsgOffset,
+                                    prevRequestOffset);
+                            }
+
+                            break;
+                        case NO_NEW_MSG:
+                            pullRequest.setNextOffset(pullResult.getNextBeginOffset());
+
+                            DefaultMQPushConsumerImpl.this.correctTagsOffset(pullRequest);
+
+                            DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
+                            break;
+                        case NO_MATCHED_MSG:
+                            pullRequest.setNextOffset(pullResult.getNextBeginOffset());
+
+                            DefaultMQPushConsumerImpl.this.correctTagsOffset(pullRequest);
+
+                            DefaultMQPushConsumerImpl.this.executePullRequestImmediately(pullRequest);
+                            break;
+                        case OFFSET_ILLEGAL:
+                            log.warn("the pull request offset illegal, {} {}",
+                                pullRequest.toString(), pullResult.toString());
+                            pullRequest.setNextOffset(pullResult.getNextBeginOffset());
+
+                            pullRequest.getProcessQueue().setDropped(true);
+                            DefaultMQPushConsumerImpl.this.executeTaskLater(new Runnable() {
+
+                                @Override
+                                public void run() {
+                                    try {
+                                        DefaultMQPushConsumerImpl.this.offsetStore.updateOffset(pullRequest.getMessageQueue(),
+                                            pullRequest.getNextOffset(), false);
+
+                                        DefaultMQPushConsumerImpl.this.offsetStore.persist(pullRequest.getMessageQueue());
+
+                                        DefaultMQPushConsumerImpl.this.rebalanceImpl.removeProcessQueue(pullRequest.getMessageQueue());
 
-        // if bind ip is not found in environment, keep looking up
-        if (hostToBind == null || hostToBind.length() == 0) {
-            hostToBind = protocolConfig.getHost();
-            if (provider != null && (hostToBind == null || hostToBind.length() == 0)) {
-                hostToBind = provider.getHost();
-            }
-            if (isInvalidLocalHost(hostToBind)) {
-                anyhost = true;
-                try {
-                    hostToBind = InetAddress.getLocalHost().getHostAddress();
-                } catch (UnknownHostException e) {
-                    logger.warn(e.getMessage(), e);
-                }
-                if (isInvalidLocalHost(hostToBind)) {
-                    if (registryURLs != null && !registryURLs.isEmpty()) {
-                        for (URL registryURL : registryURLs) {
-                            if (Constants.MULTICAST.equalsIgnoreCase(registryURL.getParameter("registry"))) {
-                                // skip multicast registry since we cannot connect to it via Socket
-                                continue;
-                            }
-                            try {
-                                Socket socket = new Socket();
-                                try {
-                                    SocketAddress addr = new InetSocketAddress(registryURL.getHost(), registryURL.getPort());
-                                    socket.connect(addr, 1000);
-                                    hostToBind = socket.getLocalAddress().getHostAddress();
-                                    break;
-                                } finally {
-                                    try {
-                                        socket.close();
-                                    } catch (Throwable e) {
-                                    }
-                                }
-                            } catch (Exception e) {
-                                logger.warn(e.getMessage(), e);
-                            }
-                        }
-                    }
-                    if (isInvalidLocalHost(hostToBind)) {
-                        hostToBind = getLocalHost();
-                    }
-                }
-            }
-        }
+                                        log.warn("fix the pull request offset, {}", pullRequest);
+                                    } catch (Throwable e) {
+                                        log.error("executeTaskLater Exception", e);
+                                    }
+                                }
+                            }, 10000);
+                            break;
+                        default:
+                            break;
+                    }
+                }
+            }
 
-        map.put(Constants.BIND_IP_KEY, hostToBind);
+            @Override
+            public void onException(Throwable e) {
+                if (!pullRequest.getMessageQueue().getTopic().startsWith(MixAll.RETRY_GROUP_TOPIC_PREFIX)) {
+                    log.warn("execute the pull request exception", e);
+                }
 
-        // registry ip is not used for bind ip by default
-        String hostToRegistry = getValueFromConfig(protocolConfig, Constants.DUBBO_IP_TO_REGISTRY);
-        if (hostToRegistry != null && hostToRegistry.length() > 0 && isInvalidLocalHost(hostToRegistry)) {
-            throw new IllegalArgumentException("Specified invalid registry ip from property:" + Constants.DUBBO_IP_TO_REGISTRY + ", value:" + hostToRegistry);
-        } else if (hostToRegistry == null || hostToRegistry.length() == 0) {
-            // bind ip is used as registry ip by default
-            hostToRegistry = hostToBind;
-        }
+                DefaultMQPushConsumerImpl.this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
+            }
+        };
+        // 如果为集群模式,即可置commitOffsetEnable为 true
+        boolean commitOffsetEnable = false;
+        long commitOffsetValue = 0L;
+        if (MessageModel.CLUSTERING == this.defaultMQPushConsumer.getMessageModel()) {
+            commitOffsetValue = this.offsetStore.readOffset(pullRequest.getMessageQueue(), ReadOffsetType.READ_FROM_MEMORY);
+            if (commitOffsetValue > 0) {
+                commitOffsetEnable = true;
+            }
+        }
 
-        map.put(Constants.ANYHOST_KEY, String.valueOf(anyhost));
+        // 将上面获得的commitOffsetEnable更新到订阅关系里
+        String subExpression = null;
+        boolean classFilter = false;
+        SubscriptionData sd = this.rebalanceImpl.getSubscriptionInner().get(pullRequest.getMessageQueue().getTopic());
+        if (sd != null) {
+            if (this.defaultMQPushConsumer.isPostSubscriptionWhenPull() && !sd.isClassFilterMode()) {
+                subExpression = sd.getSubString();
+            }
 
-        return hostToRegistry;
-    }
-

String hostToRegistry = getValueFromConfig(protocolConfig, Constants.DUBBO_IP_TO_REGISTRY);
就是这一行,

-
private String getValueFromConfig(ProtocolConfig protocolConfig, String key) {
-    String protocolPrefix = protocolConfig.getName().toUpperCase() + "_";
-    String port = ConfigUtils.getSystemProperty(protocolPrefix + key);
-    if (port == null || port.length() == 0) {
-        port = ConfigUtils.getSystemProperty(key);
-    }
-    return port;
-}
-

也就是配置了DUBBO_IP_TO_REGISTRY这个环境变量

-]]>
- - java - - - dubbo - - - - 记录下 Java Stream 的一些高效操作 - /2022/05/15/%E8%AE%B0%E5%BD%95%E4%B8%8B-Java-Lambda-%E7%9A%84%E4%B8%80%E4%BA%9B%E9%AB%98%E6%95%88%E6%93%8D%E4%BD%9C/ - 我们日常在代码里处理一些集合逻辑的时候用到 Stream 其实还挺多的,普通的取值过滤集合一般都是结合 ide 的提示就能搞定了,但是有些不太常用的就在这记录下,争取后面都更新记录下来。

-

自定义 distinctByKey 对结果进行去重

stream 中自带的 distinct 只能对元素进行去重
比如下面代码

-
public static void main(String[] args) {
-        List<Integer> list = new ArrayList<>();
-        list.add(1);
-        list.add(1);
-        list.add(2);
-        list = list.stream().distinct().collect(Collectors.toList());
-        System.out.println(list);
-    }
-

结果就是去了重的

-
[1, 2]
-

但是当我的元素是个复杂对象,我想根据对象里的某个元素进行过滤的时候,就需要用到自定义的 distinctByKey 了,比如下面的想对 userId 进行去重

-
public static void main(String[] args) {
-        List<StudentRecord> list = new ArrayList<>();
-        StudentRecord s1 = new StudentRecord();
-        s1.setUserId(11L);
-        s1.setCourseId(100L);
-        s1.setScore(100);
-        list.add(s1);
-        StudentRecord s2 = new StudentRecord();
-        s2.setUserId(11L);
-        s2.setCourseId(101L);
-        s2.setScore(100);
-        list.add(s2);
-        StudentRecord s3 = new StudentRecord();
-        s3.setUserId(12L);
-        s3.setCourseId(100L);
-        s3.setScore(100);
-        list.add(s3);
-        System.out.println(list.stream().distinct().collect(Collectors.toList()));
-    }
-    @Data
-    static class StudentRecord {
-        Long id;
-        Long userId;
-        Long courseId;
-        Integer score;
-    }
-

结果就是

-
[StudentRecord(id=null, userId=11, courseId=100, score=100), StudentRecord(id=null, userId=11, courseId=101, score=100), StudentRecord(id=null, userId=12, courseId=100, score=100)]
-

因为对象都不一样,所以就没法去重了,这里就需要用

-
public static <T> Predicate<T> distinctByKey(
-            Function<? super T, ?> keyExtractor) {
+            classFilter = sd.isClassFilterMode();
+        }
 
-        Map<Object, Boolean> seen = new ConcurrentHashMap<>();
-        return t -> seen.putIfAbsent(keyExtractor.apply(t), Boolean.TRUE) == null;
-    }
-

然后就可以用它来去重了

-
System.out.println(list.stream().filter(distinctByKey(StudentRecord::getUserId)).collect(Collectors.toList()));
-

看下结果

-
[StudentRecord(id=null, userId=11, courseId=100, score=100), StudentRecord(id=null, userId=12, courseId=100, score=100)]
-

但是说实在的这个功能感觉应该是 stream 默认给实现的

-

使用 java.util.stream.Collectors#groupingBy 对 list 进行分组

这个使用场景还是蛮多的,上面的场景里比如我要对 userId 进行分组,就一行代码就解决了

-
System.out.println(list.stream().collect(Collectors.groupingBy(StudentRecord::getUserId)));
-

结果

{11=[StudentRecord(id=null, userId=11, courseId=100, score=100), StudentRecord(id=null, userId=11, courseId=101, score=100)], 12=[StudentRecord(id=null, userId=12, courseId=100, score=100)]}
-

很方便的变成了以 userId 作为 key,以相同 userIdStudentRecordList 作为 valuemap 结构

-]]>
- - java - - - java - stream - -
- - 记录下 phpunit 的入门使用方法之setUp和tearDown - /2022/10/23/%E8%AE%B0%E5%BD%95%E4%B8%8B-phpunit-%E7%9A%84%E5%85%A5%E9%97%A8%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95%E4%B9%8BsetUp%E5%92%8CtearDown/ - 可能是太久没写单测了,写个单测发现不符合预期,后来验证下才反应过来
我们来看下demo

-
class RenameTest extends TestCase
-{
-    public function setUp(): void
-    {
-        var_dump("setUp");
-    }
+        // 组成 sysFlag
+        int sysFlag = PullSysFlag.buildSysFlag(
+            commitOffsetEnable, // commitOffset
+            true, // suspend
+            subExpression != null, // subscription
+            classFilter // class filter
+        );
+        // 调用真正的拉取消息接口
+        try {
+            this.pullAPIWrapper.pullKernelImpl(
+                pullRequest.getMessageQueue(),
+                subExpression,
+                subscriptionData.getExpressionType(),
+                subscriptionData.getSubVersion(),
+                pullRequest.getNextOffset(),
+                this.defaultMQPushConsumer.getPullBatchSize(),
+                sysFlag,
+                commitOffsetValue,
+                BROKER_SUSPEND_MAX_TIME_MILLIS,
+                CONSUMER_TIMEOUT_MILLIS_WHEN_SUSPEND,
+                CommunicationMode.ASYNC,
+                pullCallback
+            );
+        } catch (Exception e) {
+            log.error("pullKernelImpl exception", e);
+            this.executePullRequestLater(pullRequest, pullTimeDelayMillsWhenException);
+        }
+    }
+

以下就是拉取消息的底层 api,不够不是特别复杂,主要是在找 broker,和设置请求参数

+
public PullResult pullKernelImpl(
+    final MessageQueue mq,
+    final String subExpression,
+    final String expressionType,
+    final long subVersion,
+    final long offset,
+    final int maxNums,
+    final int sysFlag,
+    final long commitOffset,
+    final long brokerSuspendMaxTimeMillis,
+    final long timeoutMillis,
+    final CommunicationMode communicationMode,
+    final PullCallback pullCallback
+) throws MQClientException, RemotingException, MQBrokerException, InterruptedException {
+    FindBrokerResult findBrokerResult =
+        this.mQClientFactory.findBrokerAddressInSubscribe(mq.getBrokerName(),
+            this.recalculatePullFromWhichNode(mq), false);
+    if (null == findBrokerResult) {
+        this.mQClientFactory.updateTopicRouteInfoFromNameServer(mq.getTopic());
+        findBrokerResult =
+            this.mQClientFactory.findBrokerAddressInSubscribe(mq.getBrokerName(),
+                this.recalculatePullFromWhichNode(mq), false);
+    }
 
-    public function test1()
-    {
-        var_dump("test1");
-        assertEquals(1, 1);
-    }
+    if (findBrokerResult != null) {
+        {
+            // check version
+            if (!ExpressionType.isTagType(expressionType)
+                && findBrokerResult.getBrokerVersion() < MQVersion.Version.V4_1_0_SNAPSHOT.ordinal()) {
+                throw new MQClientException("The broker[" + mq.getBrokerName() + ", "
+                    + findBrokerResult.getBrokerVersion() + "] does not upgrade to support for filter message by " + expressionType, null);
+            }
+        }
+        int sysFlagInner = sysFlag;
 
-    public function test2()
-    {
-        var_dump("test2");
-        assertEquals(1, 1);
-    }
+        if (findBrokerResult.isSlave()) {
+            sysFlagInner = PullSysFlag.clearCommitOffsetFlag(sysFlagInner);
+        }
 
-    protected function tearDown(): void
-    {
-        var_dump("tearDown");
-    }
-}
-

因为我是想写个重命名的小工具,希望通过setUptearDown做一些文件初始化和清理工作,但是我把两个case的初始化跟清理工作写到了单个setUptearDown中,这样就出现了异常的错误
通过上面的示例代码,可以看到执行结果

-
❯ vendor/bin/phpunit
-PHPUnit 9.5.25 by Sebastian Bergmann and contributors.
+        PullMessageRequestHeader requestHeader = new PullMessageRequestHeader();
+        requestHeader.setConsumerGroup(this.consumerGroup);
+        requestHeader.setTopic(mq.getTopic());
+        requestHeader.setQueueId(mq.getQueueId());
+        requestHeader.setQueueOffset(offset);
+        requestHeader.setMaxMsgNums(maxNums);
+        requestHeader.setSysFlag(sysFlagInner);
+        requestHeader.setCommitOffset(commitOffset);
+        requestHeader.setSuspendTimeoutMillis(brokerSuspendMaxTimeMillis);
+        requestHeader.setSubscription(subExpression);
+        requestHeader.setSubVersion(subVersion);
+        requestHeader.setExpressionType(expressionType);
 
-.string(5) "setUp"
-string(5) "test1"
-string(8) "tearDown"
-.                                                                  2 / 2 (100%)string(5) "setUp"
-string(5) "test2"
-string(8) "tearDown"
+        String brokerAddr = findBrokerResult.getBrokerAddr();
+        if (PullSysFlag.hasClassFilterFlag(sysFlagInner)) {
+            brokerAddr = computPullFromWhichFilterServer(mq.getTopic(), brokerAddr);
+        }
 
+        PullResult pullResult = this.mQClientFactory.getMQClientAPIImpl().pullMessage(
+            brokerAddr,
+            requestHeader,
+            timeoutMillis,
+            communicationMode,
+            pullCallback);
 
-Time: 00:00.005, Memory: 6.00 MB
+        return pullResult;
+    }
 
-OK (2 tests, 2 assertions)
-

其实就是很简单的会在每个test方法前后都执行setUptearDown

-]]>
- - php - - - php - -
- - 记录下 redis 的一些使用方法 - /2022/10/30/%E8%AE%B0%E5%BD%95%E4%B8%8B-redis-%E7%9A%84%E4%B8%80%E4%BA%9B%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95/ - 虽然说之前讲解过一些redis源码相关的,但是说实话,redis的各种使用其实有时候有点生疏,或者在一些特定的使用场景中,一些使用方法还是需要学习和记录的

-

获取所有数据

获取list类型的所有元素,可以使用 lrange , 直接用lrange key 0 -1
比如

这里有一些方便的就是可以不用知道长度,直接全返回,或者如果想拿到特定区间的就可以直接指定起止范围,

这样就不用一个个pop出来

-

裁剪list

前面用了lrange取得了一个范围的数据,如果想将数据直接移除,那可以用 ltrim ,

这两个命令就可以从list里取出批量数据,并且能从list里删除这部分数据

-]]>
- - redis - - - redis - -
- - 记录下 phpunit 的入门使用方法 - /2022/10/16/%E8%AE%B0%E5%BD%95%E4%B8%8B-phpunit-%E7%9A%84%E5%85%A5%E9%97%A8%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95/ - 这周开始打算写个比较简单的php工具包,然后顺带学习使用下php的单元测试,通过phpunit还是比较方便的,首先就composer require phpunit/phpunit
安装下 phpunit, 前面包就是通过 composer init 创建,装完依赖后就可以把自动加载代码生成下 composer dump-autoload
目录结构差不多这样

-
.
-├── composer.json
-├── composer.lock
-├── oldfile.txt
-├── phpunit.xml
-├── src
-│   └── Rename.php
-└── tests
-    └── RenameTest.php
+    throw new MQClientException("The broker[" + mq.getBrokerName() + "] not exist", null);
+}
+

再看下一步的

+
public PullResult pullMessage(
+    final String addr,
+    final PullMessageRequestHeader requestHeader,
+    final long timeoutMillis,
+    final CommunicationMode communicationMode,
+    final PullCallback pullCallback
+) throws RemotingException, MQBrokerException, InterruptedException {
+    RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.PULL_MESSAGE, requestHeader);
 
-2 directories, 6 files
-

src/是源码,tests/是放的单测,比较重要的是phpunit.xml

-
<?xml version="1.0" encoding="UTF-8"?>
-<phpunit colors="true" bootstrap="vendor/autoload.php">
-    <testsuites>
-        <testsuite name="php-rename">
-            <directory>./tests/</directory>
-        </testsuite>
-    </testsuites>
-</phpunit>
-

其中bootstrap就是需要把依赖包的自动加载入口配上,因为这个作为一个package,也会指出命名空间
然后就是testsuite的路径,源码中

-
<?php
-namespace Nicksxs\PhpRename;
+    switch (communicationMode) {
+        case ONEWAY:
+            assert false;
+            return null;
+        case ASYNC:
+            this.pullMessageAsync(addr, request, timeoutMillis, pullCallback);
+            return null;
+        case SYNC:
+            return this.pullMessageSync(addr, request, timeoutMillis);
+        default:
+            assert false;
+            break;
+    }
 
-class Rename
-{
-    public static function renameSingleFile($file, $newFileName): bool
-    {
-        if(!is_file($file)) {
-            echo "it's not a file";
-            return false;
-        }
-        $fileInfo = pathinfo($file);
-        return rename($file, $fileInfo["dirname"] . DIRECTORY_SEPARATOR . $newFileName . "." . $fileInfo["extension"]);
-    }
-}
-

就是一个简单的重命名
然后test代码是这样,

-
<?php
+    return null;
+}
+

通过 communicationMode 判断是同步拉取还是异步拉取,异步就调用

+
private void pullMessageAsync(
+        final String addr,
+        final RemotingCommand request,
+        final long timeoutMillis,
+        final PullCallback pullCallback
+    ) throws RemotingException, InterruptedException {
+        this.remotingClient.invokeAsync(addr, request, timeoutMillis, new InvokeCallback() {
+            @Override
+            public void operationComplete(ResponseFuture responseFuture) {
+                异步
+                RemotingCommand response = responseFuture.getResponseCommand();
+                if (response != null) {
+                    try {
+                        PullResult pullResult = MQClientAPIImpl.this.processPullResponse(response);
+                        assert pullResult != null;
+                        pullCallback.onSuccess(pullResult);
+                    } catch (Exception e) {
+                        pullCallback.onException(e);
+                    }
+                } else {
+                    if (!responseFuture.isSendRequestOK()) {
+                        pullCallback.onException(new MQClientException("send request failed to " + addr + ". Request: " + request, responseFuture.getCause()));
+                    } else if (responseFuture.isTimeout()) {
+                        pullCallback.onException(new MQClientException("wait response from " + addr + " timeout :" + responseFuture.getTimeoutMillis() + "ms" + ". Request: " + request,
+                            responseFuture.getCause()));
+                    } else {
+                        pullCallback.onException(new MQClientException("unknown reason. addr: " + addr + ", timeoutMillis: " + timeoutMillis + ". Request: " + request, responseFuture.getCause()));
+                    }
+                }
+            }
+        });
+    }
+

并且会调用前面 pullCallback 的onSuccess和onException方法,同步的就是调用

+
private PullResult pullMessageSync(
+        final String addr,
+        final RemotingCommand request,
+        final long timeoutMillis
+    ) throws RemotingException, InterruptedException, MQBrokerException {
+        RemotingCommand response = this.remotingClient.invokeSync(addr, request, timeoutMillis);
+        assert response != null;
+        return this.processPullResponse(response);
+    }
+

然后就是这个 remotingClient 的 invokeAsync 跟 invokeSync 方法

+
@Override
+    public void invokeAsync(String addr, RemotingCommand request, long timeoutMillis, InvokeCallback invokeCallback)
+        throws InterruptedException, RemotingConnectException, RemotingTooMuchRequestException, RemotingTimeoutException,
+        RemotingSendRequestException {
+        long beginStartTime = System.currentTimeMillis();
+        final Channel channel = this.getAndCreateChannel(addr);
+        if (channel != null && channel.isActive()) {
+            try {
+                doBeforeRpcHooks(addr, request);
+                long costTime = System.currentTimeMillis() - beginStartTime;
+                if (timeoutMillis < costTime) {
+                    throw new RemotingTooMuchRequestException("invokeAsync call timeout");
+                }
+                this.invokeAsyncImpl(channel, request, timeoutMillis - costTime, invokeCallback);
+            } catch (RemotingSendRequestException e) {
+                log.warn("invokeAsync: send request exception, so close the channel[{}]", addr);
+                this.closeChannel(addr, channel);
+                throw e;
+            }
+        } else {
+            this.closeChannel(addr, channel);
+            throw new RemotingConnectException(addr);
+        }
+    }
+@Override
+    public RemotingCommand invokeSync(String addr, final RemotingCommand request, long timeoutMillis)
+        throws InterruptedException, RemotingConnectException, RemotingSendRequestException, RemotingTimeoutException {
+        long beginStartTime = System.currentTimeMillis();
+        final Channel channel = this.getAndCreateChannel(addr);
+        if (channel != null && channel.isActive()) {
+            try {
+                doBeforeRpcHooks(addr, request);
+                long costTime = System.currentTimeMillis() - beginStartTime;
+                if (timeoutMillis < costTime) {
+                    throw new RemotingTimeoutException("invokeSync call timeout");
+                }
+                RemotingCommand response = this.invokeSyncImpl(channel, request, timeoutMillis - costTime);
+                doAfterRpcHooks(RemotingHelper.parseChannelRemoteAddr(channel), request, response);
+                return response;
+            } catch (RemotingSendRequestException e) {
+                log.warn("invokeSync: send request exception, so close the channel[{}]", addr);
+                this.closeChannel(addr, channel);
+                throw e;
+            } catch (RemotingTimeoutException e) {
+                if (nettyClientConfig.isClientCloseSocketIfTimeout()) {
+                    this.closeChannel(addr, channel);
+                    log.warn("invokeSync: close socket because of timeout, {}ms, {}", timeoutMillis, addr);
+                }
+                log.warn("invokeSync: wait response timeout exception, the channel[{}]", addr);
+                throw e;
+            }
+        } else {
+            this.closeChannel(addr, channel);
+            throw new RemotingConnectException(addr);
+        }
+    }
+

再往下看

+
public RemotingCommand invokeSyncImpl(final Channel channel, final RemotingCommand request,
+        final long timeoutMillis)
+        throws InterruptedException, RemotingSendRequestException, RemotingTimeoutException {
+        final int opaque = request.getOpaque();
+
+        try {
+            同步跟异步都是会把结果用ResponseFuture抱起来
+            final ResponseFuture responseFuture = new ResponseFuture(channel, opaque, timeoutMillis, null, null);
+            this.responseTable.put(opaque, responseFuture);
+            final SocketAddress addr = channel.remoteAddress();
+            channel.writeAndFlush(request).addListener(new ChannelFutureListener() {
+                @Override
+                public void operationComplete(ChannelFuture f) throws Exception {
+                    if (f.isSuccess()) {
+                        responseFuture.setSendRequestOK(true);
+                        return;
+                    } else {
+                        responseFuture.setSendRequestOK(false);
+                    }
 
-// require_once 'vendor/autoload.php';
+                    responseTable.remove(opaque);
+                    responseFuture.setCause(f.cause());
+                    responseFuture.putResponse(null);
+                    log.warn("send a request command to channel <" + addr + "> failed.");
+                }
+            });
+            // 区别是同步的是在这等待
+            RemotingCommand responseCommand = responseFuture.waitResponse(timeoutMillis);
+            if (null == responseCommand) {
+                if (responseFuture.isSendRequestOK()) {
+                    throw new RemotingTimeoutException(RemotingHelper.parseSocketAddressAddr(addr), timeoutMillis,
+                        responseFuture.getCause());
+                } else {
+                    throw new RemotingSendRequestException(RemotingHelper.parseSocketAddressAddr(addr), responseFuture.getCause());
+                }
+            }
 
-use PHPUnit\Framework\TestCase;
-use Nicksxs\PhpRename\Rename;
-use function PHPUnit\Framework\assertEquals;
+            return responseCommand;
+        } finally {
+            this.responseTable.remove(opaque);
+        }
+    }
 
-class RenameTest extends TestCase 
-{
-    public function setUp() :void
-    {
-        $myfile = fopen(__DIR__ . DIRECTORY_SEPARATOR . "oldfile.txt", "w") or die("Unable to open file!");
-        $txt = "file test1\n";
-        fwrite($myfile, $txt);
-        fclose($myfile);
-    }
-    public function testRename()
-    {
-        Rename::renameSingleFile(__DIR__ . DIRECTORY_SEPARATOR . "oldfile.txt", "newfile");
-        assertEquals(is_file(__DIR__ . DIRECTORY_SEPARATOR . "newfile.txt"), true);
-    }
+    public void invokeAsyncImpl(final Channel channel, final RemotingCommand request, final long timeoutMillis,
+        final InvokeCallback invokeCallback)
+        throws InterruptedException, RemotingTooMuchRequestException, RemotingTimeoutException, RemotingSendRequestException {
+        long beginStartTime = System.currentTimeMillis();
+        final int opaque = request.getOpaque();
+        boolean acquired = this.semaphoreAsync.tryAcquire(timeoutMillis, TimeUnit.MILLISECONDS);
+        if (acquired) {
+            final SemaphoreReleaseOnlyOnce once = new SemaphoreReleaseOnlyOnce(this.semaphoreAsync);
+            long costTime = System.currentTimeMillis() - beginStartTime;
+            if (timeoutMillis < costTime) {
+                once.release();
+                throw new RemotingTimeoutException("invokeAsyncImpl call timeout");
+            }
 
-    protected function tearDown(): void
-    {
-        unlink(__DIR__ . DIRECTORY_SEPARATOR . "newfile.txt");
-    }
-}
-

setUptearDown 就是初始化跟结束清理的,但是注意如果不指明 __DIR__ ,待会的目录就会在执行 vendor/bin/phpunit 下面,
或者也可以指定在一个 tmp/ 目录下
最后就可以通过vendor/bin/phpunit 来执行测试
执行结果

-
❯ vendor/bin/phpunit
-PHPUnit 9.5.25 by Sebastian Bergmann and contributors.
+            final ResponseFuture responseFuture = new ResponseFuture(channel, opaque, timeoutMillis - costTime, invokeCallback, once);
+            this.responseTable.put(opaque, responseFuture);
+            try {
+                channel.writeAndFlush(request).addListener(new ChannelFutureListener() {
+                    @Override
+                    public void operationComplete(ChannelFuture f) throws Exception {
+                        if (f.isSuccess()) {
+                            responseFuture.setSendRequestOK(true);
+                            return;
+                        }
+                        requestFail(opaque);
+                        log.warn("send a request command to channel <{}> failed.", RemotingHelper.parseChannelRemoteAddr(channel));
+                    }
+                });
+            } catch (Exception e) {
+                responseFuture.release();
+                log.warn("send a request command to channel <" + RemotingHelper.parseChannelRemoteAddr(channel) + "> Exception", e);
+                throw new RemotingSendRequestException(RemotingHelper.parseChannelRemoteAddr(channel), e);
+            }
+        } else {
+            if (timeoutMillis <= 0) {
+                throw new RemotingTooMuchRequestException("invokeAsyncImpl invoke too fast");
+            } else {
+                String info =
+                    String.format("invokeAsyncImpl tryAcquire semaphore timeout, %dms, waiting thread nums: %d semaphoreAsyncValue: %d",
+                        timeoutMillis,
+                        this.semaphoreAsync.getQueueLength(),
+                        this.semaphoreAsync.availablePermits()
+                    );
+                log.warn(info);
+                throw new RemotingTimeoutException(info);
+            }
+        }
+    }
-. 1 / 1 (100%) -Time: 00:00.005, Memory: 6.00 MB -OK (1 test, 1 assertion)
-]]>
- - php - - - php - -
- - 记录下 zookeeper 集群迁移和易错点 - /2022/05/29/%E8%AE%B0%E5%BD%95%E4%B8%8B-zookeeper-%E9%9B%86%E7%BE%A4%E8%BF%81%E7%A7%BB/ - 前阵子做了zk 的集群升级迁移,大概情况是原来是一个三节点的 zk 集群(最小可用
大概是

-
zk1 192.168.2.1
-zk2 192.168.2.2
-zk3 192.168.2.3
-

在 zoo.cfg 中的配置就是如下

-
server.1=192.168.2.1:2888:3888
-server.2=192.168.2.2:2888:3888
-server.3=192.168.2.3:2888:3888
-

加节点

需要将集群迁移到 192.168.2.4(简称 zk4),192.168.2.5(简称 zk5),192.168.2.6(简称 zk6) 这三台机器上,目前新的这三台机器上是没有 zk 部署的, 我们想要的是数据不丢失,那主要考虑的就是滚动升级,这里我其实犯了几个错误,也特别说明下
首先我们想要新的三台机器加进去,所以我在zk4,zk5,zk6 的配置是这样

-
server.1=192.168.2.1:2888:3888
-server.2=192.168.2.2:2888:3888
-server.3=192.168.2.3:2888:3888
-server.4=192.168.2.4:2888:3888
-server.5=192.168.2.5:2888:3888
-server.6=192.168.2.6:2888:3888
-

这样起来发现状态是该节点没起来,
PS:查看当前节点状态可以通过 ./zkServer.sh status 来查看
第一个问题是我需要一个myid文件,标识我是哪个节点,里面的内容就写 456 这样就行了,并且这个文件的路径应该在配置文件中指定的dataDir=数据目录下
第二个问题是困扰我比较久的,我在按上面的配置启动节点后,发现这几个节点都是没起来的,并且有 FastLeaderElection@xxx - Notification time out: 60000 这个报错,一开始以为是网络不通,端口没开这些原因,检查了下都是通的,结果原因其实跟我之前的一个考虑是相关的,当有六个节点的时候,理论上需要有半数以上的节点可用,集群才会是健康的,但是按我这个方式起来,其实我配置了六个节点,但是其中三个都是不可用的(包括自身节点),那么它自然是没办法正常工作,所以这里其实也需要滚动添加,类似于这样
我的 zk4 的配置应该是这样

-
server.1=192.168.2.1:2888:3888
-server.2=192.168.2.2:2888:3888
-server.3=192.168.2.3:2888:3888
-server.4=192.168.2.4:2888:3888
-

然后 zk5 的配置

-
server.1=192.168.2.1:2888:3888
-server.2=192.168.2.2:2888:3888
-server.3=192.168.2.3:2888:3888
-server.4=192.168.2.4:2888:3888
-server.5=192.168.2.5:2888:3888
-

接着 zk6 的配置就可以是全部了

-
server.1=192.168.2.1:2888:3888
-server.2=192.168.2.2:2888:3888
-server.3=192.168.2.3:2888:3888
-server.4=192.168.2.4:2888:3888
-server.5=192.168.2.5:2888:3888
-server.6=192.168.2.6:2888:3888
-

然后为了集群完全更新,就继续在 zk4zk5 加上其他节点,这样我的 6 节点集群就起来了

-

下节点

这里我踩了另外一个坑,或者说没搞清楚两种方式的差别,

-

第一种

首先说说我没采用的第一种方式,(也是比较合理的)其实上面这个集群有个明显的问题,老集群其实还是各自认了一个三节点的集群,其中 zk3 是主节点,对于 zk1,zk2,zk3 来说它们能看到的就只有这三个节点,对于后三个 zk4,zk5,zk6 节点来说他们能连上其余五个节点,可以认为这是个六节点的集群,那么比较合理的操作应该是在老的三节点上把后面三个也都加进来,即每个节点的配置里 server 都有 6 个,然后我再对老的节点进行下线,这里下线需要注意的比较理想的是下一个节点就要修改配置,挪掉下线的节点后进行一遍重启,比如我知道了集群中的 leader 是在 zk3 上面,那么我先将 zk1 和 zk2 下掉,那么在我将 zk1 下线的之后,我将其他的五个节点都删除 zk1 的配置,然后重启,这样其实不是必须,但相对会可靠些,理论上我也可以在下掉 zk1 和 zk2 之后再修改配置重启其余节点。而当只剩下 zk3,zk4,zk5,zk6 四个节点的集群后,并且每个节点里的配置也只有这四个 server,我再下线 zk3 这个 leader 的时候,就会进行选举,再选出新的 leader,因为刚好是三节点,同样保证了最小可用。

-

第二种

这也是我踩坑的一种方式,就是我没有修改原来三节点的配置,并且我一开始以为可以通过下线 zk1,zk2,zk3(进行选举)的方式完成下线,然后再进行重启,但是这种方式就是我上面说的,原来的三节点里我下掉 zk1 还是能够正常运行,但是我下线 zk2 的时候,这个集群就等于是挂了,小于最小可用了,这样三节点都挂了,而且对于新加入的三个节点来说,又回到了最初起不来一样状态,六节点里只有三节点在线,导致整个集群都挂了,所以对于我这样的操作来说,我需要滚动修改启动,在下线 zk1 的时候就需要把 zk4,zk5,zk6 中的 zk1 移除后重启,当然这样唯一的好处就是可以少重启几个,同样继续下线 zk2 的时候,把 zk2 移除掉再重启,其实在移除 zk1 后修改重启后,在下线 zk2 的时候,集群就会重新选举了,因为 zk2 下线的时候,zk3 还是会一起下线。这个是我们需要特别注意的

-]]>
- - java - - - zookeeper - -
- - 这周末我又在老丈人家打了天小工 - /2020/08/30/%E8%BF%99%E5%91%A8%E6%9C%AB%E6%88%91%E5%8F%88%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E6%89%93%E4%BA%86%E5%A4%A9%E5%B0%8F%E5%B7%A5/ - 因为活实在比较多,也不太好叫大工(活比较杂散),相比上一次我跟 LD 俩人晚起了一点,我真的是只要有事,早上就醒的很早,准备八点出发的,六点就醒了,然后想继续睡就一直做梦🤦‍♂️,差不多八点半多到的丈人家,他们应该已经干了有一会了,我们到了以后就分配给我撬地板的活,上次说的那个敲掉柜子的房间里,还铺着质地还不错的木地板,但是也不想要了,得撬掉重新铺。
拿着撬棍和榔头就上楼去干了,浙江这几天的天气,最高温度一般 38、9,楼上那个房间也没风扇,有了也不能用,都是灰尘,撬了两下,我感觉我体内的水就像真气爆发一样变成汗炸了出来,眼睛全被汗糊住了,可能大部分人不太了解地板是怎么铺的,一般是在地面先铺一层混凝土,混凝土中间嵌进去规则的长条木条,然后真正的地板一块块的都是钉在那个木条上,用那种气枪钉和普通的钉子,并且块跟块之前还有一个木头的槽结构相互耦合,然后边缘的一圈在用较薄的木板将整个木地板封边(这些词都是我现造的),边缘的用的钉子会更多,所以那几下真的很用力,而且撬地板,得蹲下起来,如此反复,对于我这个体重快超过身高的中年人来说的确是非常大的挑战,接下来继续撬了几个,已经有种要虚脱晕倒的感觉了,及时去喝水擦了汗,又歇了一会,为啥一上来就这么拼呢,主要是因为那个房间丈人在干活的时候是直接看得到的🤦‍♂️,后来被 LD 一顿教育,本来就是去帮忙的,又不是专业做这个的,急啥。
喝了水之后,又稍稍歇了一会,就开始继续撬了,本来觉得这个地板撬着好像还行,房间不大,没多久就撬完了,撬完之后喝了点饮料(补充点糖分,早餐吃得少,有点低血糖),然后看到 LD 在撬下面的木条了,这个动作开始了那天最大的经验值收集行动,前面说了这个木条一般是跟混凝土一块铺上去的,但是谁也没想到,这个混凝土铺上去的时候竟然处理的这么随意,根本没考虑跟下面的贴合,所以撬木条的时候直接把木条跟木条中间大块大块的混凝土一块撬起来了,想想那重量,于是我这靠蛮力干活的,就用力把木条带着混凝土一块撬了起来,还沾沾自喜,但是发现结果是撬起来一块之后,体力值瞬间归零,上一篇我也提到了,其实干这类活也是很有技巧性的,但是上次的是我没学会,可能需要花时间学的,但是这次是LD 用她的纤细胳膊教会我的,我在撬的时候,屏住一口气,双手用力,起,大概是吃好几口奶的力气都用出来了,但是 LD 在我休息的时候,慢慢悠悠的,先把撬棍挤到木条或者混凝土跟下层的缝里,然后往下垫一小块混凝土碎石,然后轻轻松松的扳两下,就撬开了,亏我高中的时候引以为傲的物理成绩,作为物理课代表,这么浅显易懂的杠杆原理都完全不会用到生活里,后面在用这个技巧撬的过程中,真的觉得自己蠢到家了,当然在明白了用点杠杆原理之后,撬地板的活就变得慢慢悠悠,悠哉悠哉的了(其实还是很热的,披着毛巾擦眼睛)。
上午的活差不多完了,后面就是把撬出来的混凝土和地板条丢下去,地上铺着不用了的被子,然后就是午饭和午休环节了,午饭换了一家快餐,味道非常可以,下午的活就比较单调了,帮忙清理了上去扔下来的混凝土碎块跟木条,然后稍微打扫了下,老丈人就让我们回家了,接着上次说的,还是觉得比跑步啥的消耗大太多了,那汗流的,一口就能喝完一瓶 500 毫升左右的矿泉水。

-]]>
- - 生活 - 运动 - 跑步 - 干活 - - - 生活 - 运动 - 减肥 - 跑步 - 干活 - -
- - 重看了下《蛮荒记》说说感受 - /2021/10/10/%E9%87%8D%E7%9C%8B%E4%BA%86%E4%B8%8B%E3%80%8A%E8%9B%AE%E8%8D%92%E8%AE%B0%E3%80%8B%E8%AF%B4%E8%AF%B4%E6%84%9F%E5%8F%97/ - 周末把《蛮荒记》看完了,前面是发现微信读书有《搜神记》和《蛮荒记》,但是《搜神记》看了会发现很多都是跳段了,不知道为啥,貌似也没什么少儿不宜的情节,所以就上网找了原版来看,为什么看这个呢,主要还是高中的时候看过,觉得写得很不错,属于那时候的玄幻小说里的独一档,基于山海经创造了一个半架空的大荒宇宙,五族帝尊,人物名都是听说过的,而且又能契合部分历史,整个故事布局非常宏大,并且情节矛盾埋得很深,这里就不对具体情节作介绍了,只是聊聊对书中的一些人物和情节的看法感受。

-

乌丝兰玛是个贯穿两部,甚至在蛮荒的最后还要再搞事情,极其坚定的自以为是的大 boss,其实除了最后被我们的主人公打败,前面几乎就是无所不能,下了一盘无比巨大的棋,主人公都只是其中一个棋子和意外,但是正如很多反派,一直以来都是背着一个信念,并且这个所谓的信念是比较正义的,只是为了这个正义的信念和目标却做了各种丧尽天良的事情,说起来跟灭霸有点像,为了环保哈哈,相对来说感觉姬远玄也只是个最大牌的工具人,或者说是中间人,深爱的妹妹冰夷也意外被蚩尤怒拿一血。

-

但是中间那个赤霞仙子一定要给烈烟石的心上锁,导致最后认不出来蚩尤,也间接导致了蚩尤被杀,如果不考虑最后情节或者推动故事的需求,这个还是我很讨厌的,有点类似于《驴得水》里那个校长,看着貌似是个正常的,做的事情也是正派,但是其实是害人不浅,即使南阳仙子因此被抛进了火山,那也是有贱人在那挑食,并且赤松子是赤飚怒的儿子,烈烟石跟蚩尤又没这层关系,就很像倚天屠龙记里的灭绝师太和极品家丁里的那个玉德仙坊的院主,后者还好一些,前者几乎就是导致周芷若一生悲剧的始作俑者,自己偏执的善恶观,还要给徒弟灌输如此恶毒的理念和让她立下像紧箍咒似的誓言,在人一生中本来就有很多不能如愿的,又被最亲最尊敬的人下了这样的紧箍咒,人生的不幸也加倍了。

-

似乎习惯了总要有个总结的,想说的应该是我觉得这些剧也好,书也好,我觉得最坏的人可能是大部分人眼中的一些次要人物,或者至少大 boss 才是最坏的人,当然这个坏也不是严格的二分法,只是我觉得最让我觉得负面的人物,这些人可能看起来情景出现的不多,只是说了很少的话,做了很少的事,但是在我看来却做了最大的恶。

-]]>
- - 生活 - - - 生活 - 看书 - -
- - 闲聊下乘公交的用户体验 - /2021/02/28/%E9%97%B2%E8%81%8A%E4%B8%8B%E4%B9%98%E5%85%AC%E4%BA%A4%E7%9A%84%E7%94%A8%E6%88%B7%E4%BD%93%E9%AA%8C/ - 新年开工开车来杭州,因为没有车位加限行今天来就没开车来了,从东站做公交回住的地方,这班神奇的车我之前也吐槽过了,有神奇的乘客和神奇的司机,因为基本上这班车是从我毕业就开始乘了,所以也算是比较熟悉了,以前总体感觉不太好的是乘坐时间太长了,不过这个也不能怪车,是我自己住得远(离东站),后来住到了现在的地方,也算是直达,并且 LD 比较喜欢直达的,不爱更快却要换乘的地铁,所以坐的频率比较高,也说过前面那些比较气人的乘客,自己不好好戴口罩,反而联合一起上车的乘客诽谤司机,说他要吃人了要打人了,也正是这个司机比较有意思,上车就让戴好口罩,还给大家讲,哪里哪里又有疫情了,我觉得其实这个司机还是不错的,特殊时期,对于这种公共交通,这样的确是比较负责任的做法,只是说话方式,语气这个因人而异,他也不是来伺候人的,而且这么一大车人,说了一遍不行,再说一遍,三遍以上了,嗓门大一点也属于正常的人的行为。
还是说回今天要说的,今天这位司机我看着跟前面说的那位有点像,因为上车的时候比较暗没看清脸,主要原因是这位司机开车比较猛,比较急,然后车上因为这个时间点,比较多大学开学来的学生,拎着个行李箱,一开始是前面已经都站满了人,后面还有很多空位,因为后面没地方放行李箱,就因为这样前面站着的有几个就在说司机开慢点,结果司机貌似也没听进去,还是我行我素,过了会又有人说司机开稳一点,就在这个人说完没一会,停在红绿灯路口的车里,就有人问有没有垃圾桶,接着又让司机开门,说晕车太严重了,要下车,司机开了门,我望出去两个妹子下了车,好像在路边草丛吐了,前面开门下车的时候就有人说她们第一次来杭州,可能有点责怪司机开的不稳,也影响了杭州交通给新来杭州的人的感受,说完了事情经过,其实我有蛮多感触,对于杭州公交司机,我大概是大一来了没多久,陪室友去文三路买电脑就晕车,下车的时候在公交车站吐了,可能是从大学开始缺乏锻炼,又饮食不规律,更加容易晕车,大部分晕车我觉得都是我自己的原因,有时候是上车前吃太多了,或者早上起太早,没睡好,没吃东西,反正自己也是挺多原因的,说到司机的原因的话,我觉得可能这班车还算好的,最让我难受的还是上下班高峰的时候,因为经过的那条路是比较重要的主干道,路比较老比较窄,并且还有很多人行道,所以经常一脚油门连带着一脚刹车,真的很难受,这种算是我觉得真的是公交体验比较差的一点,但是这一点呢也不能完全怪公交司机,杭州的路政规划是很垃圾,没看错,是垃圾,所以总体结论是公交还行,主要是路政规划就是垃圾,包括这条主干道这么多人行道,并且两边都是老小区,老年人在上班高峰可能要买菜送娃或者其他事情,在通畅的情况下可能只需要六分钟的路程,有时候因为各种原因,半小时都开不完,扯开去一点,杭州的路,核心的高速说封就封,本来是高架可以直接通到城西,结果没造,到了路本已经很拥挤的时候开始来造隧道,各种破坏,隧道接高架的地方,无尽的加塞,对于我这样的小白司机来说真的是太恶心了,所以我一直想说的就是杭州这个地方房价领先基础设施十年,地铁,高架,高速通通不行,地面道路就更不行了。
总结下,其实杭州的真正的公交体验差,应该还是路造成的,对于前面的那两位妹子来说,有可能是她们来自于公交司机都是开的特别稳,并且路况也很好的地方,也或者是我被虐习惯了🤦‍♂️

-]]>
- - 生活 - 公交 - - - 生活 - 开车 - 加塞 - 糟心事 - 规则 - 公交 - 路政规划 - 基础设施 - 杭州 - 高速 - -
- - 闲话篇-也算碰到了为老不尊和坏人变老了的典型案例 - /2022/05/22/%E9%97%B2%E8%AF%9D%E7%AF%87-%E4%B9%9F%E7%AE%97%E7%A2%B0%E5%88%B0%E4%BA%86%E4%B8%BA%E8%80%81%E4%B8%8D%E5%B0%8A%E5%92%8C%E5%9D%8F%E4%BA%BA%E5%8F%98%E8%80%81%E4%BA%86%E7%9A%84%E5%85%B8%E5%9E%8B%E6%A1%88%E4%BE%8B/ - 在目前的房子也差不多租了四五年了,楼下邻居换了两拨了,我们这栋楼装修了不知道多少次,因为是学区的原因,房子交易的频率还是比较高的,不过比较神奇的我们对门的没换过,而且一直也没什么交集(除了后面说的水管爆裂),就进出的时候偶尔看到应该是住着一对老夫妻,感觉年纪也有个七八十了。

-

对对面这户人家的印象,就是对面的老头子经常是我出门上班去了他回来,看着他颤颤巍巍地走楼梯,我看到了都靠边走,而且有几次还听见好像是他儿子在说他,”年假这么大了,还是少出去吧”,说实话除了这次的事情,之前就有一次水管阀门爆裂了,算是有点交集,那次大概是去年冬天,天气已经很冷了,我们周日下午回来看到楼梯有点湿,但是没什么特别的异常就没怎么注意,到晚上洗完澡,楼下的邻居就来敲门,说我们门外的水表那一直在流水,出门一看真的是懵了,外面水表那在哗哗哗地流水,导致楼梯那就跟水帘洞一样,仔细看看是对面家的水表阀门那在漏水,我只能先用塑料袋包一下,然后大冬天(刚洗完澡)穿着凉拖跑下去找物业保安,走到一楼的时候发现水一直流到一楼了,楼梯上都是水流下来,五楼那是最惨的,感觉门框周边都浸透了,五楼的也是态度比较差的让我一定要把水弄好了,但是前面也说了谁是从对门那户的水表阀那出来的,理论上应该让对面的处理,结果我敲门敲了半天对面都没反应,想着我放着不管也不太好,就去找了物业保安,保安上来看了只能先把总阀关了,我也打电话给维修自来水管的,自来水公司的人过了会也是真的来修了,我那会是挺怕不来修,自来水公司的师傅到了以后拿开一看是对面那户的有个阀门估计是自己换上去的,跟我们这的完全不一样,看上去就比较劣质,师傅也挺气的,大晚上被叫过来,我又尝试着去敲门也还是没人应,也没办法,对面老人家我敲太响到时候出来说我吓到他们啥的,第二天去说也没现场了。

-

前面的这件事是个重要铺垫,前几天 LD 下班后把厨余垃圾套好袋子放在门口,打算等我下班了因为要去做核酸(hz 48 小时核酸)顺便带下去,结果到了七点多,说对面的老太太在那疯狂砸门了,LD 被吓到了不敢开门,老太太在外面一边砸门一边骂,“你们年轻人怎么素质这么差”(他们家也经常在门口放垃圾,我们刚来住的时候在楼梯转角他们就放这个废弃的洗衣机,每次走楼梯带点东西都要小心翼翼地走,不然都过不去,然后我赶紧赶回去,结果她听到我回家了,还特意开门继续骂,“你们年轻人怎么素质这么差,垃圾放在这里”,我说我们刚才放在这,打算待会做核酸的时候去扔掉,结果他们家老头,都已经没了牙齿,在那瞪大眼睛说,“你们早上就放在这了的,”我说是LD 刚才下班了放的,争论了一会,我说这个事情我们门口放了垃圾,这会我就去扔掉了,但是你们家老太太这么砸门总不太好,像之前门口水管爆掉了,我敲了门没人应,我也没要砸门一定把你们叫醒,结果老头老太说我们的水管从来没换过,不可能破的(其实到这,再往后说就没意思了,跟这么不要脸的人说多了也只是瞎扯),一会又回到这个垃圾的问题,那个老头说“你们昨天就放在这里了的”,睁着眼说瞎话可真是 666,感觉不是老太太拦着点他马上就要冲上来揍我了一样,事后我想想,这种情况我大概只能躺地上装死了,当这个事情发生之前我真的快把前面说的事情(水管阀坏了)给忘了,虽然这是理论上不该我来处理,除非是老头老太太请求我帮忙,这事后面我也从没说起过,本来完全没交集,对他们的是怎么样的人也没概念,总觉得年纪大了可能还比较心宽和蔼点,结果没想到就是一典型的坏人变老了,我说你们这么砸门,我老婆都被吓得不敢开门,结果对面老头老太太的儿子也出来了说,“我们就是敲下门,我母亲是机关单位退休的,所以肯定不会敲门很大声的,你老婆觉得吓到了是你们人生观价值观有问题”,听到这话我差点笑出来,连着两个可笑至极的脑残逻辑,无语他妈给无语开门,无语到家了。对门家我们之前有个印象就是因为我们都是顶楼,这边老小区以前都是把前后阳台包进来的,然后社区就来咨询大家的意见是不是统一把包进来的违建拆掉,还特地上来六楼跟他们说,结果对面的老头就说,“我要去住建局投诉你们”,本来这个事情是违法的,但是社区的意思也是征求各位业主的意见,结果感觉是社区上门强拆了一样,为老不尊,坏人变老了的典范了。

-]]>
- - 生活 - - - 生活 - -
- - 闲话篇-路遇神逻辑骑车带娃爹 - /2022/05/08/%E9%97%B2%E8%AF%9D%E7%AF%87-%E8%B7%AF%E9%81%87%E7%A5%9E%E9%80%BB%E8%BE%91%E9%AA%91%E8%BD%A6%E5%B8%A6%E5%A8%83%E7%88%B9/ - 周末吃完中饭去买菜,没想到碰到这个神(zhi)奇(zhang)大哥带着两个娃,在非机动车道虽然没有像上班高峰车那么多,但是有送外卖,各种叮咚买菜和普通像我这样骑电驴,骑自行车的人,我的情况可能还特殊点,前面说过电驴买了以后本来网上找到过怎么解除限速的,后面看了下,限速 25 虽然慢,但还是对安全很有好处的,我上下班也不赶这个时间,所以就没解除,其他路上的电瓶车包括这位带娃的大哥可能有不少都不符合国标的限速要求或者解除了限速,这些算是铺垫。

-

那位大哥,骑电瓶车一前一后带着两个娃,在非机动车道靠右边行驶,肉眼估计是在我右前方大概十几米的距离,不知道是小孩不舒服了还是啥,想下来还是就在跟他爹玩耍,我算是比较谨慎骑车的,看到这种情况已经准备好捏刹车了,但是也没想到这个娃这么神,差不多能并排四五辆电瓶车的非机动车道,直接从他爸的车下来跑到了非机动车道的最左边,前面我铺垫了电瓶车 25 码,换算一下大概 1 秒能前进 7 米,我是直接把刹车捏死了,才勉强避免撞上这个小孩,并且当时的情况本来我左后方有另一个大哥是想从我左边超过去,因为我刹车了他也赶紧刹车。

-

现在我们做个假设,假如我刹车不够及时,撞上了这个小孩,会是啥后果呢,小孩人没事还好,即使没事也免不了大吵一架,说我骑车不看前面,然后去医院做检查,负责医药费,如果是有点啥伤了,这事估计是没完了,我是心里一阵后怕。

-

说实话是张口快骂人了,“怎么带小孩的”,结果那大哥竟然还是那套话术,“你们骑车不会慢点的啊,说一下就好了啊,用得着这么说吗”,我是真的被这位的逻辑给打败了,还好是想超我车那大哥刹住车了,他要是刹不住呢,把我撞了我怪谁?这不是追尾事件,是 zhizhang 大哥的小孩鬼探头,下个电瓶车就下车,下来就往另一边跑,我们尽力刹车没撞到这小孩,说他没管好小孩这大哥还觉得自己委屈了?结果我倒是想骂脏话了,结果我左后方的的大哥就跟他说“你这么教小孩教得真好,你真厉害”,果然在中国还是不能好好说话,阴阳怪气才是王道,我前面也说了真的是后怕,为什么我从头到尾都没有说这个小孩不对,我是觉得这个年纪的小孩(估摸着也就五六岁或者再大个一两岁)这种安全意识应该是要父母和学校老师一起教育培养的,在路上不能这么随便乱跑,即使别人撞了他,别人有责任,那小孩的生理伤痛和心理伤害,父母也肯定要心疼的吧,另外对我们来说前面也说了,真的撞到了我们也是很难受的,这个社会里真的是自私自利的人太多了,平时让外卖小哥送爬下楼梯送上来外卖都觉得挺抱歉的,每次的接过来都说谢谢,人家也不容易,换在有些人身上大概会觉得自己花了钱就是大爷,给我送上来是必须的。

]]>
- 生活 + MQ + RocketMQ + 消息队列 + RocketMQ + 中间件 + RocketMQ - 生活 + MQ + 消息队列 + RocketMQ + 削峰填谷 + 中间件 + 源码解析 + DefaultMQPushConsumer
- 难得的大扫除 - /2022/04/10/%E9%9A%BE%E5%BE%97%E7%9A%84%E5%A4%A7%E6%89%AB%E9%99%A4/ - 因为房东要来续签合同,记得之前她说要来看看,后来一直都没来成,一方面我们没打扫过也不想被看到,小房子东西从搬进来以后越来越多,虽然不是脏乱差,但也觉得有点不满意干净状态,这里不得不感叹房东家的有钱程度,买了房子自己都没进房子看过,买来只是为了个学籍,去年前房东把房子卖给新房东后,我们还是比较担心会要换房子了,这里其实是个我们在乎的优点略大于缺点的小房子,面积比较小,但是交通便利以及上下班通勤,周边配套也还不错,有个比较大的菜市场,虽然不常去,因为不太会挑不会还价,还是主要去附近一公里左右的超市,可以安静地挑菜,但是说实在的菜场的菜还是比超市新鲜一些。
大扫除说实在的住在这边以后就没有一次真正意义上的大扫除,因为平时也有在正常打扫,只有偶尔的厨房煤气灶和厕所专门清理下,平时扫地拖地都有做,但是因为说实在的这房子也比较老了,地板什么的都有明显的老化,表面上的油漆都已经被磨损掉了,一些污渍很难拖干净,而且包括厨房和厕所的瓷砖都是纹路特别多,加上磨损,基本是污渍很多,特别是厨房的,又有油渍,我们搬进来的时候厨房的地就已经不太干净了,还有一点就是虽然不是在乡下的房子,但是旁边有两条主干道,一般只要开着窗没几天就灰尘积起来了,公司的电脑在家两天不到就一层灰,而且有些灰在地上时间久一点就会变成那种棉絮状的,看起来就会觉得更脏,并且地板我们平时就是扫一下,然后拖一下没明显的脏东西跟大灰尘就好了,有一些脏的就很难拖干净。
这次的算是整体的大扫除,把柜子,桌子,茶几台,窗边的灰尘都要擦掉,有一些角落还是有蛮多灰尘,当然特别难受的就是电脑那些接口,线缆上的,都杂糅在一块,如果要全都解开了理顺了还是比较麻烦,并且得断电,所以还是尽力清理,但没有全弄开了(我承认我是在偷懒,这里得说下清理了键盘,键盘之前都是放着用,也没盖住,按键缝里就很容易积灰也很难清理,这次索性直接把键全拔了,但是里面的清理也还是挺麻烦,因为不是平板一块,而且还有小孔,有些缝隙也比较难擦进去,只能慢慢地用牙线棒裹着抹布还有棉签擦一下,然后把键帽用洗手液什么的都擦一下洗洗干净,最后晾干了装好感觉就是一把新键盘了,后面主要是拖地了,这次最神奇的就是这个拖地,本来我就跟 LD 吹牛说拖地我是专业的,从小拖到大,有些地板缝边上的污渍,我又是用力来回拖,再用脚踩着拖,还是能把一些原来以为拖不掉的污渍给拖干净了,但是后来的厨房就比较难,用洗洁精来回拖感觉一点都起不来,可能是污渍积了太久了,一开始都想要放弃了,就打算拖干就好了,后来突然看到旁边有个洗衣服的板刷,结果竟然能刷起来,这样就停不下来了,说累是真的非常累,感觉刷一块瓷砖就要休息一会,但是整体刷完之后就是焕然一新的赶脚,简直太有成就感了。

+ 是何原因竟让两人深夜奔袭十公里 + /2022/06/05/%E6%98%AF%E4%BD%95%E5%8E%9F%E5%9B%A0%E7%AB%9F%E8%AE%A9%E4%B8%A4%E4%BA%BA%E6%B7%B1%E5%A4%9C%E5%A5%94%E8%A2%AD%E5%8D%81%E5%85%AC%E9%87%8C/ + 偶尔来个标题党,不过也是一次比较神奇的经历
上周五下班后跟 LD 约好去吃牛蛙,某个朋友好像对这类都不太能接受,我以前小时候也不常吃,但是这类其实都是口味比较重,没有那种肉本身的腥味,而且肉质比较特殊,吃过几次以后就有点爱上了,这次刚好是 LD 买的新店开业券,比较优惠(我们俩都是有点勤俭持家的,想着小电驴还有三格电,这家店又有点远,骑车单趟大概要 10 公里左右,有点担心,LD 说应该可以的,就一起骑了过去(跟她轮换着骑电驴和共享单车),结果大概离吃牛蛙的店还有一辆公里的时候,电量就报警了,只有最后一个红色的了,一共是五格,最后一格是红色的,提示我们该充电了,这样子是真的有点慌了,之前开了几个月都是还有一两格电的时候就充电了,没有试验过究竟这最后一格电能开多远,总之先到了再说。
这家牛蛙没想到还挺热闹的,我们到那已经快八点了,还有十几个排队的,有个人还想插队(向来是不惯着这种,一边去),旁边刚好是有些商店就逛了下,就跟常规的商业中心差不多,开业的比较早也算是这一边比较核心的商业综合体了,各种品牌都有,而且还有彩票售卖点的,只是不太理解现在的彩票都是兑图案的,而且要 10 块钱一张,我的概念里还是以前 2 块钱一张的双色球,偶尔能中个五块十块的。排队还剩四五个的时候我们就去门口坐着等了,又等了大概二十分钟才排到我们,靠近我们等的里面的位置,好像好几个小女生在那还叫了外卖奶茶,然后各种拍照,小朋友的生活还是丰富多彩的,我们到了就点了蒜蓉的,没有点传说中紫苏的,菜单上画了 N 个🌶,LD 还是想体验下说下次人多点可以试试,我们俩吃怕太辣了吃不消,口味还是不错的,这家貌似是 LD 闺蜜推荐的,口碑有保证。两个人光吃一个蛙锅就差不多了,本来还想再点个其他的,后面实在吃不下了就没点,吃完还是惯例点了个奶茶,不过是真的不好找,太大了。
本来是就回个家的事了,结果就因为前面铺垫的小电驴已经只有一格电了,标题的深夜奔袭十公里就出现了,这个电驴估计续航也虚标挺严重的,电量也是这样,骑的时候显示只有一格电,关掉再开起来又有三格,然后我们回去骑了没一公里就没电了,这下是真的完球了,觉得车子也比较新,直接停外面也不放心,就开始了深夜的十公里推电驴奔袭,LD 看我太累还帮我中间推了一段,虽然是跑过十公里的,但是推着个没电的电驴,还是着实不容易的,LD 也是陪我推着车走,中间好几次说我们把电驴停着打车回去,把电池带回去充满了明天再过来骑车,可能是心态已经转变了,这应该算是一次很特殊的体验,从我们吃完出来大概十点,到最后我们推到小区,大概是过了两个小时的样子,说句深夜也不太过分,把这次这么推车看成了一种意志力的考验,很多事情也都是怕坚持,或者说怕不能坚持,想走得远,没有持续的努力坚持肯定是不行的,所以还是坚持着把车推回来(好吧,我其实主要是怕车被偷,毕竟刚来杭州上学没多久就被偷了自行车留下了阴影),中间感谢 LD,跟我轮着推了一段路,有些下坡的时候还在那坐着用脚蹬一下,离家里大概还有一公里的时候,有个骑电瓶车的大叔还停下来问我们是车破了还是没电了,应该是出于好意吧,最后快到的时候真的非常渴,买了2.5 升的水被我一口气喝了大半瓶,奶茶已经不能起到解渴的作用了,本来以为这样能消耗很多,结果第二天一称还重了,(我的称一定有问题 233

]]>
生活 生活 - 大扫除
diff --git a/sitemap.xml b/sitemap.xml index bccbf7a5b1..8399316df7 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -380,7 +380,7 @@ - https://nicksxs.me/2021/05/01/Leetcode-48-%E6%97%8B%E8%BD%AC%E5%9B%BE%E5%83%8F-Rotate-Image-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + https://nicksxs.me/2021/07/04/Leetcode-42-%E6%8E%A5%E9%9B%A8%E6%B0%B4-Trapping-Rain-Water-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ 2022-06-11 @@ -389,7 +389,7 @@ - https://nicksxs.me/2022/03/13/Leetcode-83-%E5%88%A0%E9%99%A4%E6%8E%92%E5%BA%8F%E9%93%BE%E8%A1%A8%E4%B8%AD%E7%9A%84%E9%87%8D%E5%A4%8D%E5%85%83%E7%B4%A0-Remove-Duplicates-from-Sorted-List-Easy-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + https://nicksxs.me/2021/05/01/Leetcode-48-%E6%97%8B%E8%BD%AC%E5%9B%BE%E5%83%8F-Rotate-Image-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ 2022-06-11 @@ -398,7 +398,7 @@ - https://nicksxs.me/2020/08/06/Linux-%E4%B8%8B-grep-%E5%91%BD%E4%BB%A4%E7%9A%84%E4%B8%80%E7%82%B9%E5%B0%8F%E6%8A%80%E5%B7%A7/ + https://nicksxs.me/2022/03/13/Leetcode-83-%E5%88%A0%E9%99%A4%E6%8E%92%E5%BA%8F%E9%93%BE%E8%A1%A8%E4%B8%AD%E7%9A%84%E9%87%8D%E5%A4%8D%E5%85%83%E7%B4%A0-Remove-Duplicates-from-Sorted-List-Easy-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ 2022-06-11 @@ -407,7 +407,7 @@ - https://nicksxs.me/2020/09/06/mybatis-%E7%9A%84-%E5%92%8C-%E6%98%AF%E6%9C%89%E5%95%A5%E5%8C%BA%E5%88%AB/ + https://nicksxs.me/2020/08/06/Linux-%E4%B8%8B-grep-%E5%91%BD%E4%BB%A4%E7%9A%84%E4%B8%80%E7%82%B9%E5%B0%8F%E6%8A%80%E5%B7%A7/ 2022-06-11 @@ -416,7 +416,7 @@ - https://nicksxs.me/2021/07/04/Leetcode-42-%E6%8E%A5%E9%9B%A8%E6%B0%B4-Trapping-Rain-Water-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ + https://nicksxs.me/2020/09/06/mybatis-%E7%9A%84-%E5%92%8C-%E6%98%AF%E6%9C%89%E5%95%A5%E5%8C%BA%E5%88%AB/ 2022-06-11 @@ -425,7 +425,7 @@ - https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%BA%8C/ 2022-06-11 @@ -443,7 +443,7 @@ - https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0-%E6%89%80%E6%9C%89%E6%9D%83%E4%BA%8C/ + https://nicksxs.me/2021/04/18/rust%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ 2022-06-11 @@ -496,15 +496,6 @@ 0.6 - - https://nicksxs.me/2021/09/04/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8/ - - 2022-06-11 - - monthly - 0.6 - - https://nicksxs.me/2021/10/03/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8%E4%B8%89/ @@ -569,7 +560,7 @@ - https://nicksxs.me/2021/03/28/%E8%81%8A%E8%81%8A-Linux-%E4%B8%8B%E7%9A%84-top-%E5%91%BD%E4%BB%A4/ + https://nicksxs.me/2021/06/13/%E8%81%8A%E8%81%8A-Java-%E7%9A%84%E7%B1%BB%E5%8A%A0%E8%BD%BD%E6%9C%BA%E5%88%B6%E4%BA%8C/ 2022-06-11 @@ -578,7 +569,7 @@ - https://nicksxs.me/2021/06/13/%E8%81%8A%E8%81%8A-Java-%E7%9A%84%E7%B1%BB%E5%8A%A0%E8%BD%BD%E6%9C%BA%E5%88%B6%E4%BA%8C/ + https://nicksxs.me/2021/03/28/%E8%81%8A%E8%81%8A-Linux-%E4%B8%8B%E7%9A%84-top-%E5%91%BD%E4%BB%A4/ 2022-06-11 @@ -587,7 +578,7 @@ - https://nicksxs.me/2022/01/09/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E5%88%86%E5%BA%93%E5%88%86%E8%A1%A8%E4%B8%8B%E7%9A%84%E5%88%86%E9%A1%B5%E6%96%B9%E6%A1%88/ + https://nicksxs.me/2020/08/02/%E8%81%8A%E8%81%8A-Java-%E8%87%AA%E5%B8%A6%E7%9A%84%E9%82%A3%E4%BA%9B%E9%80%86%E5%A4%A9%E5%B7%A5%E5%85%B7/ 2022-06-11 @@ -596,7 +587,7 @@ - https://nicksxs.me/2021/12/26/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E5%8E%9F%E7%90%86%E5%88%9D%E7%AF%87/ + https://nicksxs.me/2022/01/09/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E5%88%86%E5%BA%93%E5%88%86%E8%A1%A8%E4%B8%8B%E7%9A%84%E5%88%86%E9%A1%B5%E6%96%B9%E6%A1%88/ 2022-06-11 @@ -614,7 +605,7 @@ - https://nicksxs.me/2021/04/04/%E8%81%8A%E8%81%8A-dubbo-%E7%9A%84%E7%BA%BF%E7%A8%8B%E6%B1%A0/ + https://nicksxs.me/2021/12/26/%E8%81%8A%E8%81%8A-Sharding-Jdbc-%E7%9A%84%E7%AE%80%E5%8D%95%E5%8E%9F%E7%90%86%E5%88%9D%E7%AF%87/ 2022-06-11 @@ -623,7 +614,7 @@ - https://nicksxs.me/2020/08/02/%E8%81%8A%E8%81%8A-Java-%E8%87%AA%E5%B8%A6%E7%9A%84%E9%82%A3%E4%BA%9B%E9%80%86%E5%A4%A9%E5%B7%A5%E5%85%B7/ + https://nicksxs.me/2021/04/04/%E8%81%8A%E8%81%8A-dubbo-%E7%9A%84%E7%BA%BF%E7%A8%8B%E6%B1%A0/ 2022-06-11 @@ -658,6 +649,15 @@ 0.6 + + https://nicksxs.me/2021/09/04/%E8%81%8A%E4%B8%80%E4%B8%8B-RocketMQ-%E7%9A%84%E6%B6%88%E6%81%AF%E5%AD%98%E5%82%A8/ + + 2022-06-11 + + monthly + 0.6 + + https://nicksxs.me/2021/10/07/Leetcode-021-%E5%90%88%E5%B9%B6%E4%B8%A4%E4%B8%AA%E6%9C%89%E5%BA%8F%E9%93%BE%E8%A1%A8-Merge-Two-Sorted-Lists-%E9%A2%98%E8%A7%A3%E5%88%86%E6%9E%90/ @@ -1622,7 +1622,7 @@ - https://nicksxs.me/2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ + https://nicksxs.me/2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/ 2020-01-12 @@ -1631,7 +1631,7 @@ - https://nicksxs.me/2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/ + https://nicksxs.me/2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ 2020-01-12 @@ -1640,7 +1640,7 @@ - https://nicksxs.me/baidu_verify_Gl8jtoDV4z.html + https://nicksxs.me/categories/index.html 2020-01-12 @@ -1649,7 +1649,7 @@ - https://nicksxs.me/categories/index.html + https://nicksxs.me/baidu_verify_Gl8jtoDV4z.html 2020-01-12 @@ -1712,7 +1712,7 @@ - https://nicksxs.me/2014/12/23/my-new-post/ + https://nicksxs.me/2015/06/22/invert-binary-tree/ 2020-01-12 @@ -1721,7 +1721,7 @@ - https://nicksxs.me/2015/06/22/invert-binary-tree/ + https://nicksxs.me/2014/12/23/my-new-post/ 2020-01-12 @@ -1973,6 +1973,13 @@ 0.2 + + https://nicksxs.me/tags/c/ + 2023-01-15 + weekly + 0.2 + + https://nicksxs.me/tags/%E5%B9%B6%E5%8F%91/ 2023-01-15 @@ -2029,13 +2036,6 @@ 0.2 - - https://nicksxs.me/tags/c/ - 2023-01-15 - weekly - 0.2 - - https://nicksxs.me/tags/Apollo/ 2023-01-15 @@ -2247,35 +2247,35 @@ - https://nicksxs.me/tags/stack/ + https://nicksxs.me/tags/Shift-2D-Grid/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/min-stack/ + https://nicksxs.me/tags/stack/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E6%9C%80%E5%B0%8F%E6%A0%88/ + https://nicksxs.me/tags/min-stack/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/leetcode-155/ + https://nicksxs.me/tags/%E6%9C%80%E5%B0%8F%E6%A0%88/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Shift-2D-Grid/ + https://nicksxs.me/tags/leetcode-155/ 2023-01-15 weekly 0.2 @@ -2296,14 +2296,14 @@ - https://nicksxs.me/tags/Lowest-Common-Ancestor-of-a-Binary-Tree/ + https://nicksxs.me/tags/First-Bad-Version/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/First-Bad-Version/ + https://nicksxs.me/tags/Lowest-Common-Ancestor-of-a-Binary-Tree/ 2023-01-15 weekly 0.2 @@ -2331,245 +2331,245 @@ - https://nicksxs.me/tags/Rotate-Image/ + https://nicksxs.me/tags/dp/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%9F%A9%E9%98%B5/ + https://nicksxs.me/tags/%E4%BB%A3%E7%A0%81%E9%A2%98%E8%A7%A3/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Remove-Duplicates-from-Sorted-List/ + https://nicksxs.me/tags/Trapping-Rain-Water/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/linux/ + https://nicksxs.me/tags/%E6%8E%A5%E9%9B%A8%E6%B0%B4/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/grep/ + https://nicksxs.me/tags/Leetcode-42/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E8%BD%AC%E4%B9%89/ + https://nicksxs.me/tags/Rotate-Image/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/mfc/ + https://nicksxs.me/tags/%E7%9F%A9%E9%98%B5/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Maven/ + https://nicksxs.me/tags/Remove-Duplicates-from-Sorted-List/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/C/ + https://nicksxs.me/tags/linux/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Redis/ + https://nicksxs.me/tags/grep/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Distributed-Lock/ + https://nicksxs.me/tags/%E8%BD%AC%E4%B9%89/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%88%86%E5%B8%83%E5%BC%8F%E9%94%81/ + https://nicksxs.me/tags/mfc/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/hadoop/ + https://nicksxs.me/tags/Maven/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/cluster/ + https://nicksxs.me/tags/C/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/docker/ + https://nicksxs.me/tags/Redis/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/mysql/ + https://nicksxs.me/tags/Distributed-Lock/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Docker/ + https://nicksxs.me/tags/%E5%88%86%E5%B8%83%E5%BC%8F%E9%94%81/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/namespace/ + https://nicksxs.me/tags/hadoop/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/cgroup/ + https://nicksxs.me/tags/cluster/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Dockerfile/ + https://nicksxs.me/tags/docker/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/echo/ + https://nicksxs.me/tags/mysql/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/uname/ + https://nicksxs.me/tags/Docker/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%8F%91%E8%A1%8C%E7%89%88/ + https://nicksxs.me/tags/namespace/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Gogs/ + https://nicksxs.me/tags/cgroup/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Webhook/ + https://nicksxs.me/tags/Dockerfile/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%8D%9A%E5%AE%A2%EF%BC%8C%E6%96%87%E7%AB%A0/ + https://nicksxs.me/tags/echo/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Mysql/ + https://nicksxs.me/tags/uname/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Mybatis/ + https://nicksxs.me/tags/%E5%8F%91%E8%A1%8C%E7%89%88/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Sql%E6%B3%A8%E5%85%A5/ + https://nicksxs.me/tags/Gogs/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%BC%93%E5%AD%98/ + https://nicksxs.me/tags/Webhook/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/dp/ + https://nicksxs.me/tags/%E5%8D%9A%E5%AE%A2%EF%BC%8C%E6%96%87%E7%AB%A0/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E4%BB%A3%E7%A0%81%E9%A2%98%E8%A7%A3/ + https://nicksxs.me/tags/Mysql/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Trapping-Rain-Water/ + https://nicksxs.me/tags/Mybatis/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E6%8E%A5%E9%9B%A8%E6%B0%B4/ + https://nicksxs.me/tags/Sql%E6%B3%A8%E5%85%A5/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Leetcode-42/ + https://nicksxs.me/tags/%E7%BC%93%E5%AD%98/ 2023-01-15 weekly 0.2 @@ -2611,35 +2611,35 @@ - https://nicksxs.me/tags/mq/ + https://nicksxs.me/tags/redis/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/im/ + https://nicksxs.me/tags/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/redis/ + https://nicksxs.me/tags/%E6%BA%90%E7%A0%81/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/ + https://nicksxs.me/tags/mq/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E6%BA%90%E7%A0%81/ + https://nicksxs.me/tags/im/ 2023-01-15 weekly 0.2 @@ -2975,42 +2975,42 @@ - https://nicksxs.me/tags/%E8%BF%90%E5%8A%A8/ + https://nicksxs.me/tags/git/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%87%8F%E8%82%A5/ + https://nicksxs.me/tags/scp/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E8%B7%91%E6%AD%A5/ + https://nicksxs.me/tags/%E8%BF%90%E5%8A%A8/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%B9%B2%E6%B4%BB/ + https://nicksxs.me/tags/%E5%87%8F%E8%82%A5/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/git/ + https://nicksxs.me/tags/%E8%B7%91%E6%AD%A5/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/scp/ + https://nicksxs.me/tags/%E5%B9%B2%E6%B4%BB/ 2023-01-15 weekly 0.2 @@ -3087,7 +3087,7 @@ - https://nicksxs.me/tags/DefaultMQPushConsumer/ + https://nicksxs.me/tags/NameServer/ 2023-01-15 weekly 0.2 @@ -3212,13 +3212,6 @@ 0.2 - - https://nicksxs.me/tags/NameServer/ - 2023-01-15 - weekly - 0.2 - - https://nicksxs.me/tags/Synchronized/ 2023-01-15 @@ -3254,13 +3247,6 @@ 0.2 - - https://nicksxs.me/tags/top/ - 2023-01-15 - weekly - 0.2 - - https://nicksxs.me/tags/%E7%B1%BB%E5%8A%A0%E8%BD%BD/ 2023-01-15 @@ -3318,182 +3304,189 @@ - https://nicksxs.me/tags/Broker/ + https://nicksxs.me/tags/top/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Sharding-Jdbc/ + https://nicksxs.me/tags/JPS/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/ThreadPool/ + https://nicksxs.me/tags/JStack/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%BA%BF%E7%A8%8B%E6%B1%A0/ + https://nicksxs.me/tags/JMap/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/FixedThreadPool/ + https://nicksxs.me/tags/Broker/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/LimitedThreadPool/ + https://nicksxs.me/tags/Sharding-Jdbc/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/EagerThreadPool/ + https://nicksxs.me/tags/ThreadPool/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/CachedThreadPool/ + https://nicksxs.me/tags/%E7%BA%BF%E7%A8%8B%E6%B1%A0/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/mvcc/ + https://nicksxs.me/tags/FixedThreadPool/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/read-view/ + https://nicksxs.me/tags/LimitedThreadPool/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/gap-lock/ + https://nicksxs.me/tags/EagerThreadPool/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/next-key-lock/ + https://nicksxs.me/tags/CachedThreadPool/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%B9%BB%E8%AF%BB/ + https://nicksxs.me/tags/mvcc/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/JPS/ + https://nicksxs.me/tags/read-view/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/JStack/ + https://nicksxs.me/tags/gap-lock/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/JMap/ + https://nicksxs.me/tags/next-key-lock/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%B4%A2%E5%BC%95/ + https://nicksxs.me/tags/%E5%B9%BB%E8%AF%BB/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/is-null/ + https://nicksxs.me/tags/%E7%BC%93%E5%AD%98%E7%A9%BF%E9%80%8F/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/is-not-null/ + https://nicksxs.me/tags/%E7%BC%93%E5%AD%98%E5%87%BB%E7%A9%BF/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/procedure/ + https://nicksxs.me/tags/%E7%BC%93%E5%AD%98%E9%9B%AA%E5%B4%A9/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%BC%93%E5%AD%98%E7%A9%BF%E9%80%8F/ + https://nicksxs.me/tags/%E5%B8%83%E9%9A%86%E8%BF%87%E6%BB%A4%E5%99%A8/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%BC%93%E5%AD%98%E5%87%BB%E7%A9%BF/ + https://nicksxs.me/tags/bloom-filter/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%BC%93%E5%AD%98%E9%9B%AA%E5%B4%A9/ + https://nicksxs.me/tags/%E4%BA%92%E6%96%A5%E9%94%81/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%B8%83%E9%9A%86%E8%BF%87%E6%BB%A4%E5%99%A8/ + https://nicksxs.me/tags/%E7%B4%A2%E5%BC%95/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/bloom-filter/ + https://nicksxs.me/tags/is-null/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E4%BA%92%E6%96%A5%E9%94%81/ + https://nicksxs.me/tags/is-not-null/ + 2023-01-15 + weekly + 0.2 + + + + https://nicksxs.me/tags/procedure/ 2023-01-15 weekly 0.2 @@ -3661,84 +3654,84 @@ - https://nicksxs.me/tags/%E6%89%B6%E6%A2%AF/ + https://nicksxs.me/tags/Thread-dump/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E8%B8%A9%E8%B8%8F/ + https://nicksxs.me/tags/%E6%89%B6%E6%A2%AF/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%AE%89%E5%85%A8/ + https://nicksxs.me/tags/%E8%B8%A9%E8%B8%8F/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E7%94%B5%E7%93%B6%E8%BD%A6/ + https://nicksxs.me/tags/%E5%AE%89%E5%85%A8/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/Thread-dump/ + https://nicksxs.me/tags/%E7%94%B5%E7%93%B6%E8%BD%A6/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/ + https://nicksxs.me/tags/%E8%BF%9C%E7%A8%8B%E5%8A%9E%E5%85%AC/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E4%B8%A4%E9%98%B6%E6%AE%B5%E6%8F%90%E4%BA%A4/ + https://nicksxs.me/tags/%E9%AA%91%E8%BD%A6/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E4%B8%89%E9%98%B6%E6%AE%B5%E6%8F%90%E4%BA%A4/ + https://nicksxs.me/tags/%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/2PC/ + https://nicksxs.me/tags/%E4%B8%A4%E9%98%B6%E6%AE%B5%E6%8F%90%E4%BA%A4/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/3PC/ + https://nicksxs.me/tags/%E4%B8%89%E9%98%B6%E6%AE%B5%E6%8F%90%E4%BA%A4/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E8%BF%9C%E7%A8%8B%E5%8A%9E%E5%85%AC/ + https://nicksxs.me/tags/2PC/ 2023-01-15 weekly 0.2 - https://nicksxs.me/tags/%E9%AA%91%E8%BD%A6/ + https://nicksxs.me/tags/3PC/ 2023-01-15 weekly 0.2 @@ -3828,6 +3821,13 @@ 0.2 + + https://nicksxs.me/tags/DefaultMQPushConsumer/ + 2023-01-15 + weekly + 0.2 + + @@ -3859,14 +3859,14 @@ - https://nicksxs.me/categories/leetcode/ + https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/2020/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/2020/ + https://nicksxs.me/categories/leetcode/ 2023-01-15 weekly 0.2 @@ -3887,14 +3887,14 @@ - https://nicksxs.me/categories/Binary-Tree/ + https://nicksxs.me/categories/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/ + https://nicksxs.me/categories/Binary-Tree/ 2023-01-15 weekly 0.2 @@ -3936,14 +3936,14 @@ - https://nicksxs.me/categories/leetcode/java/ + https://nicksxs.me/categories/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/2020/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/2020/ + https://nicksxs.me/categories/leetcode/java/ 2023-01-15 weekly 0.2 @@ -4041,14 +4041,14 @@ - https://nicksxs.me/categories/Java/Apollo/value/ + https://nicksxs.me/categories/linked-list/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/linked-list/ + https://nicksxs.me/categories/Java/Apollo/value/ 2023-01-15 weekly 0.2 @@ -4076,28 +4076,28 @@ - https://nicksxs.me/categories/Linux/ + https://nicksxs.me/categories/Interceptor-AOP/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Interceptor-AOP/ + https://nicksxs.me/categories/Linux/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Java/Maven/ + https://nicksxs.me/categories/leetcode/java/Binary-Tree/DFS/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/leetcode/java/Binary-Tree/DFS/ + https://nicksxs.me/categories/Java/Maven/ 2023-01-15 weekly 0.2 @@ -4111,21 +4111,21 @@ - https://nicksxs.me/categories/data-analysis/ + https://nicksxs.me/categories/leetcode/java/DP/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/docker/ + https://nicksxs.me/categories/data-analysis/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/leetcode/java/DP/ + https://nicksxs.me/categories/docker/ 2023-01-15 weekly 0.2 @@ -4146,42 +4146,42 @@ - https://nicksxs.me/categories/%E6%8C%81%E7%BB%AD%E9%9B%86%E6%88%90/ + https://nicksxs.me/categories/leetcode/java/linked-list/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Java/Mybatis/ + https://nicksxs.me/categories/%E6%8C%81%E7%BB%AD%E9%9B%86%E6%88%90/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/leetcode/java/linked-list/ + https://nicksxs.me/categories/Java/Mybatis/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/nginx/ + https://nicksxs.me/categories/leetcode/java/string/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/leetcode/java/string/ + https://nicksxs.me/categories/nginx/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Linux/%E5%91%BD%E4%BB%A4/ + https://nicksxs.me/categories/Spring/ 2023-01-15 weekly 0.2 @@ -4195,14 +4195,14 @@ - https://nicksxs.me/categories/%E8%AF%AD%E8%A8%80/ + https://nicksxs.me/categories/Linux/%E5%91%BD%E4%BB%A4/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Spring/ + https://nicksxs.me/categories/%E8%AF%AD%E8%A8%80/ 2023-01-15 weekly 0.2 @@ -4328,14 +4328,14 @@ - https://nicksxs.me/categories/Mysql/ + https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E5%BD%B1%E8%AF%84/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E5%BD%B1%E8%AF%84/ + https://nicksxs.me/categories/Mysql/ 2023-01-15 weekly 0.2 @@ -4363,14 +4363,14 @@ - https://nicksxs.me/categories/Dubbo-RPC/ + https://nicksxs.me/categories/Spring/Servlet/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Linux/%E5%91%BD%E4%BB%A4/grep/ + https://nicksxs.me/categories/Dubbo-RPC/ 2023-01-15 weekly 0.2 @@ -4391,21 +4391,21 @@ - https://nicksxs.me/categories/Spring/Servlet/ + https://nicksxs.me/categories/Linux/%E5%91%BD%E4%BB%A4/grep/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Dubbo-%E7%BA%BF%E7%A8%8B%E6%B1%A0/ + https://nicksxs.me/categories/Thread-dump/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Thread-dump/ + https://nicksxs.me/categories/Dubbo-%E7%BA%BF%E7%A8%8B%E6%B1%A0/ 2023-01-15 weekly 0.2 @@ -4440,28 +4440,28 @@ - https://nicksxs.me/categories/Redis/%E6%BA%90%E7%A0%81/ + https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E6%97%85%E6%B8%B8/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E6%97%85%E6%B8%B8/ + https://nicksxs.me/categories/Redis/%E6%BA%90%E7%A0%81/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/C/ + https://nicksxs.me/categories/%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/ + https://nicksxs.me/categories/C/ 2023-01-15 weekly 0.2 @@ -4531,35 +4531,35 @@ - https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E8%BF%90%E5%8A%A8/%E8%B7%91%E6%AD%A5/ + https://nicksxs.me/categories/git/%E5%B0%8F%E6%8A%80%E5%B7%A7/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/git/%E5%B0%8F%E6%8A%80%E5%B7%A7/ + https://nicksxs.me/categories/shell/%E5%B0%8F%E6%8A%80%E5%B7%A7/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/shell/%E5%B0%8F%E6%8A%80%E5%B7%A7/ + https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E8%BF%90%E5%8A%A8/%E8%B7%91%E6%AD%A5/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Mysql/Sql%E6%B3%A8%E5%85%A5/ + https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E5%BD%B1%E8%AF%84/2020/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E7%94%9F%E6%B4%BB/%E5%BD%B1%E8%AF%84/2020/ + https://nicksxs.me/categories/Mysql/Sql%E6%B3%A8%E5%85%A5/ 2023-01-15 weekly 0.2 @@ -4580,14 +4580,14 @@ - https://nicksxs.me/categories/Dubbo/ + https://nicksxs.me/categories/Spring/Servlet/Interceptor/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E5%B0%8F%E6%8A%80%E5%B7%A7/grep/ + https://nicksxs.me/categories/Dubbo/ 2023-01-15 weekly 0.2 @@ -4601,35 +4601,35 @@ - https://nicksxs.me/categories/Spring/Servlet/Interceptor/ + https://nicksxs.me/categories/%E5%B0%8F%E6%8A%80%E5%B7%A7/grep/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Mysql/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/ + https://nicksxs.me/categories/%E9%97%AE%E9%A2%98%E6%8E%92%E6%9F%A5/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E9%97%AE%E9%A2%98%E6%8E%92%E6%9F%A5/ + https://nicksxs.me/categories/Mysql/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Mysql/%E7%B4%A2%E5%BC%95/ + https://nicksxs.me/categories/Redis/%E7%BC%93%E5%AD%98/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Redis/%E7%BC%93%E5%AD%98/ + https://nicksxs.me/categories/Mysql/%E7%B4%A2%E5%BC%95/ 2023-01-15 weekly 0.2 @@ -4650,14 +4650,14 @@ - https://nicksxs.me/categories/C/Redis/ + https://nicksxs.me/categories/%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/%E4%B8%A4%E9%98%B6%E6%AE%B5%E6%8F%90%E4%BA%A4/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A1/%E4%B8%A4%E9%98%B6%E6%AE%B5%E6%8F%90%E4%BA%A4/ + https://nicksxs.me/categories/C/Redis/ 2023-01-15 weekly 0.2 @@ -4713,14 +4713,14 @@ - https://nicksxs.me/categories/Dubbo/%E5%AE%B9%E9%94%99%E6%9C%BA%E5%88%B6/ + https://nicksxs.me/categories/Spring/Servlet/Interceptor/AOP/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E5%B0%8F%E6%8A%80%E5%B7%A7/grep/%E6%9F%A5%E6%97%A5%E5%BF%97/ + https://nicksxs.me/categories/Dubbo/%E5%AE%B9%E9%94%99%E6%9C%BA%E5%88%B6/ 2023-01-15 weekly 0.2 @@ -4734,42 +4734,42 @@ - https://nicksxs.me/categories/Spring/Servlet/Interceptor/AOP/ + https://nicksxs.me/categories/%E5%B0%8F%E6%8A%80%E5%B7%A7/grep/%E6%9F%A5%E6%97%A5%E5%BF%97/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Mysql/%E6%BA%90%E7%A0%81/ + https://nicksxs.me/categories/%E5%B7%A5%E5%85%B7/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/Dubbo/%E7%BA%BF%E7%A8%8B%E6%B1%A0/ + https://nicksxs.me/categories/Mysql/%E6%BA%90%E7%A0%81/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E5%B7%A5%E5%85%B7/ + https://nicksxs.me/categories/Dubbo/%E7%BA%BF%E7%A8%8B%E6%B1%A0/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/C/Mysql/ + https://nicksxs.me/categories/%E7%BC%93%E5%AD%98/ 2023-01-15 weekly 0.2 - https://nicksxs.me/categories/%E7%BC%93%E5%AD%98/ + https://nicksxs.me/categories/C/Mysql/ 2023-01-15 weekly 0.2 diff --git a/tags/java/page/2/index.html b/tags/java/page/2/index.html index b6744e265e..e7f836deb1 100644 --- a/tags/java/page/2/index.html +++ b/tags/java/page/2/index.html @@ -1 +1 @@ -标签: java | Nicksxs's Blog

Nicksxs's Blog

What hurts more, the pain of hard work or the pain of regret?

0%
\ No newline at end of file +标签: Java | Nicksxs's Blog

Nicksxs's Blog

What hurts more, the pain of hard work or the pain of regret?

0%
\ No newline at end of file