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
Copy file name to clipboardExpand all lines: modules/ROOT/pages/authentication-authorization/ldap-integration.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ this LDAP group will fail authentication, even if their credentials are correct.
65
65
|===
66
66
67
67
All settings are defined at server startup time in the default configuration file _xref:configuration/neo4j-conf.adoc[neo4j.conf]_ or can be modified at
68
-
runtime using xref:reference/procedures.adoc#procedure_dbms_setconfigvalue[`dbms.setConfigValue()`].
68
+
runtime using xref:procedures.adoc#procedure_dbms_setconfigvalue[`dbms.setConfigValue()`].
Copy file name to clipboardExpand all lines: modules/ROOT/pages/clustering/databases.adoc
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,9 +111,9 @@ By default, a newly created database has both read and write access.
111
111
112
112
To relieve the load of a specific server(s), you can use one of the following procedures to deallocate databases causing the pressure from the server(s):
@@ -166,7 +166,7 @@ To rebalance all database allocations across the cluster, for example, because y
166
166
[[reallocate-databases-procedure]]
167
167
=== Reallocate databases using a procedure
168
168
169
-
You can use the procedure xref:reference/procedures.adoc#procedure_dbms_cluster_reallocateDatabase[`dbms.cluster.reallocateDatabase`] to rebalance a specific database across the cluster, or xref:reference/procedures.adoc#procedure_dbms_cluster_reallocateNumberOfDatabases[`dbms.cluster.reallocateNumberOfDatabases`] to rebalance a number of database allocations across the cluster and relieve overloaded servers.
169
+
You can use the procedure xref:procedures.adoc#procedure_dbms_cluster_reallocateDatabase[`dbms.cluster.reallocateDatabase`] to rebalance a specific database across the cluster, or xref:procedures.adoc#procedure_dbms_cluster_reallocateNumberOfDatabases[`dbms.cluster.reallocateNumberOfDatabases`] to rebalance a number of database allocations across the cluster and relieve overloaded servers.
170
170
Note that if the cluster is already balanced, no reallocations will happen when running these procedures.
171
171
These procedures do not require a server name and can be executed with or without a dry run.
172
172
@@ -206,7 +206,7 @@ This command can also be used with `DRYRUN` to preview the new allocation of dat
206
206
[CAUTION]
207
207
====
208
208
`REALLOCATE DATABASES` on a large cluster with many databases has the potential to move a lot of allocations at once, which might stress the cluster.
209
-
Consider starting with more limited reallocations, such as xref:reference/procedures.adoc#procedure_dbms_cluster_reallocateNumberOfDatabases[`dbms.cluster.reallocateNumberOfDatabases`] with a small number, and let the databases complete their reallocation before calling it again, until no more reallocations are necessary.
209
+
Consider starting with more limited reallocations, such as xref:procedures.adoc#procedure_dbms_cluster_reallocateNumberOfDatabases[`dbms.cluster.reallocateNumberOfDatabases`] with a small number, and let the databases complete their reallocation before calling it again, until no more reallocations are necessary.
210
210
====
211
211
212
212
[NOTE]
@@ -557,7 +557,7 @@ If not set, there are no mode constraints on the server.
557
557
[[cluster-default-database]]
558
558
== Change the default database
559
559
560
-
You can use the procedure xref:reference/procedures.adoc#procedure_dbms_setDefaultDatabase[`dbms.setDefaultDatabase("newDefaultDatabaseName")`] to change the default database for a DBMS.
560
+
You can use the procedure xref:procedures.adoc#procedure_dbms_setDefaultDatabase[`dbms.setDefaultDatabase("newDefaultDatabaseName")`] to change the default database for a DBMS.
561
561
562
562
. Ensure that the database to be set as default exists, otherwise create it using the command `CREATE DATABASE <database-name>`.
563
563
. Show the name and status of the current default database by using the command `SHOW DEFAULT DATABASE`.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/clustering/servers.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ Note that there is a known situation in which a previously deallocated offline s
96
96
97
97
The _Cordoned_ state is similar to _Deallocating_ in that servers in this state will not be allocated to host additional databases.
98
98
Unlike _Deallocating_ however, cordoned servers do not lose the databases they already host.
99
-
It is worth noting that when decreasing the number of allocations of a database, allocations on cordoned servers are removed first.
99
+
It is worth noting that when decreasing the number of allocations of a database, allocations on cordoned servers are removed first.
100
100
101
101
A server is transitioned from the _Enabled_ state to the _Cordoned_ state by executing the procedure `dbms.cluster.cordonServer`.
102
102
A server in the _Cordoned_ state may be transitioned to _Deallocating_, or back to _Enabled_.
@@ -276,7 +276,7 @@ neo4j@neo4j> ENABLE SERVER '25a7efc7-d063-44b8-bdee-f23357f89f01' OPTIONS
276
276
The `allowedDatabases` and `deniedDatabases` are mutually exclusive and if both are specified, an error is returned.
277
277
278
278
Optionally, it is possible to automatically enable free servers by setting the xref:configuration/configuration-settings.adoc#config_initial.dbms.automatically_enable_free_servers[`initial.dbms.automatically_enable_free_servers`] to `true`.
279
-
This can be changed after startup using the xref:reference/procedures.adoc#procedure_dbms_cluster_setAutomaticallyEnableFreeServers[`dbms.cluster.setAutomaticallyEnableFreeServers`] procedure.
279
+
This can be changed after startup using the xref:procedures.adoc#procedure_dbms_cluster_setAutomaticallyEnableFreeServers[`dbms.cluster.setAutomaticallyEnableFreeServers`] procedure.
280
280
281
281
Server `tags` are used during database allocation and when configuring load balancing and replication policies.
282
282
They cannot contain duplicates, so `tags:['eu', 'eu']` will return an error.
| This setting allows for auto-enable of servers in the `FREE` state.
23
-
After startup, it can be changed with the xref:reference/procedures.adoc#procedure_dbms_cluster_setAutomaticallyEnableFreeServers[`dbms.cluster.setAutomaticallyEnableFreeServers`] procedure.
23
+
After startup, it can be changed with the xref:procedures.adoc#procedure_dbms_cluster_setAutomaticallyEnableFreeServers[`dbms.cluster.setAutomaticallyEnableFreeServers`] procedure.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/clustering/setup/deploy.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,9 +46,9 @@ If not specified, it defaults to zero hostings in secondary mode.
46
46
[NOTE]
47
47
====
48
48
Any setting with the `initial` prefix is only effective on the first startup of the DBMS.
49
-
Changing the default number of primaries and secondaries dynamically can only be done with the xref:reference/procedures.adoc#procedure_dbms_setDefaultAllocationNumbers[`dbms.setDefaultAllocationNumbers`] procedure.
49
+
Changing the default number of primaries and secondaries dynamically can only be done with the xref:procedures.adoc#procedure_dbms_setDefaultAllocationNumbers[`dbms.setDefaultAllocationNumbers`] procedure.
50
50
See xref:clustering/databases.adoc#_create_database[`CREATE DATABASE`] for more information.
51
-
To view the current default settings, use the xref:reference/procedures.adoc#procedure_dbms_showTopologyGraphConfig[`dbms.showTopologyGraphConfig`] procedure.
51
+
To view the current default settings, use the xref:procedures.adoc#procedure_dbms_showTopologyGraphConfig[`dbms.showTopologyGraphConfig`] procedure.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/database-administration/standard-databases/errors.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ It produces a database dump that can be further examined and potentially repaire
162
162
163
163
There are two ways to get a database into a `quarantined` state:
164
164
165
-
* By using the xref:reference/procedures.adoc#procedure_dbms_quarantineDatabase[`dbms.quarantineDatabase`] procedure locally to isolate a specific database.
165
+
* By using the xref:procedures.adoc#procedure_dbms_quarantineDatabase[`dbms.quarantineDatabase`] procedure locally to isolate a specific database.
166
166
The procedure must be executed on the instance whose copy of the database you want to quarantine.
167
167
A reason for that can be, for example, when a database is unable to start on a given instance due to a file system permissions issue with the volume where the database is located or when a recently started database begins to log errors.
168
168
The quarantine state renders the database inaccessible on that instance and prevents its state from being changed, for example, with the `START DATABASE` command.
@@ -210,7 +210,7 @@ The result contains the user, the time, and the reason for the quarantine.
210
210
211
211
[NOTE]
212
212
====
213
-
The `dbms.quarantineDatabase` procedure replaces xref:reference/procedures.adoc#procedure_dbms_cluster_quarantinedatabase[`dbms.cluster.quarantineDatabase`], which has been deprecated in Neo4j 4.3 and will be removed with the next major version.
213
+
The `dbms.quarantineDatabase` procedure replaces xref:procedures.adoc#procedure_dbms_cluster_quarantinedatabase[`dbms.cluster.quarantineDatabase`], which has been deprecated in Neo4j 4.3 and will be removed with the next major version.
214
214
====
215
215
216
216
.Quarantine a database
@@ -251,7 +251,7 @@ neo4j@system> SHOW DATABASE foo;
251
251
====
252
252
A `quarantined` state is persisted for user databases.
253
253
This means that if a database is quarantined, it will remain so even if that Neo4j instance is restarted.
254
-
You can remove it only by running the xref:reference/procedures.adoc#procedure_dbms_quarantineDatabase[`dbms.quarantineDatabase`] procedure on the instance where the quarantined database is located, passing `false` for the `setStatus` parameter.
254
+
You can remove it only by running the xref:procedures.adoc#procedure_dbms_quarantineDatabase[`dbms.quarantineDatabase`] procedure on the instance where the quarantined database is located, passing `false` for the `setStatus` parameter.
255
255
256
256
The one exception to this rule is for the built-in `system` database.
257
257
Any quarantine for that database is removed automatically after instance restart.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/database-internals/transaction-logs.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ Old transaction logs cannot be safely archived or removed by external jobs since
85
85
Log pruning is called only after checkpoint completion to ensure at least one checkpoint and points to a valid place in the transaction log data.
86
86
In reality, this means that all transaction logs created between checkpoints are kept for some time, and only after a checkpoint, the pruning strategy removes them.
87
87
For more details on how to speed up checkpointing, see xref:database-internals/checkpointing.adoc#transaction-logging-log-pruning[Configure log pruning].
88
-
To force a checkpoint, run the procedure xref:reference/procedures.adoc#procedure_db_checkpoint[`CALL db.checkpoint()`].
88
+
To force a checkpoint, run the procedure xref:procedures.adoc#procedure_db_checkpoint[`CALL db.checkpoint()`].
Copy file name to clipboardExpand all lines: modules/ROOT/pages/monitoring/logging.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1006,7 +1006,7 @@ The last two parenthesis `{}` `{}` are for the query parameters and `txMetaData`
1006
1006
[[attach-metadata-tx]]
1007
1007
=== Attach metadata to a transaction
1008
1008
1009
-
You can attach metadata to a transaction and have it printed in the query log using the built-in procedure xref:reference/procedures.adoc#procedure_tx_setmetadata[`tx.setMetaData`].
1009
+
You can attach metadata to a transaction and have it printed in the query log using the built-in procedure xref:procedures.adoc#procedure_tx_setmetadata[`tx.setMetaData`].
1010
1010
1011
1011
[NOTE]
1012
1012
====
@@ -1032,7 +1032,7 @@ Every graph app should follow a convention for passing metadata with the queries
1032
1032
1033
1033
This is typically done programmatically but can also be used with the Neo4j dev tools. +
1034
1034
In general, you start a transaction on a user database and attach a list of metadata to it by calling `tx.setMetaData`.
1035
-
You can also use the procedure xref:reference/procedures.adoc#procedure_tx_getmetadata[`CALL tx.getMetaData()`] to show the metadata of the current transaction.
1035
+
You can also use the procedure xref:procedures.adoc#procedure_tx_getmetadata[`CALL tx.getMetaData()`] to show the metadata of the current transaction.
1036
1036
These examples use the MovieGraph dataset from the link:https://neo4j.com/docs/browser-manual/current/visual-tour/#guides[Neo4j Browser guide].
1037
1037
1038
1038
.Using `cypher-shell`, attach metadata to a transaction
0 commit comments