diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index ef9d65995..3c7c70c82 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2287,7 +2287,7 @@ See xref::database-administration/standard-databases/seed-from-uri.adoc[Seed fro |Valid values a|A comma-separated list where each element is a string. |Default value -m|+++S3SeedProvider,CloudSeedProvider+++ +m|+++S3SeedProvider,CloudSeedProvider+++ label:changed[Changed in 5.26] |=== diff --git a/modules/ROOT/pages/database-administration/standard-databases/seed-from-uri.adoc b/modules/ROOT/pages/database-administration/standard-databases/seed-from-uri.adoc index b11778b0e..ab1c4c825 100644 --- a/modules/ROOT/pages/database-administration/standard-databases/seed-from-uri.adoc +++ b/modules/ROOT/pages/database-administration/standard-databases/seed-from-uri.adoc @@ -32,16 +32,19 @@ To determine the cause of the problem, it is recommended to look at the `debug.l [[neo4j-seed-providers]] == Seed providers in Neo4j -The seed can either be a full backup, a differential backup (see <>, introduced in Neo4j 5.26), or a dump from an existing database. +The seed can either be a full backup, a differential backup (see <>, starting from Neo4j 5.26), or a dump from an existing database. The sources of seeds are called _seed providers_. -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). +The mechanism is pluggable, allowing new sources of seeds to be supported (see link:https://www.neo4j.com/docs/java-reference/5/extending-neo4j/project-setup/#extending-neo4j-plugin-seed-provider[Java Reference -> Implement custom seed providers] for more information). 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). [NOTE] ==== -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`]. +Amazon S3 is supported by default. +Starting from Neo4j 5.26, the default support extends also to Google Cloud Storage and Azure Cloud Storage. + +To enable other providers, you need to configure xref:configuration/configuration-settings.adoc#config_dbms.databases.seed_from_uri_providers[`dbms.databases.seed_from_uri_providers`]. ==== [role=label--new-5.26]