Message Queuing Telemetry Transport
작은 코드 공간, 네트워크 대역폭이 제한되는 원격 위치와의 연결을 위해 설계
ISO 표준 발행-구독 기반의 메시징 프로토콜
MQTT Notion
MQTT USage
MQTT vs Kafka: An IoT Advocate's Perspective (Part 2 - Kafka the Mighty) | InfluxData
In Part 1 of this series, we started to compare the uses of Kafka and MQTT within an IoT infrastructure. It was concluded that in a basic publish-and-subscribe model of an IoT device, Kafka might simply be overkill.
https://www.influxdata.com/blog/mqtt-vs-kafka-an-iot-advocates-perspective-part-2/

MQTT란?
MQTT는 M2M, IOT를 위한 프로토콜로서, 최소한의 전력과 패킷량으로 통신하는 프로토콜입니다. 따라서 IOT와 모바일 어플리케이션 등의 통신에 매우 적합한 프로토콜입니다. MQTT는 HTTP, TCP등의 통신과 같이 클라이언트-서버 구조로 이루어지는 것이 아닌, Broker, Publisher, Subscriber 구조로 이루어집니다. Publisher는 Topic을 발행(publish) 하고, Subscriber는 Topic에 구독(subscribe)합니다. Broker는 이들을 중계하는 역할을 하며, 단일 Topic에 여러 Subscriber가 구독할 수 있기 때문에, 1:N 통신 구축에도 매우 유용합니다.
https://medium.com/@jspark141515/mqtt%EB%9E%80-314472c246ee


Seonglae Cho