文章詳情頁
java - kafka中partition設計的優點是什么?
瀏覽:90日期:2023-10-28 17:09:08
問題描述
提高并發寫入嗎? 磁盤io同一時刻只能寫入一個文件吧?提高并發讀取嗎? 磁盤io同一時刻只能讀取一個文件吧?提高單次寫入速度嗎?貌似跟partiton沒啥關系吧?提高單次讀取速度嗎?多segment不就解決了?
問題解答
回答1:原答案:難道不是topic的擴展能力嗎?不然單topic的容量只能限制在物理機上了更新后的答案:The partitions in the log serve several purposes. First, they allow the log to scale beyond a size that will fit on a single server. Each inpidual partition must fit on the servers that host it, but a topic may have many partitions so it can handle an arbitrary amount of data. Second they act as the unit of parallelism—more on that in a bit.官方文檔(見上文)。partitions 主要有兩個目的,1 增強擴展能力,讓其可以處理任意多的數據 2 作為并行單元,提高并行能力(主要鑒于此點考慮)。第一次回答我只記住第一點了~~sorry
標簽:
java
相關文章:
1. mysql新建字段時 timestamp NOT NULL DEFAULT ’0000-00-00 00:00:00’ 報錯2. javascript - webpack --hot 熱重載無效的問題3. php - 第三方支付平臺在很短時間內多次異步通知,訂單多次確認收款4. Mysql && Redis 并發問題5. html5 - h5寫的app用的webview,用手機瀏覽器打開不顯示?6. javascript - 百度echarts series數據更新問題7. javascript - node服務端渲染的困惑8. mysql - 一個表和多個表是多對多的關系,該怎么設計9. css - 求推薦幾款好用的移動端頁面布局調試工具呢?10. 微信開發 - html5 video 在微信 ios 版內如何實現自動播放
排行榜
