Skip to content
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

add all partitions of global tables as active in order to let them re… #213

Merged
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
3 changes: 3 additions & 0 deletions faust/assignor/partition_assignor.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,9 @@ def _global_table_standby_assignments(
# Only add those partitions as standby which aren't active
standby_partitions = all_partitions - active_partitions
assignment.standbys[changelog_topic_name] = list(standby_partitions)
# We add all_partitions as active so they are recovered
# in the beginning.
assignment.actives[changelog_topic_name] = list(all_partitions)
return assignments

def _protocol_assignments(
Expand Down