Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/structured-streaming-kafka-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,16 @@ The following configurations are optional:
<td>streaming and batch</td>
<td>Rate limit on maximum number of offsets processed per trigger interval. The specified total number of offsets will be proportionally split across topicPartitions of different volume.</td>
</tr>
<tr>
<td>minPartitions</td>
<td>int</td>
<td></td>
<td>streaming and batch</td>
<td>Minimum number of partitions to read from Kafka.
By default, Spark has a 1-1 mapping of Kafka TopicPartitions to Spark partitions consuming from Kafka.
If you set the minPartitions option to a value greater than your Kafka TopicPartitions,
Spark will divvy up large Kafka partitions to smaller pieces.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

</td> is missed. I'll fix that during merging.

</tr>
<tr>
<td>groupIdPrefix</td>
<td>string</td>
Expand Down