From bab74de0b6125984158b89a86a7acc0fe1be001c Mon Sep 17 00:00:00 2001 From: kgolubic Date: Mon, 17 Jun 2024 14:25:23 +0200 Subject: [PATCH] Revert changes --- pages/clustering/high-availability.mdx | 6 +++--- pages/database-management/configuration.mdx | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pages/clustering/high-availability.mdx b/pages/clustering/high-availability.mdx index 38f5c56e9..29758b403 100644 --- a/pages/clustering/high-availability.mdx +++ b/pages/clustering/high-availability.mdx @@ -442,17 +442,17 @@ This example will show how to set up a highly available cluster in Memgraph usin 1. Start coordinator1: ```plaintext -docker run --name coord1 -p 7690:7690 -p 7444:7444 memgraph/memgraph-mage --bolt-port=7690 --log-level=TRACE --data-directory=/tmp/mg_data_coord1 --log-file=/tmp/coord1.log --nuraft-log-file=/tmp/nuraft/coord1.log --also-log-to-stderr --coordinator-id=1 --coordinator-port=10111 --experimental-enabled=high-availability +docker run --name coord1 -p 7690:7690 -p 7444:7444 memgraph/memgraph-mage --bolt-port=7690 --log-level=TRACE --data-directory=/tmp/mg_data_coord1 --log-file=/tmp/coord1.log --also-log-to-stderr --coordinator-id=1 --coordinator-port=10111 --experimental-enabled=high-availability ``` 2. Start coordinator2: ```plaintext -docker run --name coord2 -p 7691:7691 -p 7445:7444 memgraph/memgraph-mage --bolt-port=7691 --log-level=TRACE --data-directory=/tmp/mg_data_coord2 --log-file=/tmp/coord2.log --nuraft-log-file=/tmp/nuraft/coord2.log --also-log-to-stderr --coordinator-id=2 --coordinator-port=10112 --experimental-enabled=high-availability +docker run --name coord2 -p 7691:7691 -p 7445:7444 memgraph/memgraph-mage --bolt-port=7691 --log-level=TRACE --data-directory=/tmp/mg_data_coord2 --log-file=/tmp/coord2.log --also-log-to-stderr --coordinator-id=2 --coordinator-port=10112 --experimental-enabled=high-availability ``` 3. Start coordinator3: ```plaintext -docker run --name coord3 -p 7692:7692 -p 7446:7444 memgraph/memgraph-mage --bolt-port=7692 --log-level=TRACE --data-directory=/tmp/mg_data_coord3 --log-file=/tmp/coord3.log --nuraft-log-file=/tmp/nuraft/coord1.log --also-log-to-stderr --coordinator-id=3 --coordinator-port=10113 --experimental-enabled=high-availability +docker run --name coord3 -p 7692:7692 -p 7446:7444 memgraph/memgraph-mage --bolt-port=7692 --log-level=TRACE --data-directory=/tmp/mg_data_coord3 --log-file=/tmp/coord3.log --also-log-to-stderr --coordinator-id=3 --coordinator-port=10113 --experimental-enabled=high-availability ``` 4. Start instance1: diff --git a/pages/database-management/configuration.mdx b/pages/database-management/configuration.mdx index 09ec864eb..493963e93 100644 --- a/pages/database-management/configuration.mdx +++ b/pages/database-management/configuration.mdx @@ -415,7 +415,6 @@ This section contains the list of flags that are used to configure highly availa | --instance-health-check-frequency-sec=1 | The interval between two health checks that the coordinator does on replication instances. | `[uint32]` | | --instance-down-timeout-sec=5 | Number of seconds that need to pass before replication instance is considered down. | `[uint32]` | | --instance-get-uuid-frequency-sec=10 | The interval between two instance uuid checks. | `[uint32]` | -| --nuraft-log-file | Path to the file where NuRaft logs are saved. | `[string]` | ### Query