You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parallafka currently only supports key order guarantee (all messages for the same key are received in order). Normal kafka supports partition order guarantee (all messages in a partition are received in order).
I believe a small change would be needed for Parallafka to support partition order guarantee. Granted, the parallelism will be limited to the number of partitions and overall message throughput will suffer. But supporting partition order will allow consumers to be written where the partition order is more important than the key order.
The text was updated successfully, but these errors were encountered:
Parallafka currently only supports key order guarantee (all messages for the same key are received in order). Normal kafka supports partition order guarantee (all messages in a partition are received in order).
I believe a small change would be needed for Parallafka to support partition order guarantee. Granted, the parallelism will be limited to the number of partitions and overall message throughput will suffer. But supporting partition order will allow consumers to be written where the partition order is more important than the key order.
The text was updated successfully, but these errors were encountered: