上一页 1 ··· 19 20 21 22 23
摘要: 1. 问题 在对hive表统计行数时发现如下异常 # count(*) select count(*) from userimages; 6302 # count(*) + count(result) select count(*), count(result) from userimages; 3 阅读全文
posted @ 2022-01-10 16:34 钱塘江畔 阅读(405) 评论(0) 推荐(0) 编辑
摘要: springboot打包配置文件不生效 阅读全文
posted @ 2021-12-17 20:35 钱塘江畔 阅读(895) 评论(0) 推荐(0) 编辑
摘要: 1. 问题描述 zk读取kafka的broker信息时报错,如下: 22:52:47,125 DEBUG ClientCnxn:846 - Reading reply sessionid:0x10b00878c620372, packet:: clientPath:null serverPath:n 阅读全文
posted @ 2021-12-12 23:00 钱塘江畔 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 1. fork项目 2. 将github开源项目克隆到本地(以EFAK为例) git clone https://github.com/smartloli/EFAK.git 用IDEA打开项目 3. 修改源代码并测试 使用编程技术修复bug,优化性能,增加功能等; 多模块项目重新打包,重新部署以进行 阅读全文
posted @ 2021-12-10 23:45 钱塘江畔 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 配置多模块项目 父工程 <packaging>pom</packaging> <name>kafkaa</name> <modules> <module>common</module> <module>api</module> <module>web</module> <module>core</m 阅读全文
posted @ 2021-12-10 23:34 钱塘江畔 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1. 现象 有一个test用户的CPU使用率100%,很可疑,想删掉这个用户(因为是个没啥用的测试用户),也删不掉,总是启动着一个进程,杀掉进程后又自动启动进程,导致userdel也执行不了,因为进程占用 2. 解决办法 2.1 查看进程的详细信息 cd /proc/pid cwd符号链接的是进程运 阅读全文
posted @ 2021-12-09 18:48 钱塘江畔 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 1. 整体架构 各角色之间的关系 集群部署架构 flowchart TB A[Master] & B[zookeeper] --> C[RegionServer] & D[RegionServer] & E[RegionServer] zookeeper 用于和客户端连接,存储hbase:meta表 阅读全文
posted @ 2021-09-05 12:07 钱塘江畔 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 4.3 Efficiency We have put significant effort into efficiency. One of our primary use cases is handling web activity data, which is very high volume: 阅读全文
posted @ 2021-08-14 17:47 钱塘江畔 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 4.design 4.1 Motivation We designed Kafka to be able to act as a unified platform for handling all the real-time data feeds a large company might have 阅读全文
posted @ 2021-08-08 21:41 钱塘江畔 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 1. kafka Apache Kafka is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, strea 阅读全文
posted @ 2021-08-08 20:15 钱塘江畔 阅读(107) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23