# Enable Core + Replicant Cluster (EMQX 5.x)
# Task Target
- Configure EMQX cluster Core node through
coreTemplate
field. - Configure EMQX cluster Replicant node through
replicantTemplate
field.
# Core Nodes And Replicant Nodes
In EMQX 5.0, the nodes in the EMQX cluster can be divided into two roles: core (Core) node and replication (Replicant) node. The Core node is responsible for all write operations in the cluster, which is consistent with the behavior of the nodes in the EMQX 4.x cluster, and serves as the real data source of the EMQX database Mria (opens new window) to store the routing table, Data such as sessions, configurations, alarms, and Dashboard user information. The Replicant node is designed to be stateless and does not participate in the writing of data. Adding or deleting Replicant nodes will not change the redundancy of the cluster data. For more information about the EMQX 5.0 architecture, please refer to the document: EMQX 5.0 Architecture (opens new window), the topological structure of the Core node and the Replicant node is shown in the following figure:
TIP
There must be at least one Core node in the EMQX cluster. For the purpose of high availability, EMQX Operator recommends that the EMQX cluster have at least three Core nodes.
# Configure EMQX Cluster
apps.emqx.io/v2alpha1 EMQX
supports configuring the Core node of the EMQX cluster through the .spec.coreTemplate
field, and configuring the Replicant node of the EMQX cluster using the .spec.replicantTemplate
field. For more information, please refer to: API Reference.
Save the following content as a YAML file and deploy it with the
kubectl apply
commandapiVersion: apps.emqx.io/v2alpha1 kind: EMQX metadata: name: emqx spec: image: emqx:5.0 coreTemplate: spec: replicas: 3 resources: requests: cpu: 100m memory: 256Mi replicantTemplate: spec: replicas: 3 resources: requests: cpu: 100m memory: 512Mi dashboardServiceTemplate: spec: type: LoadBalancer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23In the YAML above, we declared that this is an EMQX cluster consisting of three Core nodes and three Replicant nodes. Core nodes require a minimum of 256Mi of memory, and Replicant nodes require a minimum of 512Mi of memory. In actual business, the Replicant node will accept all client requests, so the resources required by the Replicant node will be higher.
Wait for the EMQX cluster to be ready, you can check the status of EMQX cluster through
kubectl get
command, please make sureSTATUS
isRunning
, this may take some time$ kubectl get emqx emqx NAME IMAGE STATUS AGE emqx emqx:5.0 Running 10m
1
2
3Obtain the Dashboard External IP of EMQX cluster and access EMQX console
EMQX Operator will create two EMQX Service resources, one is emqx-dashboard and the other is emqx-listeners, corresponding to EMQX console and EMQX listening port respectively.
$ kubectl get svc emqx-dashboard -o json | jq '.status.loadBalancer.ingress[0].ip' 192.168.1.200
1
2
3Access
http://192.168.1.200:18083
through a browser, and use the default username and passwordadmin/public
to login EMQX console.
# Verify EMQX Cluster
$ kubectl get emqx emqx -o json | jq .status.emqxNodes
Information about all the nodes in the cluster can be obtained by checking the .status.emqxNodes
of the EMQX custom resources. The role
field of the node
indicates its role in the cluster, in the above case a cluster consisting of two Core nodes and three Replicant nodes is deployed.
[
{
"node": "emqx@10.244.4.56",
"node_status": "running",
"otp_release": "24.3.4.2-2/12.3.2.2",
"role": "replicant",
"version": "5.0.20"
},
{
"node": "emqx@10.244.4.57",
"node_status": "running",
"otp_release": "24.3.4.2-2/12.3.2.2",
"role": "replicant",
"version": "5.0.20"
},
{
"node": "emqx@10.244.4.58",
"node_status": "running",
"otp_release": "24.3.4.2-2/12.3.2.2",
"role": "replicant",
"version": "5.0.20"
},
{
"node": "emqx@emqx-core-0.emqx-headless.default.svc.cluster.local",
"node_status": "running",
"otp_release": "24.3.4.2-2/12.3.2.2",
"role": "core",
"version": "5.0.20"
},
{
"node": "emqx@emqx-core-1.emqx-headless.default.svc.cluster.local",
"node_status": "running",
"otp_release": "24.3.4.2-2/12.3.2.2",
"role": "core",
"version": "5.0.20"
},
{
"node": "emqx@emqx-core-2.emqx-headless.default.svc.cluster.local",
"node_status": "running",
"otp_release": "24.3.4.2-2/12.3.2.2",
"role": "core",
"version": "5.0.20"
}
]
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44