Database alias management
This section explains how to use Cypher® to manage database aliases in Neo4j.
There are two kinds of aliases, local database aliases and remote database aliases. A local database alias can only target a database within the same DBMS. A remote alias may target a database from another Neo4j DBMS. When a query is run against an alias, it will be redirected to the target database. The home database for users can be set to an alias, which will be resolved to the target database on use.
A local alias can be used in all other Cypher commands in place of the target database. Please note that the local alias will be resolved while executing the command. Privileges are defined on the database, and not the local alias.
A remote alias can be used for connecting to a database of a remote Neo4j DBMS, use clauses, setting a user’s home database and defining the access privileges to the remote database. Remote aliases requires configuration to safely connect to the remote target, which is described in Connecting remote databases. It is not possible to impersonate a user on the remote database or to execute an administration command on the remote database via a remote alias.
Database aliases can be created and managed using a set of Cypher administration commands executed against the system
database.
The required privileges are described here.
When connected to the DBMS over Bolt, administration commands are automatically routed to the system
database.
The syntax of the alias management commands is as follows:
More details about the syntax descriptions can be found here. |
Command | Syntax |
---|---|
|
Lists both local and remote database aliases.
|
|
Create a local database alias.
|
|
Create a remote database alias.
|
|
Alter a local database alias.
|
|
Alter a remote database alias.
|
|
Drop either a local or remote database alias.
|
This is the list of the allowed driver settings for remote aliases.
Description |
SSL for remote alias drivers is configured through the target url scheme.
If |
Valid values |
Boolean |
Default value |
true |
Description |
Socket connection timeout. A timeout of zero is treated as an infinite timeout and will be bound by the timeout configured on the operating system level. |
Valid values |
Duration |
Default value |
Description |
Pooled connections older than this threshold will be closed and removed from the pool. Setting this option to a low value will cause a high connection churn and might result in a performance hit. It is recommended to set maximum lifetime to a slightly smaller value than the one configured in network equipment (load balancer, proxy, firewall, etc. can also limit maximum connection lifetime). |
Valid values |
Duration. Zero and negative values result in lifetime not being checked. |
Default value |
Description |
Maximum amount of time spent attempting to acquire a connection from the connection pool. This timeout only kicks in when all existing connections are being used and no new connections can be created because maximum connection pool size has been reached. Error is raised when connection can’t be acquired within configured time. |
Valid values |
Duration. Negative values are allowed and result in unlimited acquisition timeout.
Value of |
Default value |
Description |
Maximum total number of connections to be managed by a connection pool. The limit is enforced for a combination of a host and user. |
Valid values |
Integer. Negative values are allowed and result in unlimited pool.
Value of |
Default value |
Description |
Sets level for driver internal logging. |
Valid values |
org.neo4j.logging.Level. One of |
Default value |
If transaction modifies an alias, other transactions concurrently executing against that alias may be aborted and rolled back for safety. This prevents issues such as a transaction executing against multiple target databases for the same alias. |
Listing database aliases
Available database aliases can be seen using SHOW ALIASES FOR DATABASE
.
The required privileges are described here.
SHOW ALIASES FOR DATABASE
will produce a table of database aliases with the following columns:
Column | Description |
---|---|
|
The name of the database alias. Default Output |
|
The names of the target database. Default Output |
|
The location of the database, either |
|
Target location or |
|
User connecting to the remote database or |
|
The driver options for connection to the remote database or |
|
properties |
|
MAP |
The detailed information for a particular database alias can be displayed using the command SHOW ALIASES FOR DATABASE YIELD *
.
When a YIELD *
clause is provided, the full set of columns is returned.
A summary of all available databases alias can be displayed using the command SHOW ALIASES FOR DATABASE
.
SHOW ALIASES FOR DATABASE
name | database | location | url | user |
---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 3 |
SHOW ALIASES FOR DATABASE YIELD *
name | database | location | url | user | driver |
---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 3 |
The number of database aliases can be seen using a count()
aggregation with YIELD
and RETURN
.
SHOW ALIASES FOR DATABASE YIELD *
RETURN count(*) as count
count |
---|
|
Rows: 1 |
It is possible to filter and sort the results by using YIELD
, ORDER BY
and WHERE
.
SHOW ALIASES FOR DATABASE YIELD name, url, database
ORDER BY database
WHERE name CONTAINS 'e'
In this example:
-
The number of columns returned has been reduced with the
YIELD
clause. -
The order of the returned columns has been changed.
-
The results have been filtered to only show database alias names containing
'e'
. -
The results are ordered by the
database
column usingORDER BY
.
It is also possible to use SKIP
and LIMIT
to paginate the results.
name | url | database |
---|---|---|
|
|
|
|
|
|
Rows: 2 |
Creating database aliases
Aliases can be created using CREATE ALIAS
.
The required privileges are described here.
This command is optionally idempotent, with the default behavior to fail with an error if the database alias already exists.
Inserting IF NOT EXISTS
after the alias name ensures that no error is returned and nothing happens should a database alias with that name already exist.
Adding OR REPLACE
to the command will result in any existing database alias being deleted and a new one created.
CREATE OR REPLACE ALIAS
will fail if there is an existing database with the same name.
The |
Alias names are subject to the standard Cypher restrictions on valid identifiers. The following naming rules apply:
|
Creating local database aliases
Local aliases are created with a target database.
CREATE ALIAS `northwind` FOR DATABASE `northwind-graph-2021`
System updates: 1
Rows: 0
When a local database alias has been created, it will show up in the aliases column provided by the command SHOW DATABASES
and in the SHOW ALIASES FOR DATABASE
command.
SHOW DATABASE `northwind`
name | aliases | access | address | role | requestedStatus | currentStatus | error | default | home |
---|---|---|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
Rows: 1 |
SHOW ALIASES FOR DATABASE
WHERE name = 'northwind'
name | database | location | url | user |
---|---|---|---|---|
|
|
|
|
|
Rows: 1 |
Adding a local alias with the same name as an existing local or remote alias will do nothing with the IF NOT EXISTS
clause but fail without it.
CREATE ALIAS `northwind` IF NOT EXISTS FOR DATABASE `northwind-graph-2020`
Rows: 0
It is possible to replace an alias. The old alias may be either local or remote.
CREATE OR REPLACE ALIAS `northwind` FOR DATABASE `northwind-graph-2020`
System updates: 2
Rows: 0
This is equivalent to running:
DROP ALIAS `northwind` IF EXISTS FOR DATABASE
CREATE ALIAS `northwind` FOR DATABASE `northwind-graph-2020`
Creating remote database aliases
Database aliases can also point to remote databases by providing an url and the credentials of a user on the remote Neo4j DBMS. See Connecting remote databases for the necessary configurations.
Creating remote aliases also allows IF NOT EXISTS
and OR REPLACE
clauses.
Both check for any remote or local database aliases.
CREATE ALIAS `remote-northwind` FOR DATABASE `northwind-graph-2020`
AT "neo4j+s://location:7687"
USER alice
PASSWORD 'example_secret'
System updates: 1
Rows: 0
It is possible to override the default driver settings per alias, which are used for connecting to the remote database. The full list of supported driver settings can be seen here.
CREATE ALIAS `remote-with-driver-settings` FOR DATABASE `northwind-graph-2020`
AT "neo4j+s://location:7687"
USER alice
PASSWORD 'example_secret'
DRIVER {
connection_timeout: duration({minutes: 1}),
connection_pool_max_size: 10
}
System updates: 1
Rows: 0
When a database alias pointing to a remote database has been created, its details can be shown with the SHOW ALIASES FOR DATABASE
command.
SHOW ALIASES FOR DATABASE
WHERE name = 'remote-northwind'
name | database | location | url | user |
---|---|---|---|---|
|
|
|
|
|
Rows: 1 |
SHOW ALIASES FOR DATABASE YIELD *
WHERE name = 'remote-with-driver-settings'
name | database | location | url | user | driver |
---|---|---|---|---|---|
|
|
|
|
|
|
Rows: 1 |
Altering database aliases
Aliases can be altered using ALTER ALIAS
to change its database target, url, user credentials, or driver settings.
The required privileges are described here.
Only the clauses used will be altered.
Local aliases can not be altered to remote aliases or vice versa. |
Example of altering a local database alias target.
ALTER ALIAS `northwind`
SET DATABASE TARGET `northwind-graph-2021`
System updates: 1
Rows: 0
Example of altering a remote database alias target.
ALTER ALIAS `remote-northwind` SET DATABASE
TARGET `northwind-graph-2020` AT "neo4j+s://other-location:7687"
System updates: 1
Rows: 0
Example of altering a remote alias credentials and driver settings.
ALTER ALIAS `remote-with-driver-settings` SET DATABASE
USER bob
PASSWORD 'new_example_secret'
DRIVER {
connection_timeout: duration({ minutes: 1}),
logging_level: 'debug'
}
System updates: 1
Rows: 0
All driver settings are replaced by the new ones.
In this case, by not repeating the driver setting |
Example of altering a remote alias to remove all custom driver settings.
ALTER ALIAS `movie scripts` SET DATABASE
DRIVER {}
System updates: 1
Rows: 0
When a local database alias has been altered, it will show up in the aliases column for the target database provided by the command SHOW DATABASES
.
SHOW DATABASE `northwind`
name | aliases | access | address | role | requestedStatus | currentStatus | error | default | home |
---|---|---|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
Rows: 1 |
The changes for all database aliases will show up in the SHOW ALIASES FOR DATABASE
command.
SHOW ALIASES FOR DATABASE YIELD *
WHERE name IN ['northwind', 'remote-northwind', 'remote-with-driver-settings', 'movie scripts']
name | database | location | url | user | driver |
---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 4 |
This command is optionally idempotent, with the default behavior to fail with an error if the alias does not exist.
Appending IF EXISTS
to the command ensures that no error is returned and nothing happens should the alias not exist.
ALTER ALIAS `no-alias` IF EXISTS SET DATABASE TARGET `northwind-graph-2021`
Rows: 0
Deleting database aliases
Both local and remote aliases can be deleted using the DROP ALIAS
command.
The required privileges are described here.
Drop a local database alias.
DROP ALIAS `northwind` FOR DATABASE
System updates: 1
Rows: 0
Drop a remote database alias.
DROP ALIAS `remote-northwind` FOR DATABASE
System updates: 1
Rows: 0
When a database alias has been deleted, it will no longer show up in the aliases column provided by the command SHOW DATABASES
.
SHOW DATABASE `northwind-graph-2021`
name | aliases | access | address | role | requestedStatus | currentStatus | error | default | home |
---|---|---|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
Rows: 1 |
When a database alias has been deleted, it will no longer show up in the aliases column provided by the command SHOW ALIASES FOR DATABASE
.
List all database aliases.
SHOW ALIASES FOR DATABASE
name | database | location | url | user |
---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rows: 4 |
This command is optionally idempotent, with the default behavior to fail with an error if the alias does not exist.
Inserting IF EXISTS
after the alias name ensures that no error is returned and nothing happens should the alias not exist.
DROP ALIAS `northwind` IF EXISTS FOR DATABASE
Rows: 0