EMQX Configuration Fundamentals and Distributed Cluster Architecture
Network Endpoint Allocation
EMQX relies on a predefined set of network ports to handle different protocol layers and administrative interfaces. These endpoints can be adjusted in the primary configuration file alongside their respective plugin manifests.
# Primary MQTT over TCP
listener.tcp.primary.address = 0.0.0.0:1883
# Secure MQTT over TLS ...
Posted on Wed, 27 May 2026 20:34:23 +0000 by fusioneko
Architecting Event-Driven Systems with Apache RocketMQ: Core Features & Implementation Guide
Infrastructure Layout
The architecture revolves around four primary components, typically deployed in clustered configurations to ensure high availability:
Producer Cluster: Responsible for generating and publishing events. Producers establish persistent connections with a random NameServer node to resolve routing information for target topics ...
Posted on Sun, 24 May 2026 19:00:13 +0000 by HuggyBear