文章詳情頁
java - kafka中partition設計的優點是什么?
瀏覽:89日期: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. javascript - 百度echarts series數據更新問題2. javascript - JS設置Video視頻對象的currentTime時出現了問題,IE,Edge,火狐,都可以設置,反而chrom卻...3. php自學從哪里開始?4. MySQL客戶端吃掉了SQL注解?5. css3 - [CSS] 動畫效果 3D翻轉bug6. python小白的基礎問題 關于while循環的嵌套7. java固定鍵值轉換,使用枚舉實現字典?8. 求大神幫我看看是哪里寫錯了 感謝細心解答9. phpstady在win10上運行10. java - 我設置了cookie的max age,但是cookie依然在關閉游覽器后消失了
排行榜
