Skip to content

Commit f18dbc3

Browse files
committed
update the tables formatting
1 parent e89c56b commit f18dbc3

File tree

3 files changed

+181
-182
lines changed

3 files changed

+181
-182
lines changed

modules/ROOT/pages/clustering/databases.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,13 +229,13 @@ neo4j@neo4j> DRYRUN REALLOCATE DATABASES;
229229
[[recreate-databases]]
230230
== Recreate a database
231231

232-
Neo4j 5.24 introduces the xref:reference/procedures.adoc#procedure_dbms_cluster_recreateDatabase[`dbms.cluster.recreateDatabase()`] procedure, which allows you:
232+
Neo4j 5.24 introduces the xref:procedures.adoc#procedure_dbms_cluster_recreateDatabase[`dbms.cluster.recreateDatabase()`] procedure, which allows you:
233233

234234
* To change the database store to a specified backup, while keeping all the associated privileges for the database.
235235

236236
* To make your database write-available again after it has been lost (for example, due to a disaster).
237237
// See xref:clustering/disaster-recovery.adoc[] for more information.
238-
238+
239239
[CAUTION]
240240
====
241241
The recreate procedure works only for real user databases and not for composite databases, or the `system` database.
@@ -304,7 +304,7 @@ If not used stores were more up to date than the used ones, this results in data
304304

305305
You can specify a set of available servers.
306306
The stores on all allocations will be synchronized to the most up-to-date store from the defined servers.
307-
The number of defined servers cannot exceed the number of total allocations in the desired topology.
307+
The number of defined servers cannot exceed the number of total allocations in the desired topology.
308308

309309
[source, shell]
310310
----
@@ -341,7 +341,7 @@ There is an option to define a new topology when recreating a database.
341341
This can be beneficial during a disaster, if enough servers are not available to recreate the database with the original topology.
342342
When altering the total number of allocations down during a recreation, it is important to remember that the number of seeding servers cannot exceed the number of total allocations of the database.
343343
This also holds true when using recreate with an empty list of seeders.
344-
If there are more available servers in the cluster hosting the database than the number of new allocations, the recreation will fail.
344+
If there are more available servers in the cluster hosting the database than the number of new allocations, the recreation will fail.
345345

346346
[source, shell]
347347
----

modules/ROOT/pages/clustering/monitoring/status-check.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[[monitoring-replication]]
55
= Monitor replication status
66

7-
Neo4j 5.24 introduces the xref:reference/procedures.adoc#procedure_dbms_cluster_statusCheck[`dbms.cluster.statusCheck()`] procedure, which can be used to monitor the ability to replicate in clustered databases.
7+
Neo4j 5.24 introduces the xref:procedures.adoc#procedure_dbms_cluster_statusCheck[`dbms.cluster.statusCheck()`] procedure, which can be used to monitor the ability to replicate in clustered databases.
88
In most cases this means a clustered database is write available.
99
The procedure identifies which members of a clustered database are up-to-date and can participate in successful replication.
1010
Therefore, it is useful in determining the fault tolerance of a clustered database.
@@ -36,7 +36,7 @@ CALL dbms.cluster.statusCheck(databases :: LIST<STRING>, timeoutMilliseconds = n
3636
| databases | List<String> | Databases for which the status check should run.
3737
Providing an empty list runs the status check for all *clustered* databases on that server, i.e. it won't run on singles or secondaries.
3838
| timeoutMilliseconds | Integer | How long to allow for replication, before returning it was unsuccessful.
39-
Default value is 1000 milliseconds.
39+
Default value is 1000 milliseconds.
4040
|===
4141

4242
*Returns:*
@@ -53,10 +53,10 @@ The procedure returns a row for all primary members of all the requested databas
5353
| replicationSuccessful | Boolean | Indicates if the server (on which the procedure is run) can replicate a transaction.
5454
| memberStatus | String | The status of each primary member.
5555
| recognisedLeader | String | The server id of the perceived leader of each primary member.
56-
| recognisedLeaderTerm | Integer | The term of the perceived leader of each primary member.
56+
| recognisedLeaderTerm | Integer | The term of the perceived leader of each primary member.
5757
If the members report different leaders, the one with the highest term should be trusted.
5858
| requester | Boolean | Whether a server is the requester or not.
59-
| error | String | Contains the error message if one is present.
59+
| error | String | Contains the error message if one is present.
6060
An example of an error is that one or more of the requested databases do not exist on the requester.
6161
|===
6262

0 commit comments

Comments
 (0)