不多说,直接上干货!

  一切来源于官网

http://kafka.apache.org/documentation/

Kafka as a Storage System

kafka作为一个存储系统

  Any message queue that allows publishing messages decoupled from consuming them is effectively acting as a storage system for the in-flight messages. What is different about Kafka is that it is a very good storage system.

所有发布消息到消息队列和消费分离的系统,实际上都充当了一个存储系统(发布的消息先存储起来)。Kafka比别的系统的优势是它是一个非常高性能的存储系统。

  Data written to Kafka is written to disk and replicated for fault-tolerance. Kafka allows producers to wait on acknowledgement so that a write isn't considered complete until it is fully replicated and guaranteed to persist even if the server written to fails.

写入到kafka的数据将写到磁盘并复制到集群中保证容错性。并允许生产者等待消息应答,直到消息完全写入。

  The disk structures Kafka uses scale well—Kafka will perform the same whether you have 50 KB or 50 TB of persistent data on the server.

kafka的磁盘结构 - 无论你服务器上有50KB或50TB,执行是相同的。

  As a result of taking storage seriously and allowing the clients to control their read position, you can think of Kafka as a kind of special purpose distributed filesystem dedicated to high-performance, low-latency commit log storage, replication, and propagation.

client来控制读取数据的位置。你还可以认为kafka是一种专用于高性能,低延迟,提交日志存储,复制,和传播特殊用途的分布式文件系统。

最新文章

  1. BlockingQueue使用
  2. 在shell下,用命令将U盘挂载到ubuntu上,并将文件copy到U盘里面
  3. hadoop: hdfs API示例
  4. jquery里的on方法使用
  5. case when then else end
  6. 网站CSS选择器性能讨论
  7. 每天一个linux命令(34):kill命令
  8. jsp中页面间传汉字参数转码
  9. iOS app应用界面加载卡顿的问题
  10. 解决未能从程序集xxx中加载类型System.ServiceModel.Activation.HttpModule的问题
  11. OutputCache各参数的说明
  12. python操作csv-xls完善后的代码
  13. Window2003、xp远程备份数据库文件(xcopy+rar+pscp)
  14. 《Django By Example》第十一章 中文 翻译 (个人学习,渣翻)
  15. Redis学习-持久化
  16. 页面中的平滑滚动——smooth-scroll.js的使用
  17. 安卓ADB学习笔记
  18. thinkphp提示不支持mysqli或者mysql
  19. JNI 记
  20. Solr记录-solr检索和查询数据

热门文章

  1. .net 项目分层及规范
  2. 【RHEL7/CentOS7基本配置】
  3. 【转】python的zipfile压缩、解压缩
  4. qqwry - 纯真ip库的golang服务
  5. Python 查找Twitter中特定话题中最流行的10个转发Tweet
  6. js 图片轮转
  7. xml中控件调用构造方法
  8. Hive里的分区、分桶、视图和索引再谈
  9. Linux集群的I/O性能测试
  10. Kinect 开发 —— 常见手势识别(下)