Skip to content

Commit 349ea62

Browse files
Merge branch 'dev' into dev-v5-mentions
2 parents 25abe3b + 7db1405 commit 349ea62

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

modules/ROOT/pages/backup-restore/aggregate.adoc

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,34 @@ This operation is called _recovery_ and can be costly.
1919
* Reduces the risk of losing chain’s links.
2020

2121

22+
[role=label--changed-2025.01]
2223
[[aggregate-backup-syntax]]
2324
=== Syntax
2425

2526
[source,role=noheader]
2627
----
27-
neo4j-admin database aggregate-backup [-h] [--expand-commands]
28+
neo4j-admin backup aggregate [-h] [--expand-commands]
2829
[--verbose] [--keep-old-backup[=true|false]]
2930
[--parallel-recovery[=true|false]]
3031
[--additional-config=<file>] --from-path=<path>
3132
[--temp-path=<path>] [<database>]
3233
----
3334

35+
[NOTE]
36+
====
37+
In Neo4j 2025.01, the name `neo4j-admin database aggregate-backup` is deprecated.
38+
It is recommended to use the new command name, `neo4j-admin backup aggregate`.
39+
====
40+
41+
3442
=== Description
3543

3644
Aggregates a chain of backup artifacts into a single artifact.
3745

3846
[[aggregate-backup-command-parameters]]
3947
=== Parameters
4048

41-
.`neo4j-admin database aggregate-backup` parameters
49+
.`neo4j-admin backup aggregate` parameters
4250
[options="header", cols="1m,3a"]
4351
|===
4452
| Parameter
@@ -52,7 +60,7 @@ Aggregates a chain of backup artifacts into a single artifact.
5260
[[aggregate-backup-command-options]]
5361
=== Options
5462

55-
.`neo4j-admin database aggregate-backup` options
63+
.`neo4j-admin backup aggregate` options
5664
[options="header", cols="5m,6a,4m"]
5765
|===
5866
| Option
@@ -128,7 +136,7 @@ The following is an example of how to perform aggregation of a set of backups lo
128136

129137
[source,shell]
130138
----
131-
bin/neo4j-admin database aggregate-backup --from-path=/mnt/backups/ neo4j
139+
bin/neo4j-admin backup aggregate --from-path=/mnt/backups/ neo4j
132140
----
133141
The command first looks inside the `/mnt/backups/` directory for a backup chain for the database `neo4j`. If found, it is then aggregated into a single backup artifact.
134142

@@ -138,7 +146,7 @@ The following is an example of how to perform aggregation of a set of backups id
138146

139147
[source,shell]
140148
----
141-
bin/neo4j-admin database aggregate-backup --from-path=/mnt/backups/neo4j-2022-10-18T13-00-07.backup
149+
bin/neo4j-admin backup aggregate --from-path=/mnt/backups/neo4j-2022-10-18T13-00-07.backup
142150
----
143151
The command checks the `/mnt/backups/` directory for a backup chain including the file _neo4j-2022-10-18T13-00-07.backup_, for the database `neo4j`.
144152
If found, it is then aggregated into a single backup artifact.
@@ -162,7 +170,7 @@ The example assumes that you have a backup chain located in the `myBucket/myDire
162170
+
163171
[source,shell]
164172
----
165-
bin/neo4j-admin database aggregate-backup --from-path=s3://myBucket/myDirectory/myBackup.backup mydatabase
173+
bin/neo4j-admin backup aggregate --from-path=s3://myBucket/myDirectory/myBackup.backup mydatabase
166174
----
167175
======
168176
@@ -176,7 +184,7 @@ The example assumes that you have a backup chain located in the `myBucket/myDire
176184
+
177185
[source,shell]
178186
----
179-
bin/neo4j-admin database aggregate-backup --from-path=gs://myBucket/myDirectory/myBackup.backup mydatabase
187+
bin/neo4j-admin backup aggregate --from-path=gs://myBucket/myDirectory/myBackup.backup mydatabase
180188
----
181189
======
182190
@@ -190,7 +198,7 @@ The example assumes that you have a backup chain located with a `myStorageAccoun
190198
+
191199
[source,shell]
192200
----
193-
bin/neo4j-admin database aggregate-backup --from-path=azb://myStorageAccount/myContainer/myDirectory/myBackup.backup mydatabase
201+
bin/neo4j-admin backup aggregate --from-path=azb://myStorageAccount/myContainer/myDirectory/myBackup.backup mydatabase
194202
----
195203
======
196204
=====

modules/ROOT/pages/clustering/databases.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -642,6 +642,7 @@ If this configuration is not performed, the `seedCredentials` option fails.
642642
CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:/myBucket/myBackup.backup', seedConfig: 'region=eu-west-1', seedCredentials: [accessKey];[secretKey] }
643643
----
644644
Where `accessKey` and `secretKey` are provided by AWS.
645+
645646
==== Seed provider reference
646647

647648
[cols="1,2,2",options="header"]

modules/ROOT/pages/clustering/setup/discovery.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Neo4j provides several mechanisms for cluster members to discover each other and
1414
In Neo4j 5.23, a new discovery service was introduced.
1515
You must move to the new version before you start using Neo4j 2025.01.
1616
17-
See link:{neo4j-docs-base-uri}/operations-manual/5/clustering/setup/discovery/[Cluster server discovery in Operations Manual version 5] for more information.
17+
See link:{neo4j-docs-base-uri}/operations-manual/5/clustering/setup/discovery/#clustering-discovery-v1-to-v2[Cluster server discovery in Operations Manual version 5] for more information.
1818
====
1919

2020
[[clustering-discovery-methods]]
@@ -23,6 +23,11 @@ See link:{neo4j-docs-base-uri}/operations-manual/5/clustering/setup/discovery/[C
2323
Depending on the type of xref:configuration/configuration-settings.adoc#config_dbms.cluster.discovery.resolver_type[`dbms.cluster.discovery.resolver_type`] currently in use, the discovery service can use a list of server addresses, DNS records, or Kubernetes services to discover other servers in the cluster.
2424
The discovery configuration is used for initial discovery and to continuously exchange information about changes to the topology of the cluster.
2525

26+
[NOTE]
27+
====
28+
Regardless of the method used to resolve the list of server addresses, ensure that the endpoint for each server hosting the `system` database in primary mode is included.
29+
====
30+
2631
[[clustering-discovery-list]]
2732
=== Discovery using a list of server addresses
2833

0 commit comments

Comments
 (0)