
{"id":2715,"date":"2021-01-10T10:05:33","date_gmt":"2021-01-10T10:05:33","guid":{"rendered":"https:\/\/waterstream.io\/?p=2715"},"modified":"2025-09-30T12:51:20","modified_gmt":"2025-09-30T12:51:20","slug":"mqtt-v-5-0-support","status":"publish","type":"post","link":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/","title":{"rendered":"MQTT v 5.0 Support"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"2715\" class=\"elementor elementor-2715\" data-elementor-post-type=\"post\">\n\t\t\t\t<div class=\"elementor-element elementor-element-94fbbdd e-flex e-con-boxed e-con e-parent\" data-id=\"94fbbdd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-377f802 elementor-widget elementor-widget-image\" data-id=\"377f802\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"900\" height=\"600\" src=\"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg\" class=\"attachment-large size-large wp-image-6003\" alt=\"\" srcset=\"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg 900w, https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support-300x200.jpg 300w, https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support-768x512.jpg 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-38fe0454 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"38fe0454\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-675d72e7\" data-id=\"675d72e7\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-35aad76 elementor-widget elementor-widget-text-editor\" data-id=\"35aad76\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><\/p>\n<p>Waterstream version 1.3.0 introduces <a href=\"https:\/\/docs.waterstream.io\/release\/mqtt5.html\">MQTT version 5.0<\/a> support, alongside multiple improvements \u2013 including better metadata, easier debugging, more lightweight communication, scaling out reads capability, and much more.<\/p>\n<p><\/p>\n<p><\/p>\n<p>Let&#8217;s take a look what Waterstream users can gain from switching to MQTT version 5.0:<\/p>\n<p><\/p>\n<p><\/p>\n<h2>Message properties<\/h2>\n<p><\/p>\n<p><\/p>\n<p>Somewhat similar to HTTP headers, message properties contain metadata, such as broker feature support, content type, error messages, etc. There are also free-form user properties that can contain application-specific metadata. A lot of other features depend on the message properties.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Improved session expiration control with the Clean Start flag and the Session Expiry Interval property<\/h3>\n<p><\/p>\n<p><\/p>\n<p>Previously, if you wanted to start a fresh persistent session, you had to connect with Clean Session flag set to <code>true<\/code>, disconnect, and then connect again with Clean Session set to <code>false<\/code>, because the same flag determined both whether the session should be persistent and whether it should be fresh. Now, these responsibilities are separated between the Clean Start flag (which replaces Clean Session) and the Session Expiry Interval property.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Reason codes on all ACK messages<\/h3>\n<p><\/p>\n<p><\/p>\n<p>CONNACK, PUBACK, PUBREC, PUBREL, PUBCOMP, SUBACK, UNSUBACK, DISCONNECT. The previous version had more limited return codes in some messages (such as CONNACK and SUBACK), the reason codes now more precisely indicate the reason for the error. Note that numeric values for the CONNACK v 5.0 reason code differs from the v 3.1.1 return codes.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Clients are now notified why the server has closed the connection<\/h3>\n<p><\/p>\n<p><\/p>\n<p>In case of technical difficulties or protocol violation by the client, the broker now sends DISCONNECT with a corresponding reason code instead of just dropping the connection.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Payload metadata<\/h3>\n<p><\/p>\n<p><\/p>\n<p>Whenever a client sends a PUBLISH message, the following properties are persisted together with the message (under the hood using Kafka message headers):<\/p>\n<p><\/p>\n<p><\/p>\n<ul>\n<li><a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901111\">Payload Format Indicator<\/a> (binary or text)<\/li>\n<li><a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901118\">Content Type<\/a> (free-form string &#8211; for example, MIME type)<\/li>\n<li><a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901116\">User Properties<\/a> (free-form string key-value pairs, the key may be repeated)<\/li>\n<li><a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901114\">Response Topic<\/a> (name of the topic where the client expects the response to this message)<\/li>\n<li><a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901115\">Correlation Data<\/a> (arbitrary bytes array used for tracking the message)<\/li>\n<\/ul>\n<p><\/p>\n<p><\/p>\n<p>The client that receives the PUBLISH message as a result of the subscription gets these properties as well, with the same values sent by the publishing client.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Scaling out the reading with the shared subscriptions<\/h3>\n<p><\/p>\n<p><\/p>\n<p>This feature is somewhat similar to Kafka consumer groups. Multiple clients may subscribe to the pattern of the special format: <code>$share\/{ShareName}\/{filter}<\/code> and as long as their ShareName and filter are the same, they&#8217;ll get the messages distributed among the clients so that each message gets delivered to one client. To make the distribution of the messages work properly the Kafka topic that stores the MQTT messages must have at least as many partitions as the number of Waterstream nodes you have &#8211; clients connected to different nodes rely on Kafka partitions for load-balancing. Clients connected to the single Waterstream node get balanced by Waterstream itself, they don&#8217;t rely on Kafka partitions.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Relation between subscriptions and messages with Subscription ID<\/h3>\n<p><\/p>\n<p><\/p>\n<p>The SUBSCRIBE packet may include an ID property which is included in the PUBLISH messages delivered as a result of this subscription. For example, clients may use it to invoke the proper callbacks upon receiving the message.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Reduce traffic for long topic names by using Topic Alias<\/h3>\n<p><\/p>\n<p><\/p>\n<p>The side that sends the PUBLISH message may decide to replace the topic name with a numeric code. If there are a lot of messages on a topic with a long name this can substantially reduce the traffic. If the client decides to use an alias it can just set the Topic Alias property. Waterstream can be configured to use the alias in messages it sends to clients &#8211; use the <code>MQTT_ALIASED_TOPIC_PATTERN<\/code> environment variable to specify the pattern of topics to which the alias may apply, and <code>MQTT_ALISED_TOPIC_MIN_LENGTH<\/code> to specify the minimal topic length to which the alias applies.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Server and client may tell each other about their limits and the supported features<\/h3>\n<p><\/p>\n<p><\/p>\n<p>For example, <a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901050\">Maximum Packet Size<\/a>, <a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901049\">Receive Maximum<\/a> (how many unconfirmed messages the server can hold), <a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901088\">Topic Alias Maximum<\/a> (the maximum value for topic alias), <a href=\"https:\/\/docs.oasis-open.org\/mqtt\/mqtt\/v5.0\/os\/mqtt-v5.0-os.html#_Toc3901093\">Shared Subscriptions Available<\/a> (if shared subscriptions are available &#8211; always <code>1<\/code> for Waterstream), etc.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Fine-tune subscription with Subscription Options.<\/h3>\n<p><\/p>\n<p><\/p>\n<ul>\n<li>The No Local option can turn off the sending back of messages to the same client that sent them ( this helps to prevent message loops in bridge mode).<\/li>\n<li>Retain As Published lets you know the original Retain flag, even if the message was delivered as a part of normal workflow, not as a retained message.<\/li>\n<li>Retain Handling option \u2013 determines whether the retained messages should be sent at all.<\/li>\n<\/ul>\n<p><\/p>\n<p><\/p>\n<h3>Last Will delay<\/h3>\n<p><\/p>\n<p><\/p>\n<p>It is now possible to skip unnecessary Last Will if the client reconnects shortly after going down.<\/p>\n<p><\/p>\n<p><\/p>\n<h3>Assigned Client Identifier can now be reported back to the client<\/h3>\n<p><\/p>\n<p><\/p>\n<p>If the client chooses to let the server generate Client ID, the server now reports generated ID back to the client, thus making it possible to re-connect and keep the session.<\/p>\n<p><\/p>\n<p><\/p>\n<p>We wish you a happy journey into the world of MQTT 5 with Waterstream and all of these exciting new features!<\/p>\n<p><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Waterstream version 1.3.0 introduces MQTT version 5.0 support, alongside multiple improvements \u2013 including better metadata, easier debugging, more lightweight communication, scaling out reads capability, and much more. Let&#8217;s take a look what Waterstream users can gain from switching to MQTT version 5.0: Message properties Somewhat similar to HTTP headers, message properties contain metadata, such as [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":6002,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"content-type":"","ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[16,19,11],"tags":[20,21,22],"class_list":["post-2715","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mqtt","category-new-release","category-technology","tag-mqtt-5-0","tag-mqtt-5-0-support","tag-mqtt-v-5-0-specs","entry","has-media"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>MQTT v 5.0 Support - Waterstream.io | Simplify MQTT Data Integration<\/title>\n<meta name=\"description\" content=\"Waterstream.io introduce MQTT v 5.0 Support for its MQTT Broker.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MQTT v 5.0 Support - Waterstream.io | Simplify MQTT Data Integration\" \/>\n<meta property=\"og:description\" content=\"Waterstream.io introduce MQTT v 5.0 Support for its MQTT Broker.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/\" \/>\n<meta property=\"og:site_name\" content=\"Waterstream.io | Simplify MQTT Data Integration\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-10T10:05:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-30T12:51:20+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Waterstream\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Scritto da\" \/>\n\t<meta name=\"twitter:data1\" content=\"Waterstream\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/\"},\"author\":{\"name\":\"Waterstream\",\"@id\":\"https:\/\/waterstream.io\/it\/#\/schema\/person\/c8471336c17e2ecc8c51e1d584b3ec47\"},\"headline\":\"MQTT v 5.0 Support\",\"datePublished\":\"2021-01-10T10:05:33+00:00\",\"dateModified\":\"2025-09-30T12:51:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/\"},\"wordCount\":844,\"publisher\":{\"@id\":\"https:\/\/waterstream.io\/it\/#organization\"},\"image\":{\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg\",\"keywords\":[\"mqtt 5.0\",\"mqtt 5.0 support\",\"mqtt v.5.0 specs\"],\"articleSection\":[\"MQTT\",\"New release\",\"Technology\"],\"inLanguage\":\"it-IT\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/\",\"url\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/\",\"name\":\"MQTT v 5.0 Support - Waterstream.io | Simplify MQTT Data Integration\",\"isPartOf\":{\"@id\":\"https:\/\/waterstream.io\/it\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg\",\"datePublished\":\"2021-01-10T10:05:33+00:00\",\"dateModified\":\"2025-09-30T12:51:20+00:00\",\"description\":\"Waterstream.io introduce MQTT v 5.0 Support for its MQTT Broker.\",\"breadcrumb\":{\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage\",\"url\":\"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg\",\"contentUrl\":\"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg\",\"width\":900,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/waterstream.io\/it\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MQTT v 5.0 Support\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/waterstream.io\/it\/#website\",\"url\":\"https:\/\/waterstream.io\/it\/\",\"name\":\"Waterstream.io | Simplify MQTT Data Integration\",\"description\":\"High performance MQTT Broker\",\"publisher\":{\"@id\":\"https:\/\/waterstream.io\/it\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/waterstream.io\/it\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/waterstream.io\/it\/#organization\",\"name\":\"Waterstream.io | Simplify MQTT Data Integration\",\"url\":\"https:\/\/waterstream.io\/it\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/waterstream.io\/it\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/waterstream.io\/wp-content\/uploads\/2022\/05\/WaterStream-Logo-Color.png\",\"contentUrl\":\"https:\/\/waterstream.io\/wp-content\/uploads\/2022\/05\/WaterStream-Logo-Color.png\",\"width\":500,\"height\":117,\"caption\":\"Waterstream.io | Simplify MQTT Data Integration\"},\"image\":{\"@id\":\"https:\/\/waterstream.io\/it\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/waterstream.io\/it\/#\/schema\/person\/c8471336c17e2ecc8c51e1d584b3ec47\",\"name\":\"Waterstream\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/774b720bde6b29089269455bc31ecae3028eec39cff2333372e13d755f2f5391?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/774b720bde6b29089269455bc31ecae3028eec39cff2333372e13d755f2f5391?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/774b720bde6b29089269455bc31ecae3028eec39cff2333372e13d755f2f5391?s=96&d=mm&r=g\",\"caption\":\"Waterstream\"},\"url\":\"https:\/\/waterstream.io\/it\/author\/waterstream\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MQTT v 5.0 Support - Waterstream.io | Simplify MQTT Data Integration","description":"Waterstream.io introduce MQTT v 5.0 Support for its MQTT Broker.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/","og_locale":"it_IT","og_type":"article","og_title":"MQTT v 5.0 Support - Waterstream.io | Simplify MQTT Data Integration","og_description":"Waterstream.io introduce MQTT v 5.0 Support for its MQTT Broker.","og_url":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/","og_site_name":"Waterstream.io | Simplify MQTT Data Integration","article_published_time":"2021-01-10T10:05:33+00:00","article_modified_time":"2025-09-30T12:51:20+00:00","og_image":[{"width":900,"height":600,"url":"http:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg","type":"image\/jpeg"}],"author":"Waterstream","twitter_card":"summary_large_image","twitter_misc":{"Scritto da":"Waterstream","Tempo di lettura stimato":"4 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#article","isPartOf":{"@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/"},"author":{"name":"Waterstream","@id":"https:\/\/waterstream.io\/it\/#\/schema\/person\/c8471336c17e2ecc8c51e1d584b3ec47"},"headline":"MQTT v 5.0 Support","datePublished":"2021-01-10T10:05:33+00:00","dateModified":"2025-09-30T12:51:20+00:00","mainEntityOfPage":{"@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/"},"wordCount":844,"publisher":{"@id":"https:\/\/waterstream.io\/it\/#organization"},"image":{"@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage"},"thumbnailUrl":"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg","keywords":["mqtt 5.0","mqtt 5.0 support","mqtt v.5.0 specs"],"articleSection":["MQTT","New release","Technology"],"inLanguage":"it-IT"},{"@type":"WebPage","@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/","url":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/","name":"MQTT v 5.0 Support - Waterstream.io | Simplify MQTT Data Integration","isPartOf":{"@id":"https:\/\/waterstream.io\/it\/#website"},"primaryImageOfPage":{"@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage"},"image":{"@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage"},"thumbnailUrl":"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg","datePublished":"2021-01-10T10:05:33+00:00","dateModified":"2025-09-30T12:51:20+00:00","description":"Waterstream.io introduce MQTT v 5.0 Support for its MQTT Broker.","breadcrumb":{"@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#primaryimage","url":"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg","contentUrl":"https:\/\/waterstream.io\/wp-content\/uploads\/2021\/01\/MQTT-v-5.0-Support.jpg","width":900,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/waterstream.io\/it\/2021\/01\/10\/mqtt-v-5-0-support\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/waterstream.io\/it\/"},{"@type":"ListItem","position":2,"name":"MQTT v 5.0 Support"}]},{"@type":"WebSite","@id":"https:\/\/waterstream.io\/it\/#website","url":"https:\/\/waterstream.io\/it\/","name":"Waterstream.io | Simplify MQTT Data Integration","description":"High performance MQTT Broker","publisher":{"@id":"https:\/\/waterstream.io\/it\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/waterstream.io\/it\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/waterstream.io\/it\/#organization","name":"Waterstream.io | Simplify MQTT Data Integration","url":"https:\/\/waterstream.io\/it\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/waterstream.io\/it\/#\/schema\/logo\/image\/","url":"https:\/\/waterstream.io\/wp-content\/uploads\/2022\/05\/WaterStream-Logo-Color.png","contentUrl":"https:\/\/waterstream.io\/wp-content\/uploads\/2022\/05\/WaterStream-Logo-Color.png","width":500,"height":117,"caption":"Waterstream.io | Simplify MQTT Data Integration"},"image":{"@id":"https:\/\/waterstream.io\/it\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/waterstream.io\/it\/#\/schema\/person\/c8471336c17e2ecc8c51e1d584b3ec47","name":"Waterstream","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/774b720bde6b29089269455bc31ecae3028eec39cff2333372e13d755f2f5391?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/774b720bde6b29089269455bc31ecae3028eec39cff2333372e13d755f2f5391?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/774b720bde6b29089269455bc31ecae3028eec39cff2333372e13d755f2f5391?s=96&d=mm&r=g","caption":"Waterstream"},"url":"https:\/\/waterstream.io\/it\/author\/waterstream\/"}]}},"_links":{"self":[{"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/posts\/2715","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/comments?post=2715"}],"version-history":[{"count":0,"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/posts\/2715\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/media\/6002"}],"wp:attachment":[{"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/media?parent=2715"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/categories?post=2715"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/waterstream.io\/it\/wp-json\/wp\/v2\/tags?post=2715"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}