kafka基础概念

什么是kafka?

kafka在进入apache之前是LinkedIn开源的,LinkedIn在开源界有着很多的 贡献,比如分布式数据同步系统Databus,高性能计算引擎Cubert,Java异步处理框架ParSeq,Kafka流处理平台;kafka在2011年开源之后就加入了apache基金会。

官方定义有如下三个特性:

1、Publish and subscribe to streams of records,similar to a message queue or enterprise messaging system.

2、Store streams of records in a fault-tolerant durable way.

3、Process streams of records as they occur.

kakfa通常应用两类应用:

1、构建实时数据流管道;

2、构建实时的传输或响应的流数据的应用。

总结:Kafka是一个消息队列但不仅仅是一个消息队列。

原文地址:https://www.cnblogs.com/niuyg928/p/11143635.html