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
@@ -154,6 +158,10 @@ It is recommended to use `SHOW USERS`, `SHOW ROLES`, and `SHOW ROLE $role PRIVIL
154
158
|The size of the page cache to use for the backup process.
155
159
|
156
160
161
+
|--parallel-download[=true\|false]
162
+
|label:new[Introduced in 2025.11] Download backup data from multiple Neo4j instances in parallel.
163
+
|false
164
+
157
165
|--parallel-recovery[=true\|false]
158
166
| Allow multiple threads to apply pulled transactions to a backup in parallel. For some databases and workloads, this may reduce backup times significantly.
159
167
Note: this is an EXPERIMENTAL option. Consult Neo4j support before use.
@@ -167,6 +175,11 @@ Note: this is an EXPERIMENTAL option. Consult Neo4j support before use.
167
175
|label:new[Introduced in 2025.09] Allow the DBMS to automatically determine which servers are eligible to serve as backup sources, instead of requiring manual selection.
168
176
|false
169
177
178
+
|--skip-recovery[=true\|false]
179
+
|label:new[Introduced in 2025.11] Skip recovery as part of the full backup. Skipping recovery might result in faster backups,
180
+
but recovery will have to be done during restore time.
181
+
|true
182
+
170
183
|--temp-path=<path>
171
184
|Provide a path to a temporary empty directory for storing backup files until the command is completed. The files will be deleted once the command is finished.
172
185
|
@@ -380,6 +393,15 @@ The server selection occurs in the following order:
380
393
* The DBMS first selects all servers hosting the database in secondary mode.
381
394
* If it is not possible to back up from one of the secondaries, the DBMS attempts to take a backup from the primary followers before finally trying the database primary writer.
382
395
396
+
[role=label--new-2025.11]
397
+
==== Using `--parallel-download`
398
+
399
+
Starting from 2025.11, the `--parallel-download` option is available.
400
+
When enabled, the backup process will pull data from multiple instances which have been either defined in the
401
+
--from or determined from --remote-address-resolution.
402
+
403
+
Note that this will speed up the backup process if there are enough throughput provisioned in both the
404
+
backup process and the instances from which data is being pulled from.
0 commit comments