Title
摘要: 核心概念 1.1 kafka角色 1.1.1 Producer 生产者-创建消息 该角色将消息发布到Kafka的topic中。broker接收到生产者发送的消息后,broker将该消息追加到当前用于追加数据的 segment 文件中 一般情况下,一个消息会被发布到一个特定的主题上。 默认情况下通过轮 阅读全文
posted @ 2021-08-14 23:49 apeGcWell 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 1.1 介绍 ​ Kafka是最初由Linkedin公司开发,是一个分布式、分区的、多副本的、多生产者、多订阅者,基 于zookeeper协调的分布式日志系统(也可以当做MQ系统),常见可以用于web/nginx日志、访问日 志,消息服务等等,Linkedin于2010年贡献给了Apache基金会并 阅读全文
posted @ 2021-08-14 23:32 apeGcWell 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1. docker compose docker compose的步骤 * 创建Dockerfilee * service * docker-compose.ymal * docker-compose up 作用:批量容器编排 2. 安装docker compose 下载 curl -L https 阅读全文
posted @ 2021-08-12 00:00 apeGcWell 阅读(26) 评论(0) 推荐(0) 编辑
摘要: docker 0 docker 安装 安装连接 # 移除 yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ dock 阅读全文
posted @ 2021-08-11 23:56 apeGcWell 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1 使用 1.1 准备数据 user.csv 392456197008193000,张三,20,0 267456198006210000,李四,25,1 892456199007203000,王五,24,1 492456198712198000,赵六,26,2 392456197008193000, 阅读全文
posted @ 2021-08-11 23:29 apeGcWell 阅读(138) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-shaded-client</artifactId> <version>1.4.3</version> </dependency> <dependency> <gro 阅读全文
posted @ 2021-08-11 16:54 apeGcWell 阅读(1308) 评论(0) 推荐(0) 编辑