Difference between revisions of "MQTT"

From OnnoWiki
Jump to navigation Jump to search
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
'''MQTT''' ('''MQ Telemetry Transport''' or '''Message Queue Telemetry Transport''') is an ISO standard (ISO/IEC PRF 20922) [[Publish–subscribe pattern|publish-subscribe]]-based "lightweight" messaging protocol for use on top of the [[TCP/IP|TCP/IP protocol]]. It is designed for connections with remote locations where a "small code footprint" is required or the network bandwidth is limited. The [[Publish–subscribe pattern|publish-subscribe messaging pattern]] requires a [[message broker]]. The [[Broker (service-oriented architecture)|broker]] is responsible for distributing [[Messaging pattern|messages]] to interested clients based on the topic of a message. [[Andy Stanford-Clark]] and [[Arlen Nipper]] of Cirrus Link authored the first version of the protocol in 1999.
+
'''MQTT''' ('''MQ Telemetry Transport''' atau '''Message Queue Telemetry Transport''') adalah ISO standard (ISO/IEC PRF 20922) [[Publish–subscribe pattern|publish-subscribe]] berbasis "lightweight" messaging protocol untuk di gunakan di atas [[TCP/IP|TCP/IP protocol]]. Ini dirancang untuk sambungan dengan lokasi remote dimana hanya mempunyai kemampuan "small code footprint" atau bandwidth jaringan yang terbatas. [[Publish–subscribe pattern|publish-subscribe messaging pattern]] membutuhkan sebuah [[message broker]]. [[Broker (service-oriented architecture)|broker]] bertanggung jawab untuk mendistribusikan [[Messaging pattern|messages]] ke client yang tertarik berdasarkan topic dari message. [[Andy Stanford-Clark]] and [[Arlen Nipper]] dari Cirrus Link adalah pembuat versi pertama dari protocol tersebut tahun 1999.
  
The specification does not specify the meaning of "small code footprint" or the meaning of "limited network bandwidth". Thus, the protocol's availability for use depends on the context. In 2013, IBM submitted MQTT v3.1 to the [[OASIS (organization)|OASIS]] specification body with a charter that ensured only minor changes to the specification could be accepted. MQTT-SN is a variation of the main protocol aimed at embedded devices on non-TCP/IP networks, such as [[ZigBee]].
+
MQTT tidak men-specify arti dari "small code footprint" atau arti dari "limited network bandwidth". Oleh karenanya, ketersediaan protocol untuk digunakan tergantung pada context. Tahun 2013, IBM men-submit MQTT v3.1 ke [[OASIS (organization)|OASIS]] specification body yang bertanggung jawab bahwa hanya perubahan minor dari spesifikasi yang bisa di terima. MQTT-SN adalah variasi dari protocol utama yang ditujukan untuk embedded device di non-TCP/IP network, seperti [[ZigBee]].
  
Historically, the "MQ" in "MQTT" came from IBM's MQ Series [[message queuing]] product line. However, queuing itself is not required to be supported as a standard feature in all situations.
+
Sejarahnya, "MQ" di "MQTT" berasal dari IBM MQ Series [[message queuing]] product line. AKan tetapi, queuing sendiri tidak harus di dukung sebagai fitur standard dalam semua situasi.
  
Alternative protocols include the [[Advanced Message Queuing Protocol]], the IETF [[Constrained Application Protocol]], [[XMPP]] and [[Web Application Messaging Protocol|Web Application Messaging Protocol (WAMP)]].
+
Alternatif protocol yang ada termasuk [[Advanced Message Queuing Protocol]], IETF [[Constrained Application Protocol]], [[XMPP]] dan [[Web Application Messaging Protocol|Web Application Messaging Protocol (WAMP)]].
  
 
==MQTT methods==
 
==MQTT methods==
MQTT defines methods (sometimes referred to as ''verbs'') to indicate the desired action to be performed on the identified resource. What this resource represents, whether pre-existing data or data that is generated dynamically, depends on the implementation of the server. Often, the resource corresponds to a file or the output of an executable residing on the server.
 
  
;Connect: Waits for a connection to be established with the server.
+
MQTT mendefinisikan methods (kadang kala di refer sebagai ''verbs'') untuk mengindikasikan action yang di inginkan yang harus di kerjakan pada resource yang teridentifikasi.Apa yang ditunjukkan sumber daya ini, apakah data atau data yang ada sebelumnya yang dihasilkan secara dinamis, bergantung pada penerapan di server. Seringkali, sumber daya sesuai dengan file atau output dari executable yang berada pada server.
  
