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
Let's assume that every hour you write 10 transactions to the `neo4j` database, except from 12:30-13:30, when you do not write any transaction.
482
+
Let's assume that you write 10 transactions to the `neo4j` database every hour, except from 12:30 to 13:30, when you do not write any transactions.
483
483
484
484
There is a backup job that takes a backup every hour and a full backup every four hours.
485
-
We refer as an _empty_ backup a backup that has no transactions, meaning that both the lower transaction ID and the upper transaction ID are zero.
485
+
An empty backup has no transactions, meaning that both the lower transaction ID and the upper transaction ID are zero.
486
486
487
487
Imagine you have the following backup chain:
488
488
@@ -629,8 +629,8 @@ Let's assume that the database is empty and you do not write anything to it, whi
629
629
| 0
630
630
|===
631
631
632
-
In this case, you cannot perform a differential backup with the `--type=DIFF` option, and the below command fails anyway, whether you used the `--prefer-diff-as-parent` or not.
633
-
This occurs because we are looking for the *latest non-empty* backup, and there are only empty backups.
632
+
In this case, you cannot perform a differential backup with the `--type=DIFF` option, and the below command will fail anyway, whether you use the `--prefer-diff-as-parent` or not.
633
+
This occurs because you are looking for the *latest non-empty* backup, and there are only empty backups.
634
634
635
635
[source,shell]
636
636
----
@@ -640,7 +640,7 @@ neo4j-admin database backup \
640
640
neo4j
641
641
----
642
642
643
-
But if you select the `--type=AUTO` option, the command will succeed, and the result would be another empty *full* backup.
643
+
But if you select the `--type=AUTO` option, the command will succeed, and the result will be another empty *full* backup.
0 commit comments