Skip to content

Commit

Permalink
Update 31 doc folder corresponding to 3.1.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
dajac committed Jan 12, 2022
1 parent 4c1c868 commit 5b7b15b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 31/design.html
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ <h3 class="anchor-heading"><a id="replication" class="anchor-link"></a><a href="
replication factor is one.
<p>
The unit of replication is the topic partition. Under non-failure conditions, each partition in Kafka has a single leader and zero or more followers. The total number of replicas including the leader constitute the
replication factor. All writes go to the leader of the partition, and reads can go to the leader or the followers of the partition. Typically, there are many more partitions than brokers and the leaders are evenly distributed among brokers. The logs on the followers are
replication factor. All reads and writes go to the leader of the partition. Typically, there are many more partitions than brokers and the leaders are evenly distributed among brokers. The logs on the followers are
identical to the leader's log&mdash;all have the same offsets and messages in the same order (though, of course, at any given time the leader may have a few as-yet unreplicated messages at the end of its log).
<p>
Followers consume messages from the leader just as a normal Kafka consumer would and apply them to their own log. Having the followers pull from the leader has the nice property of allowing the follower to naturally
Expand Down
4 changes: 2 additions & 2 deletions 31/generated/connect_metrics.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[2021-12-23 22:01:46,410] INFO Metrics scheduler closed (org.apache.kafka.common.metrics.Metrics:659)
[2021-12-23 22:01:46,416] INFO Metrics reporters closed (org.apache.kafka.common.metrics.Metrics:669)
[2022-01-12 10:04:37,496] INFO Metrics scheduler closed (org.apache.kafka.common.metrics.Metrics:659)
[2022-01-12 10:04:37,499] INFO Metrics reporters closed (org.apache.kafka.common.metrics.Metrics:669)
<table class="data-table"><tbody>
<tr>
<td colspan=3 class="mbeanName" style="background-color:#ccc; font-weight: bold;">kafka.connect:type=connect-worker-metrics</td></tr>
Expand Down

0 comments on commit 5b7b15b

Please sign in to comment.