Skip to content

Commit 9412fee

Browse files
Apply suggestions from code review
Co-authored-by: Reneta Popova <[email protected]>
1 parent 107a1ae commit 9412fee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -472,17 +472,17 @@ You can do this by setting the option `--prefer-diff-as-parent` to `True`.
472472
This can be used to ensure you have differential backups for all transactions, which would allow you to restore to any point in time.
473473
Otherwise, the transactions between a full backup and the previous differential backup will not be backed up as individual transactions.
474474

475-
The examples below cover different scenarios for using the `--prefer-diff-as-parent` option.
475+
The following examples cover different scenarios for using the `--prefer-diff-as-parent` option.
476476

477477
[.tabbed-example]
478478
=====
479479
[role=include-with-Chain-with-full-and-differential-backups]
480480
======
481481

482-
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.
483483

484484
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.
486486

487487
Imagine you have the following backup chain:
488488

@@ -629,8 +629,8 @@ Let's assume that the database is empty and you do not write anything to it, whi
629629
| 0
630630
|===
631631

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.
634634

635635
[source,shell]
636636
----
@@ -640,7 +640,7 @@ neo4j-admin database backup \
640640
neo4j
641641
----
642642

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.
644644

645645
[source,shell]
646646
----

0 commit comments

Comments
 (0)