-
Notifications
You must be signed in to change notification settings - Fork 14.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KAFKA-18613: Improve test coverage for missing topics #19189
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,7 +156,6 @@ private static Map<String, Integer> decidePartitionCounts(final LogContext logCo | |
enforceCopartitioning( | ||
topology, | ||
copartitionGroupsBySubtopology, | ||
log, | ||
decidedPartitionCountsForInternalTopics, | ||
copartitionedTopicsEnforcer | ||
); | ||
|
@@ -168,7 +167,6 @@ private static Map<String, Integer> decidePartitionCounts(final LogContext logCo | |
|
||
private static void enforceCopartitioning(final StreamsTopology topology, | ||
final Map<String, Collection<Set<String>>> copartitionGroupsBySubtopology, | ||
final Logger log, | ||
final Map<String, Integer> decidedPartitionCountsForInternalTopics, | ||
final CopartitionedTopicsEnforcer copartitionedTopicsEnforcer) { | ||
final Set<String> fixedRepartitionTopics = | ||
|
@@ -180,17 +178,13 @@ private static void enforceCopartitioning(final StreamsTopology topology, | |
x.repartitionSourceTopics().stream().filter(y -> y.partitions() == 0) | ||
).map(StreamsGroupTopologyValue.TopicInfo::name).collect(Collectors.toSet()); | ||
|
||
if (fixedRepartitionTopics.isEmpty() && flexibleRepartitionTopics.isEmpty()) { | ||
log.info("Skipping the repartition topic validation since there are no repartition topics."); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Skipping here is actually not correct - we need to enforce copartitioning also for source topics. |
||
} else { | ||
// ensure the co-partitioning topics within the group have the same number of partitions, | ||
// and enforce the number of partitions for those repartition topics to be the same if they | ||
// are co-partitioned as well. | ||
for (Collection<Set<String>> copartitionGroups : copartitionGroupsBySubtopology.values()) { | ||
for (Set<String> copartitionGroup : copartitionGroups) { | ||
decidedPartitionCountsForInternalTopics.putAll( | ||
copartitionedTopicsEnforcer.enforce(copartitionGroup, fixedRepartitionTopics, flexibleRepartitionTopics)); | ||
} | ||
// ensure the co-partitioning topics within the group have the same number of partitions, | ||
// and enforce the number of partitions for those repartition topics to be the same if they | ||
// are co-partitioned as well. | ||
for (Collection<Set<String>> copartitionGroups : copartitionGroupsBySubtopology.values()) { | ||
for (Set<String> copartitionGroup : copartitionGroups) { | ||
decidedPartitionCountsForInternalTopics.putAll( | ||
copartitionedTopicsEnforcer.enforce(copartitionGroup, fixedRepartitionTopics, flexibleRepartitionTopics)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How would this affect a topology where the user wants to expand partitions with a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should work as in the old protocol. I think if you use a repartition operator, the repartition topics should be included in |
||
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should any of the calls to
group.topology().get()
check forisPresent()
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think if
group.topology.isEmpty
is true, the control-flow will go to the first if-block, so we won't need an extraisPresent
check her.e