Skip to content

Commit

Permalink
MINOR: Fix ConsumerConfig.ISOLATION_LEVEL_DOC (#11915)
Browse files Browse the repository at this point in the history
Reviewers: David Jacot <djacot@confluent.io>
  • Loading branch information
guizmaii authored and dajac committed Mar 18, 2022
1 parent 2d3c92a commit 4b08ad5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public class ConsumerConfig extends AbstractConfig {
" <code>read_committed</code> mode, consumer.poll() will only return messages up to the last stable offset (LSO), which is the one less than the offset of the first open transaction." +
" In particular any messages appearing after messages belonging to ongoing transactions will be withheld until the relevant transaction has been completed. As a result, <code>read_committed</code>" +
" consumers will not be able to read up to the high watermark when there are in flight transactions.</p><p> Further, when in <code>read_committed</code> the seekToEnd method will" +
" return the LSO";
" return the LSO</p>";

public static final String DEFAULT_ISOLATION_LEVEL = IsolationLevel.READ_UNCOMMITTED.toString().toLowerCase(Locale.ROOT);

Expand Down

0 comments on commit 4b08ad5

Please sign in to comment.