Skip to content
Merged
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: 6 additions & 4 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
** xref:configuration/set-initial-password.adoc[]
** xref:configuration/password-and-user-recovery.adoc[]
** xref:configuration/dynamic-settings.adoc[]
** xref:configuration/transaction-logs.adoc[]
** xref:configuration/configuration-settings.adoc[]
*** xref:configuration/configuration-settings.adoc#_checkpoint_settings[Checkpoint settings]
*** xref:configuration/configuration-settings.adoc#_cluster_settings[Cluster settings]
Expand Down Expand Up @@ -108,6 +107,12 @@
*** xref:composite-databases/sharding-with-copy.adoc[]
*** xref:composite-databases/queries.adoc[]

* xref:database-internals/index.adoc[]
** xref:database-internals/transaction-management.adoc[]
** xref:database-internals/locks-deadlocks.adoc[]
** xref:database-internals/transaction-logs.adoc[]
** xref:database-internals/checkpointing.adoc[]

* xref:clustering/index.adoc[]
** xref:clustering/introduction.adoc[]
** Set up a cluster
Expand Down Expand Up @@ -161,7 +166,6 @@
** xref:performance/gc-tuning.adoc[]
** xref:performance/bolt-thread-pool-configuration.adoc[]
** xref:performance/linux-file-system-tuning.adoc[]
** xref:performance/locks-deadlocks.adoc[]
** xref:performance/disks-ram-and-other-tips.adoc[]
** xref:performance/statistics-execution-plans.adoc[]
** xref:performance/space-reuse.adoc[]
Expand All @@ -173,8 +177,6 @@
*** xref:monitoring/metrics/enable.adoc[]
*** xref:monitoring/metrics/expose.adoc[]
*** xref:monitoring/metrics/reference.adoc[]
** xref:monitoring/query-management.adoc[]
** xref:monitoring/transaction-management.adoc[]
** xref:monitoring/connection-management.adoc[]
** xref:monitoring/background-jobs.adoc[]
// ** xref:monitoring/cluster/index.adoc[]
Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/backup-restore/online-backup.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ For example, if your current database has a `Total mapped size` of `128GB` as pe
=== Computational resources configurations

Transaction log files::
The xref:configuration/transaction-logs.adoc[transaction log files], which keep track of recent changes, are rotated and pruned based on a provided configuration.
The xref:database-internals/transaction-logs.adoc[transaction log files], which keep track of recent changes, are rotated and pruned based on a provided configuration.
For example, setting `db.tx_log.rotation.retention_policy=3` files keeps 3 transaction log files in the backup.
Because recovered servers do not need all of the transaction log files that have already been applied, it is possible to further reduce storage size by reducing the size of the files to the bare minimum.
This can be done by setting `db.tx_log.rotation.size=1M` and `db.tx_log.rotation.retention_policy=3` files.
Expand Down
4 changes: 2 additions & 2 deletions modules/ROOT/pages/configuration/configuration-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4391,8 +4391,8 @@ m|+++neo4j+++

== Transaction settings

The transaction settings help you manage the transactions in your database, for example, the transaction timeout, the lock acquisition timeout, the maximum number of concurrently running transactions, etc.
For more information, see xref:monitoring/transaction-management.adoc[Manage transactions] and xref:performance/locks-deadlocks.adoc[Locks and deadlocks].
The transaction settings helps you manage the transactions in your database, for example, the transaction timeout, the lock acquisition timeout, the maximum number of concurrently running transactions, etc.
For more information, see xref:/database-internals/transaction-management.adoc#_manage-transactions[Manage transactions] and xref:/database-internals/locks-deadlocks.adoc[Locks and deadlocks].

[[config_db.lock.acquisition.timeout]]
=== `db.lock.acquisition.timeout`
Expand Down
1 change: 0 additions & 1 deletion modules/ROOT/pages/configuration/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ The topics described are:
* xref:configuration/set-initial-password.adoc[Set initial password] -- How to set an initial password.
* xref:configuration/password-and-user-recovery.adoc[Password and user recovery] -- How to recover after a lost admin password.
* xref:configuration/dynamic-settings.adoc[Update dynamic settings] -- How to configure certain Neo4j parameters while Neo4j is running.
* xref:configuration/transaction-logs.adoc[Transaction logs] -- The transaction logs record all write operations in the database.
* xref:configuration/configuration-settings.adoc[Configuration settings] -- A complete reference of all configuration settings.

For a complete reference of Neo4j configuration settings, see xref:configuration/configuration-settings.adoc[All configuration settings].
Expand Down
234 changes: 0 additions & 234 deletions modules/ROOT/pages/configuration/transaction-logs.adoc

This file was deleted.

Loading