Problem Statement: Community Infrastructure, Not Just a Feed
Frames a Groups alternative as a governed community platform with fan-out, roles, and trust-and-safety as first-class subsystems.
Problem statement
Design a community platform where users create groups with public, private, or secret visibility; administer them through owner, admin, and moderator roles; gate membership through approvals; publish posts and pinned announcements; consume a group feed; receive notifications for activity; search within group content; and operate all of this under spam and abuse pressure. The product is a Facebook Groups alternative, but the architecture must stand on its own: a social graph of memberships, a content store of posts and comments, a distribution engine for feeds and notifications, and a governance engine for roles, moderation, and appeals.
Why this problem is distinctive
A naive answer draws a CRUD app with a posts table and a feed query. The real system is dominated by three forces. First, fan-out asymmetry: one post in a one-million-member group must reach hundreds of thousands of readers without writing one million inbox rows synchronously, and without one slow mega-group degrading the feed of a ten-person book club. Second, governance: roles and permissions are not cosmetic; they decide who can publish, pin, approve, remove, ban, and audit, and every enforcement action must be idempotent, attributable, and appealable. Third, trust-and-safety at scale: mass posting, spam, and abusive content arrive as workload, not as edge cases, so rate limits, classifiers, review queues, and enforcement ladders are capacity-planned subsystems.
Public scale signals
Meta publicly reported that more than 1.8 billion people use Facebook Groups every month, which establishes the category ceiling. Reddit, a community-of-communities product, has reported tens of millions of daily active users and hundreds of millions of monthly users, with over a billion comments in a single year. Discord reported more than 200 million monthly active users and has published that its message store holds trillions of messages in Cassandra. These are cited, company-reported figures used for context; every uncited number later in this answer is an explicit design assumption for our fictional platform.
Design assumptions for this answer
We assume a mature platform with 200 million MAU, 60 million DAU, 20 million active groups, 250 million posts per day, 750 million comments per day, 2 billion feed requests per day, and a 4x peak multiplier. The membership distribution is heavy-tailed: a small fraction of mega-groups concentrates most members, which is the single most important structural fact in the design.
The four architectural planes
- Identity and graph plane: users, groups, memberships, roles, join requests, bans.
- Content plane: posts, comments, reactions, media, pins, edit and deletion tombstones.
- Distribution plane: feed fan-out, ranking, notifications, real-time delivery, search indexing.
- Governance plane: role enforcement, moderation pipeline, review queues, enforcement ladder, appeals, audit.
A strong interview answer keeps these planes separate, states which datasets are strongly consistent versus freshness-bounded, and explains how a mega-group post degrades gracefully instead of taking down the write path.
Key Highlights
- •Groups is governed community infrastructure: fan-out, roles, and trust-and-safety are core subsystems, not features.
- •Meta reports 1.8B+ monthly Groups users; Discord reports trillions of messages in Cassandra; Reddit reports 1B+ comments per year.
- •Assumed scale: 200M MAU, 60M DAU, 20M active groups, 250M posts/day, 4x peak.
- •Four planes: identity/graph, content, distribution, governance.
- •The heavy-tailed group-size distribution drives the hybrid push/pull fan-out decision.
Section Rescue Kit
Buzzwords to use:
Safe statements:
- "Let me separate the graph, content, distribution, and governance planes before choosing stores."
- "The group-size distribution, not the average group, determines my fan-out architecture."