;Disconnect: Waits for the MQTT client to finish any work it must do, and for the [[TCP/IP]] session to disconnect.
+
;Connect: Menunggu sambungan terjadi dengan server.
 +
;Disconnect: Menunggu klien MQTT untuk menyelesaikan pekerjaan yang harus dilakukan, dan untuk sesi [[TCP/IP]] untuk memutuskan hubungan.
 +
;Subscribe: Menunggu penyelesaian metode Subscribe atau UnSubscribe.
 +
;UnSubscribe: Meminta server menghentikan client berlangganan dari satu topik atau lebih.
 +
;Publish: Segera kembali ke thread aplikasi setelah meneruskan permintaan ke klien MQTT.
  
;Subscribe: Waits for completion of the Subscribe or UnSubscribe method.
+
==Aplikasi Real-world==
  
;UnSubscribe: Requests the server unsubscribe the client from one or more topics.
 
 
;Publish: Returns immediately to the application thread after passing the request to the MQTT client.
 
 
==Real-world applications==
 
 
MQTT is designed to support wireless networks with varying levels of latency due to occasional bandwidth constraints or unreliable connections. There are several projects that implement MQTT.
 
MQTT is designed to support wireless networks with varying levels of latency due to occasional bandwidth constraints or unreliable connections. There are several projects that implement MQTT.
 
* [[Facebook Messenger]]. Facebook has used aspects of MQTT in Facebook Messenger for [[online chat]].However, it is unclear how much of MQTT is used or for what.
 
* [[Facebook Messenger]]. Facebook has used aspects of MQTT in Facebook Messenger for [[online chat]].However, it is unclear how much of MQTT is used or for what.
Line 37: Line 35:
  
 
== External links ==
 
== External links ==
* {{Official website}}
+
 
 
* {{GitHub|mqtt/mqtt.github.io/wiki|MQTT community wiki}}
 
* {{GitHub|mqtt/mqtt.github.io/wiki|MQTT community wiki}}
 
