-
Notifications
You must be signed in to change notification settings - Fork 42
[ECO-5447][LiveObjects] Use server-provided timestamp to sweep old tombstones #1140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ECO-5447][LiveObjects] Use server-provided timestamp to sweep old tombstones #1140
Conversation
…ne serial support - Added tombstone serial tracking to ObjectMessage for server-provided serials - Updated ObjectsManager to handle tombstone serial in object processing - Enhanced MsgpackSerialization to support tombstone serial deserialization - Modified BaseLiveObject to incorporate tombstone serial in state management
…ial handling - Modified DefaultLiveCounter to support server-provided tombstone serials - Enhanced LiveCounterManager with tombstone serial processing logic - Updated DefaultLiveMap to handle tombstone serial in map operations - Improved LiveMapManager with comprehensive tombstone serial support
… functionality - Enhanced DefaultLiveObjectsTest with tombstone serial test scenarios - Updated integration helpers with tombstone serial utilities - Added TestHelpers support for tombstone serial testing - Improved ObjectsManagerTest with tombstone serial validation
…verage - Added extensive unit tests for LiveCounterManager tombstone serial handling - Enhanced LiveMapManagerTest with comprehensive tombstone serial scenarios - Updated DefaultLiveCounterTest and DefaultLiveMapTest for tombstone serial validation - Implemented thorough test coverage for server-provided tombstone serial functionality
WalkthroughThis change introduces a server-provided Changes
Sequence Diagram(s)sequenceDiagram
participant Server
participant Client
participant ObjectsManager
participant LiveObject
participant LiveCounterManager/LiveMapManager
Server->>Client: Sends ObjectMessage with serialTimestamp
Client->>ObjectsManager: Receives ObjectMessage (with serialTimestamp)
ObjectsManager->>LiveObject: applyObjectSync(ObjectMessage)
LiveObject->>LiveCounterManager/LiveMapManager: applyState(objectState, serialTimestamp)
LiveCounterManager/LiveMapManager->>LiveObject: Update tombstonedAt with serialTimestamp (if present)
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Assessment against linked issues
Suggested reviewers
Poem
Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. ✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Summary by CodeRabbit
New Features
Bug Fixes
Tests