Kafka的架构 包括Kafka的基本组成,Kafka的拓扑结构以及Kafka的内部通信协议。Kafka内部的通信协议是建立在Kafka的拓扑结构之上,而Kafka的拓扑结构是由Kafka的基本模块所组成的。 AK RELEASE 2.5.0 APRIL 15, 2020 Kafka的基本组成 Ka ...
分类:
其他好文 时间:
2020-07-10 15:36:48
阅读次数:
51
需求背景 项目需要对接大数据平台,定时更新相关的统计数据 version SpringBoot: 2.2.4.RELEASE MySQL: 5.5.4 Quartz: 2.3.0 实现 导入数据库表 因为Quartz 集群依赖于数据库,所以必须首先创建Quartz数据库表。Quartz 包括了所有被 ...
分类:
编程语言 时间:
2020-07-10 15:14:54
阅读次数:
97
SQL> select * from v$version;BANNER Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit ProductionPL/SQL Release 11.2.0.4.0 - Production ...
分类:
数据库 时间:
2020-07-10 11:33:39
阅读次数:
107
K3S https://k3s.io/ https://docs.rancher.cn/k3s/ https://rancher.com/docs/k3s/latest/en/ https://github.com/rancher/k3s https://github.com/rancher/k3s ...
分类:
其他好文 时间:
2020-07-10 00:18:17
阅读次数:
106
Laravel Redis分布式锁的使用 创建锁 use Illuminate\Support\Facades\Cache; $lock = Cache::lock('foo', 10); if ($lock->get()) { // 处理业务逻辑 sleep(3); $lock->release( ...
分类:
其他好文 时间:
2020-07-09 22:22:13
阅读次数:
117
检查环境 linux版本 [root@localhost ~]# cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core) SSE 4.2 [root@localhost ~]# grep -q sse4_2 /proc/cpuinfo ...
分类:
其他好文 时间:
2020-07-09 14:59:40
阅读次数:
334
#include "1.h"#include "pthread.h"static pthread_mutex_t __guard_mutex;static pthread_once_t __once_control = PTHREAD_ONCE_INIT;static void makeRecusi ...
分类:
其他好文 时间:
2020-07-09 13:46:07
阅读次数:
86
#1. journaling 相关的pull request librbd: integrate journaling support for IO operations #6541 (https://github.com/ceph/ceph/pull/6541) () librbd: integr ...
分类:
数据库 时间:
2020-07-09 12:14:39
阅读次数:
69
Widget.h: #ifndef WIDGET_H #define WIDGET_H #include<QWidget> #include<QMouseEvent> class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *p ...
分类:
其他好文 时间:
2020-07-09 01:18:01
阅读次数:
91