You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`memgraph.data.volumeClaim.logPVCSize`| Size of the log PVC |`256Mi`|
59
+
|`memgraph.coordinators.volumeClaim.storagePVC`| Enable storage PVC for coordinators |`true`|
60
+
|`memgraph.coordinators.volumeClaim.storagePVCSize`| Size of the storage PVC for coordinators |`1Gi`|
61
+
|`memgraph.coordinators.volumeClaim.logPVC`| Enable log PVC for coordinators |`false`|
62
+
|`memgraph.coordinators.volumeClaim.logPVCSize`| Size of the log PVC for coordinators |`256Mi`|
63
+
|`memgraph.affinity.enabled`| Enables affinity so each instance is deployed to unique node |`true`|
64
+
|`memgraph.externalAccess.serviceType`| NodePort or LoadBalancer. Use LoadBalancer for Cloud production deployment and NodePort for local testing |`LoadBalancer`|
65
+
|`memgraph.ports.boltPort`| Bolt port used on coordinator and data instances. |`7687`|
66
+
|`memgraph.ports.managementPort`| Management port used on coordinator and data instances. |`10000`|
67
+
|`memgraph.ports.replicationPort`| Replication port used on data instances. |`20000`|
68
+
|`memgraph.ports.coordinatorPort`| Coordinator port used on coordinators. |`12000`|
69
+
|`data`| Configuration for data instances | See `data` section |
70
+
|`coordinators`| Configuration for coordinator instances | See `coordinators` section |
65
71
|`sysctlInitContainer.enabled`| Enable the init container to set sysctl parameters |`true`|
66
72
|`sysctlInitContainer.maxMapCount`| Value for `vm.max_map_count` to be set by the init container |`262144`|
67
73
68
74
For the `data` and `coordinators` sections, each item in the list has the following parameters:
should be sufficient. Make sure to change the path to the public SSH key if you want to have SSH access to EC2 instances. After creating the cluster, `kubectl` should pick up
29
-
the AWS context and you can verify this by running `kubectl context current-context`. My is pointing to `andi.skrgat@test-cluster-ha.eu-west-1.eksctl.io`.
29
+
the AWS context and you can verify this by running `kubectl config current-context`. My is pointing to `andi.skrgat@test-cluster-ha.eu-west-1.eksctl.io`.
Copy file name to clipboardexpand all lines: charts/memgraph-high-availability/templates/NOTES.txt
+12-4
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,18 @@ The cluster setup requires the proper enterprise license to work since HA is an
8
8
You can connect to Memgraph instances via Lab, mgconsole, or any other client. By default, all Memgraph instances (coordinators and data instances) listen on port 7687 for a bolt connection.
9
9
Make sure your are connecting to the correct ip address and port. For details check the configuration on your cloud provider(aws, gcp, azure, etc.)
10
10
11
-
If you are connecting via mgconsole, you can use the following command:
11
+
To start, you should add coordinators and register data instances in order to completely setup cluster. In both cases you only need to modify 'bolt_server' part and set it to the DNS
12
+
of the node on which instance is being started. Node ports are fixed. Example:
If you are connecting via Lab, specify your instance IP address and port in Memgraph Lab GUI.
19
+
If you are connecting via Lab, specify your coordinator instance IP address and port in Memgraph Lab GUI and select Memgraph HA cluster type of connection.
16
20
17
-
If you are using minikube, you can find out your instance ip using `minikube ip`.
21
+
If you are using minikube, you can find out your node ip using `minikube ip`.
0 commit comments