Skip to content

Commit

Permalink
add all partitions of global tables as active in order to let them re…
Browse files Browse the repository at this point in the history
…cover in the beginning (#213)

Co-authored-by: Alexander Oberegger <alexander.oberegger@smaxtec.com>
  • Loading branch information
aoberegg and Alexander Oberegger committed Nov 3, 2021
1 parent 41200e4 commit 60a8696
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions faust/assignor/partition_assignor.py
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

0 comments on commit 60a8696

Please sign in to comment.