Skip to content

Commit 173357a

Browse files
Tie up the Database internals section with the v4.4 (#1973) (#2007)
The _Database internals_ section was created in 5.x. This means we don't have anything similar in the v4.4 docs. Some of the pages can be linked to the Java Reference 4.4 and its section _Transaction management_.
1 parent f182794 commit 173357a

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

modules/ROOT/pages/database-internals/checkpointing.adoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ Pruning is reliant on checkpointing.
1616
Checkpointing determines which logs can be pruned and determines the occurrence of pruning, as the absence of a checkpoint implies that the set of transaction log files available for pruning cannot have changed.
1717
Consequently, pruning is triggered whenever checkpointing occurs.
1818

19+
[NOTE]
20+
====
21+
For information on checkpointing and log pruning in Neo4j 4.4, refer to link:https://neo4j.com/docs/operations-manual/4.4/configuration/configuration-settings/#_checkpoint_settings[Configuration settings -> Checkpoint settings], link:https://neo4j.com/docs/operations-manual/4.4/performance/disks-ram-and-other-tips/#performance-checkpoint-iops-limit[Performance -> Checkpoint IOPS limit], and link:https://neo4j.com/docs/operations-manual/4.4/configuration/transaction-logs/#transaction-logging-log-pruning[Transaction log -> Log pruning] respectively.
22+
====
23+
1924
[[checkpointing-policy]]
2025
== Configure the checkpointing policy
2126

@@ -154,4 +159,4 @@ https://neo4j.com/docs/operations-manual/current/monitoring/metrics/reference/#m
154159
neo4j.check_point.duration.csv
155160
neo4j.check_point.total_time.csv
156161
neo4j.check_point.events.csv
157-
....
162+
....

modules/ROOT/pages/database-internals/index.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,10 @@ The following sections describe the transactional behavior in detail and how to
2424
* xref:database-internals/concurrent-data-access.adoc[]
2525
* xref:database-internals/transaction-logs.adoc[]
2626
* xref:database-internals/checkpointing.adoc[]
27-
* xref:database-internals/store-formats.adoc[]
27+
* xref:database-internals/store-formats.adoc[]
28+
29+
[NOTE]
30+
====
31+
For information on Neo4j 4.4, see link:https://neo4j.com/docs/java-reference/4.4/transaction-management/[Java Reference 4.4 -> Transaction management].
32+
====
33+

modules/ROOT/pages/database-internals/store-formats.adoc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
= Store formats
21
:description: This page describes store formats in Neo4j.
2+
[[store-formats]]
3+
= Store formats
34

45
Neo4j's storage engine supports several store formats that describe how data is written to disk.
56
Starting from 5.23, `block` format is the recommended format for Enterprise Edition due to its superior performance and scalability.
@@ -11,6 +12,11 @@ Starting from 5.23, `block` format is the recommended format for Enterprise Edit
1112
It is not recommended to use these formats for new databases.
1213
For more information on the deprecation and timeline for the eventual removal of these formats, see <<format-deprecations, Format deprecations>>.
1314

15+
[NOTE]
16+
====
17+
For information on store formats in Neo4j 4.4, see link:https://neo4j.com/docs/operations-manual/4.4/tools/neo4j-admin/neo4j-admin-store-info/[Tools -> Neo4j Admin -> Display store information].
18+
====
19+
1420
[[store-format-overview]]
1521
== Available store formats
1622

modules/ROOT/pages/tutorial/tutorial-composite-database.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[[tutorial-composite-database]]
33
= Set up and use a Composite database
44
:description: This tutorial walks through the basics of setting up and using a Composite database.
5-
:page-aliases: fabric-tutorial.adoc
5+
:page-aliases: tutorial/fabric-tutorial.adoc
66

77
Composite databases allow queries that access multiple graphs at once.
88
This is a function that enables:

0 commit comments

Comments
 (0)