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/database-administration/standard-databases/seed-from-uri.adoc
+18-50Lines changed: 18 additions & 50 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,26 +28,23 @@ neo4j@neo4j> SHOW DATABASES;
28
28
29
29
To determine the cause of the problem, it is recommended to look at the `debug.log`.
30
30
31
-
[NOTE]
32
-
====
33
-
Starting from Neo4j 2025.01, seed from URI can also be used in combination with xref:database-administration/standard-databases/create-databases.adoc[`CREATE OR REPLACE DATABASE`].
34
-
====
35
31
36
32
[[neo4j-seed-providers]]
37
33
== Seed providers in Neo4j
38
34
39
-
The seed can either be a full backup, a differential backup (see <<cloud-seed-provider, `CloudSeedProvider`>>), or a dump from an existing database.
35
+
The seed can either be a full backup, a differential backup (see <<cloud-seed-provider, `CloudSeedProvider`>>, introduced in Neo4j 5.26), or a dump from an existing database.
40
36
The sources of seeds are called _seed providers_.
41
37
42
38
The mechanism is pluggable, allowing new sources of seeds to be supported (see link:https://www.neo4j.com/docs/java-reference/current/extending-neo4j/project-setup/#extending-neo4j-plugin-seed-provider[Java Reference -> Implement custom seed providers] for more information).
43
39
44
-
The product has built-in support for seed from a mounted file system (file), FTP server, HTTP/HTTPS server, Amazon S3, Google Cloud Storage, and Azure Cloud Storage.
40
+
The product has built-in support for seed from a mounted file system (file), FTP server, HTTP/HTTPS server, Amazon S3, Google Cloud Storage (from Neo4j 5.25), and Azure Cloud Storage (from Neo4j 5.25).
45
41
46
42
[NOTE]
47
43
====
48
44
Amazon S3, Google Cloud Storage, and Azure Cloud Storage are supported by default, but the other providers require configuration of xref:configuration/configuration-settings.adoc#config_dbms.databases.seed_from_uri_providers[`dbms.databases.seed_from_uri_providers`].
49
45
====
50
46
47
+
[role=label--new-5.26]
51
48
[[file-seed-provider]]
52
49
=== FileSeedProvider
53
50
@@ -60,13 +57,12 @@ The `FileSeedProvider` supports:
60
57
61
58
The `URLConnectionSeedProvider` supports the following:
62
59
60
+
** `file:` label:deprecated[Deprecated in 5.26]
63
61
** `ftp:`
64
62
** `http:`
65
63
** `https:`
66
64
67
-
Starting from Neo4j 2025.01, the `URLConnectionSeedProvider` does not support `file`.
68
-
// This is true for both Cypher 5 and Cypher 25.
69
-
65
+
[role=label--new-5.25]
70
66
[[cloud-seed-provider]]
71
67
=== CloudSeedProvider
72
68
@@ -76,12 +72,12 @@ The `CloudSeedProvider` supports:
76
72
** `gs:`
77
73
** `azb:`
78
74
79
-
The `CloudSeedProvider` supports using xref:backup-restore/modes.adoc#differential-backup[differential backup] files as seeds.
75
+
Starting from Neo4j 5.26, the `CloudSeedProvider` supports using xref:backup-restore/modes.adoc#differential-backup[differential backup] files as seeds.
80
76
With the provided differential backup file, the `CloudSeedProvider` searches the directory containing differential backup files for a xref:backup-restore/online-backup.adoc#backup-chain[backup chain] ending at the specified differential backup, and then seeds using this backup chain.
0 commit comments