MINOR: Doc individual partition must fit on the server that host it

Author: sahil kharb <sahilkharb@iitj.ac.in>

Reviewers: Ismael Juma, Guozhang Wang

Closes #1709 from bitfurry/trunk
This commit is contained in:
sahil kharb 2016-08-09 11:27:57 -07:00 committed by Guozhang Wang
parent 1572274583
commit 8abcece40a
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ In fact the only metadata retained on a per-consumer basis is the position of th
<p>
This combination of features means that Kafka consumers are very cheap&mdash;they can come and go without much impact on the cluster or on other consumers. For example, you can use our command line tools to "tail" the contents of any topic without changing what is consumed by any existing consumers.
<p>
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 individual 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&mdash;more on that in a bit.
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 individual partition must fit on the server that hosts 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&mdash;more on that in a bit.
<h4><a id="intro_distribution" href="#intro_distribution">Distribution</a></h4>