technologybriefs
8:35in productionCh. 1 · Built for pipes, not phones/ 8:35 · ceiling 15 min
Systems

MQTT

MQTT isn’t about the Internet of Things — it’s about making telemetry cheap enough to justify connecting an oil pipeline via satellite.

MQTT delivers what it promised in 1999: a lean, brokered telemetry protocol for expensive, low-bandwidth links. It works — but only where its constraints match your environment. Its standardisation cemented utility, not evolution.

Chapters & takeaways5
  1. 0:56
    Built for pipes, not phones

    Stanford-Clark and Nipper wrote MQTT in 1999 for one job: monitoring oil pipelines over satellite.

  2. 2:04
    One message, many listeners

    It replaces polling with publish–subscribe — so sensors broadcast once, and many systems receive without repeated requests.

  3. 2:58
    Designed for scarcity

    Its tiny packet size and lack of headers or retries make it viable on kilobit-per-second satellite links.

  4. 4:20
    Frozen in v3.1

    OASIS standardisation froze the core spec — locking in its simplicity, but also its omissions.

  5. 5:31
    From pipeline to porch light

    From SCADA oil fields to home automation tweets — it proved telemetry could scale across domains, not just devices.

Worth your time?

Yes. Study the whole thing.

4/ 5
What works
  • low-bandwidth telemetry
  • battery-constrained devices
  • many-to-many sensor distribution
  • interoperable vendor stacks
What does not
  • encryption
  • authentication
  • peer-to-peer operation
  • real-time delivery guarantees
Study it if
  • IoT firmware engineers
  • industrial telemetry architects
  • edge system integrators
Skip it if
  • cloud-native application developers
  • real-time control systems
  • privacy-first deployments
The written brief1 min read

What it is and the problem it solves

MQTT is a lightweight, publish–subscribe machine-to-machine protocol. It solves the problem of sending telemetry from battery-powered, bandwidth-constrained devices — like oil pipeline sensors linked via expensive satellite — where HTTP or TCP sockets would waste power and money.

How it works

MQTT uses a publish–subscribe mechanism over TCP/IP. A central broker routes messages from publishers to subscribers. Devices send small, structured packets with minimal overhead. It requires ordered, lossless, bi-directional transport — so it cannot run directly on UDP or lossy radio links.

What works

The publish–subscribe model reduces network chatter. Small fixed-header packets (as little as two bytes) cut bandwidth use. Its simplicity allows implementation on microcontrollers with under 10KB RAM. It works reliably over high-latency satellite links when configured for QoS 1.

What does not

MQTT does not provide built-in encryption, authentication, or access control. It does not guarantee message ordering across topics or delivery timing. It assumes a stable TCP connection — so it fails under frequent disconnections without client-side reconnection logic.

What it changes

It shifts IoT architecture from point-to-point polling to event-driven, decoupled messaging. It enables many-to-many telemetry at low bandwidth cost — but locks deployments into a centralised broker model that scales poorly in distributed edge environments.

Is it worth your time

Yes — if you are building telemetry systems for constrained devices and need interoperability across vendors. No — if you require strong security by default, real-time guarantees, or peer-to-peer operation without a broker.

Same field · Systems4 of 177
9:36
Apache ActiveMQ2006ActiveMQ is a Java-based open source message broker implementing JMS 1.1. It enables asynchronous communication across Java and cross-language clients. It supports clustering, multiple persistence options, and several protocols. It originated in 2004 at LogicBlaze, moved to Apache in 2007, and later expanded to include Artemis—a next-generation broker donated in 2015. It is used in enterprise service buses and SOA infrastructure.
10:28
Unmanned surface vehicleUSVs are operational—but not systemic. They deliver real results in niche applications. They lack standardisation, interoperability, and regulatory grounding. Their value lies in removing humans from risk—not in replacing captains with code.
10:32
Self-driving truckSelf-driving trucks are a systems-level adaptation of autonomous technology to freight logistics. They rely on multi-sensor fusion and AI navigation, but their real-world deployment is bounded—not by capability, but by self-imposed safety thresholds and infrastructural control. Kodiak’s December 2024 launch on private lease roads is the first commercial driverless operation in the U.S., yet no autonomous truck has hauled freight without a human on public highways. What works is geofenced, industrial, or military convoy logic—not open-road autonomy.
10:35
China Mobile1997China Mobile is a state-owned telecommunications company formed in 1997. It delivers mobile voice and multimedia services across mainland China and Hong Kong. It is the largest wireless carrier in China, with 945.50 million subscribers as of June 2021. It is listed on the Shanghai and Hong Kong stock exchanges. It is the world's largest mobile network operator by subscriber count and largest telecom company by revenue. Its market value stood at US$240 billion as of 8 July 2025. It originated from the 1999 break-up of China Telecommunications Corporation. In May 2008, it acquired China Tietong to add fixed-line and broadband Internet services.
Up next in Technology

MS-DOS

1981 · 8:52

MS-DOS didn’t invent personal computing — it licensed its way into becoming its gatekeeper.

8:52