From 24af73786790a753b5bc911ed554e0a82c6a3172 Mon Sep 17 00:00:00 2001 From: Natalia Ivakina Date: Tue, 3 Jun 2025 10:28:59 +0200 Subject: [PATCH 1/2] Tweak the Seed from URI page in 5.x --- .../ROOT/pages/configuration/configuration-settings.adoc | 2 +- .../standard-databases/seed-from-uri.adoc | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) 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..d4d189682 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, in addition to Amazon S3, Google Cloud Storage and Azure Cloud Storage are supported by default. + +However, the other providers require configuration of xref:configuration/configuration-settings.adoc#config_dbms.databases.seed_from_uri_providers[`dbms.databases.seed_from_uri_providers`]. ==== [role=label--new-5.26] From b9068749d8d43f612eb9de95da20a01cf1ceee37 Mon Sep 17 00:00:00 2001 From: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> Date: Tue, 3 Jun 2025 10:38:12 +0200 Subject: [PATCH 2/2] Apply suggestions from code review --- .../standard-databases/seed-from-uri.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 d4d189682..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 @@ -42,9 +42,9 @@ The product has built-in support for seed from a mounted file system (file), FTP [NOTE] ==== Amazon S3 is supported by default. -Starting from Neo4j 5.26, in addition to Amazon S3, Google Cloud Storage and Azure Cloud Storage are supported by default. +Starting from Neo4j 5.26, the default support extends also to Google Cloud Storage and Azure Cloud Storage. -However, the other providers require configuration of xref:configuration/configuration-settings.adoc#config_dbms.databases.seed_from_uri_providers[`dbms.databases.seed_from_uri_providers`]. +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]