Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion modules/ROOT/pages/backup-restore/planning.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,12 @@ If you have a cluster, you should back up these files for each cluster member.

For any backup, it is important that you store your data separately from the production system, where there are no common dependencies, and preferably off-site.
If you are running Neo4j in the cloud, you may use a different availability zone or even a separate cloud provider.
Since backups are kept for a long time, the longevity of archival storage should be considered as part of backup planning.
Since backups are kept for a long time, the longevity of archival storage should be considered as part of backup planning.

[[performance-improvement]]
== Performance improvement

Backups in Neo4j automatically run a consistency check against the backed-up store.
The backup itself does not take overly long, but the consistency check can take much more time to complete, depending on the store.

In case you want to skip the check, with the option to run it manually at some other time, refer to the xref:tools/neo4j-admin/consistency-checker.adoc[Consistency checker] page.
10 changes: 9 additions & 1 deletion modules/ROOT/pages/tools/neo4j-admin/consistency-checker.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
You can use the `neo4j-admin database check` command to check the consistency of a database, a dump, or a backup.
The `neo4j-admin` tool is located in the _/bin_ directory.

////
This check is performed automatically.
In case you want to skip the check, with the option to run it manually at some other time, run the neo4j-backup tool with the `-verify false` option:
----
./bin/neo4j-backup -from single://127.0.0.1 -to /tmp/foo -verify false
----
////

== Syntax

The `neo4j-admin database check` command has the following syntax:
Expand Down Expand Up @@ -188,4 +196,4 @@ bin/neo4j-admin database check --from-path=<directory-with-backup-or-dump> neo4j
====
`neo4j-admin database check` cannot be applied to xref:composite-databases/index.adoc[Composite databases].
It must be run directly on the databases that are associated with that Composite database.
====
====
2 changes: 1 addition & 1 deletion preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ content:

ui:
bundle:
url: https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle-latest.zip
url: https://d12wh7zj8x3amw.cloudfront.net/build/ui-bundle-latest.zip
snapshot: true
output_dir: /assets

Expand Down