“Kafka”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
第32行: 第32行:
  
  
启动 Kafka
+
启动 Kafka<syntaxhighlight lang="shell-session">
 
+
[root@localhost ~]# cd /usr/local/kafka/kafka_2.11-2.4.0/bin/
kafka-server-start.sh
+
[root@localhost bin]# ./kafka-server-start.sh -daemon ../config/server.properties
 +
</syntaxhighlight>

2022年8月22日 (一) 08:19的版本

https://kafka.apache.org/

https://www.bilibili.com/video/BV1Xy4y1G7zA



What?

Kafka 是啥?

为大数据而生,高达百亿级 TPS 吞吐量的消息队列中间件

Why?

为什么要用它,为什么不是 RabbitMQ、RocketMQ?

它可以满足大数据领域高吞吐量项目的需求

How?

怎么实现的?


为什么使用消息队列

消息队列的流派

Kafka介绍

Kafka的基本知识


启动 Kafka

[root@localhost ~]# cd /usr/local/kafka/kafka_2.11-2.4.0/bin/
[root@localhost bin]# ./kafka-server-start.sh -daemon ../config/server.properties