Skip to content

Commit

Permalink
Merge pull request #2830 from emqx/chore/EMQX-13886/known-issue
Browse files Browse the repository at this point in the history
Add Known Issue detailing EMQX-13886
  • Loading branch information
keynslug authored Feb 19, 2025
2 parents fe71fc2 + 84a0e0c commit 530627c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions en_US/changes/known-issues-5.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,36 @@
<!-- https://emqx.atlassian.net/browse/EMQX-12290 -->

- **Shard Replica Set Changes Become Stuck once Number of Sites are Lost (since 5.8.0, fixed in 5.8.5)**

_This issue may occur only when Durable Sessions are enabled and backed by DS Raft backend._

When nodes acting as replication sites for Durable Storage data permanently leave the cluster without handing off the data first, it may lead to a situation where any requested replica set transitions will never finish.

As a simplified example, this is how it could look in `emqx ctl ds info` output. Here, node `[email protected]` has left the cluster while it was still responsible and was the only replication site for all shards, and then `[email protected]` was asked to take over with `emqx ds join messages ABCDEF2222222222`.
```
Site
ABCDEF1111111111 '[email protected]' (!) UNIDENTIFIED
ABCDEF2222222222 '[email protected]' up
<...>
Shard Replicas
messages/0 (!) ABCDEF1111111111
messages/1 (!) ABCDEF1111111111
<...>
messages/9 (!) ABCDEF1111111111
Shard Transitions
messages/0 +ABCDEF2222222222 -ABCDEF1111111111
messages/1 +ABCDEF2222222222 -ABCDEF1111111111
<...>
messages/9 +ABCDEF2222222222 -ABCDEF1111111111
```

In this example, transition `+ABCDEF2222222222` would never finish.

<!-- https://emqx.atlassian.net/browse/EMQX-13886 -->

## e5.8.1

- **Kafka Disk Buffer Directory Name (since 5.8.0, fixed in 5.8.2)**
Expand Down

0 comments on commit 530627c

Please sign in to comment.