文章詳情頁
java - kafka中partition設計的優點是什么?
瀏覽:96日期: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. python - flask _sqlalchemy 能否用中文作為索引條件2. nignx - docker內nginx 80端口被占用3. java - 阿里的開發手冊中為什么禁用map來作為查詢的接受類?4. 跟蹤器怎么開啟無反應5. dockerfile - [docker build image失敗- npm install]6. android - 百度地圖加載完成監聽7. docker api 開發的端口怎么獲取?8. python3.x - git bash如何運行.bat文件?9. dockerfile - 我用docker build的時候出現下邊問題 麻煩幫我看一下10. macos - mac下docker如何設置代理
排行榜
