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
Does RaftLog's Append function have concurrency issues? In Append, you didn't lock, but you went through all the logs to get the lastLogID. I think such an operation might result in the same Index being generated when inserting
The text was updated successfully, but these errors were encountered:
Does RaftLog's Append function have concurrency issues? In Append, you didn't lock, but you went through all the logs to get the lastLogID. I think such an operation might result in the same Index being generated when inserting
If there is a concurrent Append log scenario, concurrency competition problems may occur, you can commit a bug fix for it.
Does RaftLog's Append function have concurrency issues? In Append, you didn't lock, but you went through all the logs to get the lastLogID. I think such an operation might result in the same Index being generated when inserting↳
If there is a concurrent Append log scenario, concurrency competition problems may occur, you can commit a bug fix for it.↳
I have opened a pr to address this issue and look forward to your comments.
Does RaftLog's Append function have concurrency issues? In Append, you didn't lock, but you went through all the logs to get the lastLogID. I think such an operation might result in the same Index being generated when inserting
The text was updated successfully, but these errors were encountered: