From e28d0ec8aeb8f480fd6f8149df6dbf8e3d729a0b Mon Sep 17 00:00:00 2001 From: Jack Waudby Date: Tue, 12 Nov 2024 08:37:39 +0000 Subject: [PATCH 1/9] Improve description --- .../ROOT/pages/configuration/configuration-settings.adoc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index 4ee091f83..5a2cc60e9 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2214,8 +2214,11 @@ m|+++UTC+++ |Description a|Databases may be created from an existing _seed_ (a database backup or dump) stored at some source URI. Different types of seed source are supported by different implementations of `com.neo4j.dbms.seeding.SeedProvider`. -There are two available values, the built-in `S3SeedProvider` and `URLConnectionSeedProvider`. -Seeds addressed with `s3:` are supported by `S3SeedProvider` and seeds stored at `file`, `ftp`,`http`, and `https` URIs are supported by `URLConnectionSeedProvider`. +There following values are available, `CloudSeedProvider`, `S3SeedProvider`, `FileSeedProvider` and `URLConnectionSeedProvider`. +Seeds addressed with `s3` are supported by `S3SeedProvider`. +Seeds addressed with `s3`, `azb`, `gs` are supported by `CloudSeedProvider`. +Seeds addressed with `ftp`,`http`, and `https` URIs are supported by `URLConnectionSeedProvider`. +Seed addressed with `file` are supported by `FileSeedProvider`. This list specifies enabled seed providers. If a seed source (URI scheme) is supported by multiple providers in the list, the first matching provider will be used. If the list is set to empty, the seed from URI functionality is effectively disabled. From 7a2defcc2a185de162559fa33c11a20a91a62b3e Mon Sep 17 00:00:00 2001 From: Jack Waudby Date: Tue, 12 Nov 2024 14:49:51 +0000 Subject: [PATCH 2/9] Fix typo --- modules/ROOT/pages/configuration/configuration-settings.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index 5a2cc60e9..20662d8c4 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2214,11 +2214,11 @@ m|+++UTC+++ |Description a|Databases may be created from an existing _seed_ (a database backup or dump) stored at some source URI. Different types of seed source are supported by different implementations of `com.neo4j.dbms.seeding.SeedProvider`. -There following values are available, `CloudSeedProvider`, `S3SeedProvider`, `FileSeedProvider` and `URLConnectionSeedProvider`. +The following values are available, `CloudSeedProvider`, `S3SeedProvider`, `FileSeedProvider` and `URLConnectionSeedProvider`. Seeds addressed with `s3` are supported by `S3SeedProvider`. Seeds addressed with `s3`, `azb`, `gs` are supported by `CloudSeedProvider`. Seeds addressed with `ftp`,`http`, and `https` URIs are supported by `URLConnectionSeedProvider`. -Seed addressed with `file` are supported by `FileSeedProvider`. +Seeds addressed with `file` are supported by `FileSeedProvider`. This list specifies enabled seed providers. If a seed source (URI scheme) is supported by multiple providers in the list, the first matching provider will be used. If the list is set to empty, the seed from URI functionality is effectively disabled. From 789b64693f00fe3f72b08a9a565bd24f6b73821a Mon Sep 17 00:00:00 2001 From: Jack Waudby <33488812+jackwaudby@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:24:57 +0000 Subject: [PATCH 3/9] Update modules/ROOT/pages/configuration/configuration-settings.adoc Co-authored-by: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> --- modules/ROOT/pages/configuration/configuration-settings.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index 20662d8c4..eb43ad2bf 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2214,7 +2214,8 @@ m|+++UTC+++ |Description a|Databases may be created from an existing _seed_ (a database backup or dump) stored at some source URI. Different types of seed source are supported by different implementations of `com.neo4j.dbms.seeding.SeedProvider`. -The following values are available, `CloudSeedProvider`, `S3SeedProvider`, `FileSeedProvider` and `URLConnectionSeedProvider`. + +The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLConnectionSeedProvider`, and `FileSeedProvider`. Seeds addressed with `s3` are supported by `S3SeedProvider`. Seeds addressed with `s3`, `azb`, `gs` are supported by `CloudSeedProvider`. Seeds addressed with `ftp`,`http`, and `https` URIs are supported by `URLConnectionSeedProvider`. From 6d5f8b73f2787bd980d30f4d575432799dd57730 Mon Sep 17 00:00:00 2001 From: Jack Waudby <33488812+jackwaudby@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:25:05 +0000 Subject: [PATCH 4/9] Update modules/ROOT/pages/configuration/configuration-settings.adoc Co-authored-by: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> --- modules/ROOT/pages/configuration/configuration-settings.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index eb43ad2bf..bc96e6335 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2216,7 +2216,8 @@ a|Databases may be created from an existing _seed_ (a database backup or dump) s Different types of seed source are supported by different implementations of `com.neo4j.dbms.seeding.SeedProvider`. The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLConnectionSeedProvider`, and `FileSeedProvider`. -Seeds addressed with `s3` are supported by `S3SeedProvider`. + +* `S3SeedProvider` supports seeds addressed with `s3`. Seeds addressed with `s3`, `azb`, `gs` are supported by `CloudSeedProvider`. Seeds addressed with `ftp`,`http`, and `https` URIs are supported by `URLConnectionSeedProvider`. Seeds addressed with `file` are supported by `FileSeedProvider`. From c8c448e139be9005da23ff98985dfdc8e385d850 Mon Sep 17 00:00:00 2001 From: Jack Waudby <33488812+jackwaudby@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:25:10 +0000 Subject: [PATCH 5/9] Update modules/ROOT/pages/configuration/configuration-settings.adoc Co-authored-by: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> --- modules/ROOT/pages/configuration/configuration-settings.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index bc96e6335..086dfb341 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2218,7 +2218,7 @@ Different types of seed source are supported by different implementations of `co The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLConnectionSeedProvider`, and `FileSeedProvider`. * `S3SeedProvider` supports seeds addressed with `s3`. -Seeds addressed with `s3`, `azb`, `gs` are supported by `CloudSeedProvider`. +* `CloudSeedProvider` supports seeds addressed with `s3`, `azb`, `gs`. Seeds addressed with `ftp`,`http`, and `https` URIs are supported by `URLConnectionSeedProvider`. Seeds addressed with `file` are supported by `FileSeedProvider`. This list specifies enabled seed providers. From babacded1cd67549a0c0286ee3f1daec99a4ac29 Mon Sep 17 00:00:00 2001 From: Jack Waudby <33488812+jackwaudby@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:25:18 +0000 Subject: [PATCH 6/9] Update modules/ROOT/pages/configuration/configuration-settings.adoc Co-authored-by: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> --- modules/ROOT/pages/configuration/configuration-settings.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index 086dfb341..d3b5562bb 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2219,7 +2219,7 @@ The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLC * `S3SeedProvider` supports seeds addressed with `s3`. * `CloudSeedProvider` supports seeds addressed with `s3`, `azb`, `gs`. -Seeds addressed with `ftp`,`http`, and `https` URIs are supported by `URLConnectionSeedProvider`. +* `URLConnectionSeedProvider` supports seeds addressed with `ftp`,`http`, and `https`. Seeds addressed with `file` are supported by `FileSeedProvider`. This list specifies enabled seed providers. If a seed source (URI scheme) is supported by multiple providers in the list, the first matching provider will be used. From fa0eb674d5decf40ba5e1e2f63e671cd5f0bda9c Mon Sep 17 00:00:00 2001 From: Jack Waudby <33488812+jackwaudby@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:25:25 +0000 Subject: [PATCH 7/9] Update modules/ROOT/pages/configuration/configuration-settings.adoc Co-authored-by: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> --- modules/ROOT/pages/configuration/configuration-settings.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index d3b5562bb..af91122bd 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2220,7 +2220,8 @@ The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLC * `S3SeedProvider` supports seeds addressed with `s3`. * `CloudSeedProvider` supports seeds addressed with `s3`, `azb`, `gs`. * `URLConnectionSeedProvider` supports seeds addressed with `ftp`,`http`, and `https`. -Seeds addressed with `file` are supported by `FileSeedProvider`. +* `FileSeedProvider` supports seeds addressed with `file`. + This list specifies enabled seed providers. If a seed source (URI scheme) is supported by multiple providers in the list, the first matching provider will be used. If the list is set to empty, the seed from URI functionality is effectively disabled. From 354947e8abbc0bb6e0f5bd17da16c27be9f286c5 Mon Sep 17 00:00:00 2001 From: Jack Waudby <33488812+jackwaudby@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:25:32 +0000 Subject: [PATCH 8/9] Update modules/ROOT/pages/configuration/configuration-settings.adoc Co-authored-by: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> --- modules/ROOT/pages/configuration/configuration-settings.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index af91122bd..ca88b66c7 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2212,7 +2212,7 @@ m|+++UTC+++ [frame="topbot", stripes=odd, grid="cols", cols="<1s,<4"] |=== |Description -a|Databases may be created from an existing _seed_ (a database backup or dump) stored at some source URI. +a|Databases can be created from an existing _seed_ (a database backup or dump) stored at a specific source URI. Different types of seed source are supported by different implementations of `com.neo4j.dbms.seeding.SeedProvider`. The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLConnectionSeedProvider`, and `FileSeedProvider`. From 934b5675cf5de9cce16965697741db599af9f96f Mon Sep 17 00:00:00 2001 From: Jack Waudby <33488812+jackwaudby@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:25:39 +0000 Subject: [PATCH 9/9] Update modules/ROOT/pages/configuration/configuration-settings.adoc Co-authored-by: NataliaIvakina <82437520+NataliaIvakina@users.noreply.github.com> --- modules/ROOT/pages/configuration/configuration-settings.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/configuration/configuration-settings.adoc b/modules/ROOT/pages/configuration/configuration-settings.adoc index ca88b66c7..a5505b318 100644 --- a/modules/ROOT/pages/configuration/configuration-settings.adoc +++ b/modules/ROOT/pages/configuration/configuration-settings.adoc @@ -2213,7 +2213,7 @@ m|+++UTC+++ |=== |Description a|Databases can be created from an existing _seed_ (a database backup or dump) stored at a specific source URI. -Different types of seed source are supported by different implementations of `com.neo4j.dbms.seeding.SeedProvider`. +Different implementations of `com.neo4j.dbms.seeding.SeedProvider` support various types of seed sources. The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLConnectionSeedProvider`, and `FileSeedProvider`.