sansmoraxz commented on code in PR #4055:
URL: https://github.com/apache/iggy/pull/4055#discussion_r3983051341


##########
core/server/src/session_manager.rs:
##########
@@ -104,15 +112,31 @@ pub struct SessionManager {
     /// per-shard context already threaded to the non-replicated read path;
     /// installed once at bootstrap, disabled until then.
     cluster_roster: Rc<ClusterRoster>,
+    /// Shared counter for minting synthetic user IDs. All transports draw
+    /// from the same sequence so no two can mint the same ID.
+    synthetic_counter: SyntheticUserIdCounter,
+    /// Freed synthetic user IDs available for reuse.
+    free_synthetic_ids: BTreeSet<u32>,

Review Comment:
   not relevant anymore



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to