* [http://www.hivemq.com/mqtt-essentials/ MQTT Essentials at HiveMQ].
 
* [http://www.hivemq.com/mqtt-essentials/ MQTT Essentials at HiveMQ].
 
* [http://www.eejournal.com/blog/is-exactly-once-delivery-possible-with-mqtt/ Is Exactly-Once Delivery Possible with MQTT]
 
* [http://www.eejournal.com/blog/is-exactly-once-delivery-possible-with-mqtt/ Is Exactly-Once Delivery Possible with MQTT]
 
* [https://media.defcon.org/DEF%20CON%2024/DEF%20CON%2024%20presentations/DEFCON-24-Lucas-Lundgren-Light-Weight%20Protocol-Critical-Implications.pdf Is your personal information available via public MQTT brokers?]
 
* [https://media.defcon.org/DEF%20CON%2024/DEF%20CON%2024%20presentations/DEFCON-24-Lucas-Lundgren-Light-Weight%20Protocol-Critical-Implications.pdf Is your personal information available via public MQTT brokers?]
 
  
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 +
* [[MQTT: install di Ubuntu 18.04]]
 
* [[MQTT: install di Ubuntu 16.04]]
 
* [[MQTT: install di Ubuntu 16.04]]
 +
* [[MQTT: managed password]]
 +
* [[MQTT: allow anonymous]]
 +
* [[MQTT: mosquitto client di Ubuntu 18.04]]
 +
* [[MQTT: Arduino install library untuk PubSubClient.h]] '''PENTING'''
 +
* [[MQTT: Arduino Authentication]]
 +
* [[MQTT: Arduino Simple]]
 
* [[MQTT: Arduino Simple Read Write]]
 
* [[MQTT: Arduino Simple Read Write]]
 +
* [[MQTT: Arduino Publish di callback]]
 +
* [[MQTT: Arduino Reconnect non-blocking]]
 +
* [[MQTT: Arduino Light Sensor]]
 +
* [[MQTT: Python Tutorials]]
 +
 +
===WeMOS===
 +
 +
* [[WeMOS: MQTT]]

Revision as of 11:27, 18 November 2019

MQTT (MQ Telemetry Transport atau Message Queue Telemetry Transport) adalah ISO standard (ISO/IEC PRF 20922) publish-subscribe berbasis "lightweight" messaging protocol untuk di gunakan di atas TCP/IP protocol. Ini dirancang untuk sambungan dengan lokasi remote dimana hanya mempunyai kemampuan "small code footprint" atau bandwidth jaringan yang terbatas. publish-subscribe messaging pattern membutuhkan sebuah message broker. broker bertanggung jawab untuk mendistribusikan messages ke client yang tertarik berdasarkan topic dari message. Andy Stanford-Clark and Arlen Nipper dari Cirrus Link adalah pembuat versi pertama dari protocol tersebut tahun 1999.

MQTT tidak men-specify arti dari "small code footprint" atau arti dari "limited network bandwidth". Oleh karenanya, ketersediaan protocol untuk digunakan tergantung pada context. Tahun 2013, IBM men-submit MQTT v3.1 ke OASIS specification body yang bertanggung jawab bahwa hanya perubahan minor dari spesifikasi yang bisa di terima. MQTT-SN adalah variasi dari protocol utama yang ditujukan untuk embedded device di non-TCP/IP network, seperti ZigBee.

Sejarahnya, "MQ" di "MQTT" berasal dari IBM MQ Series message queuing product line. AKan tetapi, queuing sendiri tidak harus di dukung sebagai fitur standard dalam semua situasi.

Alternatif protocol yang ada termasuk Advanced Message Queuing Protocol, IETF Constrained Application Protocol, XMPP dan Web Application Messaging Protocol (WAMP).

MQTT methods

MQTT mendefinisikan methods (kadang kala di refer sebagai verbs) untuk mengindikasikan action yang di inginkan yang harus di kerjakan pada resource yang teridentifikasi.Apa yang ditunjukkan sumber daya ini, apakah data atau data yang ada sebelumnya yang dihasilkan secara dinamis, bergantung pada penerapan di server. Seringkali, sumber daya sesuai dengan file atau output dari executable yang berada pada server.

Connect
Menunggu sambungan terjadi dengan server.
Disconnect
Menunggu klien MQTT untuk menyelesaikan pekerjaan yang harus dilakukan, dan untuk sesi TCP/IP untuk memutuskan hubungan.
Subscribe
Menunggu penyelesaian metode Subscribe atau UnSubscribe.
UnSubscribe
Meminta server menghentikan client berlangganan dari satu topik atau lebih.
Publish
Segera kembali ke thread aplikasi setelah meneruskan permintaan ke klien MQTT.

Aplikasi Real-world

MQTT is designed to support wireless networks with varying levels of latency due to occasional bandwidth constraints or unreliable connections. There are several projects that implement MQTT.

  • Facebook Messenger. Facebook has used aspects of MQTT in Facebook Messenger for online chat.However, it is unclear how much of MQTT is used or for what.
  • IECC Scalable DeltaRail's latest version of their IECC Signaling Control System uses MQTT for communications within the various parts of the system and other components of the signaling system. It provides the underlying communications framework for a system that is compliant with the CENELEC standards for safety-critical communications.
  • The EVRYTHNG IoT platform uses MQTT as an M2M protocol for millions of connected products.
  • On October 8, 2015, Amazon Web Services announced Amazon IoT based on MQTT.
  • The Open Geospatial Consortium SensorThings API standard specification has a MQTT extension in the standard as an additional message protocol binding. It was demonstrated in a US Department of Homeland Security IoT Pilot.
  • The OpenStack Upstream Infrastructure's services are connected by an MQTT unified message bus.
  • In 2015, Adafruit launched a free MQTT cloud service for IoT experimenters called Adafruit IO.
  • Microsoft Azure IoT Hub uses MQTT as its main protocol for telemetry messages.
  • In 2017, XIM, Inc. launched an MQTT client called MQTT Buddy. It's a new MQTT app for Android and iOS users available in English, Russian and Chinese languages.

References

External links

Pranala Menarik

WeMOS