No, Twitter Won't Disappear Overnight

No, Twitter Won't Disappear Overnight

Edwin Schmierer | Tuesday, Nov 29, 2022 |  Distributed Systems

In this post we’ll explore the question, how does a distributed system actually die?

Reports of my death have been greatly exaggerated. - Samuel L. Clemens (aka Mark Twain)

At Rotational, we are avid users of Twitter. Like many, we use the service to engage with the communities we care about, stay informed, and learn from others. As such, we have been watching Elon Musk’s “Twitter Drama” with concern and interest. One curious sentiment we’ve noticed is the expectation from many users that Twitter will fail overnight and suddenly disappear due to mismanagement.

We’ve seen users post eulogies (with the #RIPTwitter hashtag) and read articles foreshadowing Twitter’s demise as a social network. This all suggests you’ll go to bed after “doom scrolling” on Twitter tonight and wake up tomorrow to a permanent Fail Whale, disconnected from your followers and community.

Putting aside Elon Musk’s management decisions and execution (much of which we disagree with), as application developers with a focus on distributed systems, this suggests two fundamental and related misunderstandings about Twitter.

Misunderstanding 1: It’s “Just” An App

The first misunderstanding is that Twitter is “just a website” or “just an app”. This notion that Twitter is a lightweight app that lives on your mobile device belies a misunderstanding about the brittleness or fragility to online services. This may have been true when Twitter was founded 16 years ago when “Fail Whales” were common across the internet, but times have changed, and Twitter has scaled to serve a global user base that includes 237.8 million daily active users. To support this level of service consistently, Twitter relies on a robust distributed system with custom databases, sophisticated cloud architectures, and networked microservices. Under the hood, it’s much more than an app.

Misunderstanding 2: Scaling is “Easy”

The corollary to it’s “just an app” is that scaling is easy. It’s a digital product, so adding new services and users must be marginal, right? In fact, scaling is one of the most challenging and expensive activities of global apps. Just ask Mastodon and Cohost, potential Twitter substitutes that are buckling at the influx of so many new users.

The dirty truth? Distributed systems break all the time. Failure is the normal state of a distributed system. Software and devops engineers know this so they architect systems to be resilient by default, specifically to ensure high availability, fault tolerance, and disaster recovery. This is often achieved by building in redundancies (data centers, servers, processes, people), and replicating data across the system. Distributed systems engineers try to leverage the most advanced algorithms coming out of academic research to ensure the best data consistency possible in addition to performance. Software and devops engineers also apply important distributed system design patterns such as circuit breakers and fallbacks to manage major issues. In other words, a great deal of time, energy, and resources go into supporting a robust distributed system.

All that resilience comes at a cost, though, creating complexities related to coordination and consistency that are no doubt difficult to explain to an impatient incoming head honcho.

Signals to Watch For

If Twitter does fail, it will fail slowly over time, most likely because there are not enough engineers to maintain the system or as microservices are taken offline to cut costs. Some signals of system degradation and potential failure include:

Latency

Speed is a key indicator. If you notice that it takes much longer for your Twitter feed to update, your messages to post, or to load the app, then this could be an indicator that Twitter’s system is degrading.

Inconsistencies

If you notice that what you see on your phone is different than what you see on your tablet or laptop (e.g. missing or incomplete data), then it could indicate system failures.

Ordering

Another signal of degradation is out-of-order direct messages (DMs) or your feed displays in an increasingly non-chronological order.

Unavailable Ancillary Services

In addition to its core microblogging service, Twitter provides ancillary services to developers building tools with Twitter’s data. If the Twitter API begins to fail or become unavailable, it could signal that the system in general is at risk.

elon tweet

The Takeaway: Resiliency is More Critical Than Ever

Twitter is emblematic of how distributed systems have come to play increasingly important and arguably dominant roles in daily life. These systems have become integral to modern digital services, commanding a great deal of resources. Resilient distributed systems will only become more critical as more services, more of our time, and more of the economy move online, requiring always-on, available-anywhere computing services.

The risk for Twitter isn’t the technical infrastructure, but the business model and leadership needed to maintain and grow its services. At this point, Twitter’s fate is unclear. Regardless, the next time you access your favorite app, take a moment to consider the distributed system - and people - who make it reliably available, accessible, and integral to your needs no matter where you are.

Photo by Drew Hays on Unsplash

About This Post

In this post we delve into the logistics of a real world distributed system, and explore what failure does and does not look like.

Written by:

Share this post:

Recent Rotations butterfly

View all

5 Javascript Libraries to Use for Machine Learning

Over the years, several JavaScript libraries have been created for machine learning. Let’s sort through the ones that can help you get started quickly, even if you don’t have much experience with machine learning or data …

Mar 11, 2024

Predicting the Oscars With LLMs

Looking for a middle ground between custom LLMs and traditional ML? Please welcome semantic search to the stage! Let’s use semantic search to predict which film will take home the “Best Picture” Oscar this year 🤩

Mar 8, 2024

How to Manage Overwhelm

Each morning, I make the mistake of checking social media before getting out of bed. As I catch up on what’s happening in the world, I often find myself thinking “This too much” all before 8 AM.

Feb 13, 2024
Enter Your Email To Subscribe