Design Chat System
MessagingMedium
Design a real-time chat system similar to WhatsApp or Facebook Messenger, supporting one-on-one conversations and group chats.
Requirements
- Users should be able to send messages to other users in real-time.
- The system should support group conversations.
- Users should be able to see when others are online/offline.
- Messages should be persisted for later viewing.
- The system should support media attachments (images, videos, etc.).
- Users should receive notifications for new messages.
Constraints
- Message delivery should have minimal latency.
- The system should handle millions of concurrent users.
- The system should work reliably even with poor network conditions.
- The system should ensure message privacy and security.
Example Scenarios
Two users are chatting with each other, sending multiple messages rapidly.
Key Considerations:
- What communication protocol will you use for real-time messaging?
- How will you ensure message ordering?
- How will you handle offline users?
- How will you show "typing" indicators and read receipts?
A group chat with hundreds of members where some users have intermittent connectivity.
Key Considerations:
- How will you efficiently deliver messages to all group members?
- How will you handle message synchronization when users come back online?
- How will you manage large media files shared in the group?
- How will you scale the system if some groups become very active?
Your Solution
Submission Guidelines
- • Include a high-level architecture diagram
- • Define system components and their interactions
- • Address scaling and reliability concerns
- • Explain trade-offs in your design decisions
- • Consider failure scenarios and how to handle them