Skip to content
14 changes: 10 additions & 4 deletions modules/ROOT/pages/configuration/configuration-settings.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2212,10 +2212,16 @@ 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.
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`.
a|Databases can be created from an existing _seed_ (a database backup or dump) stored at a specific source URI.
Different implementations of `com.neo4j.dbms.seeding.SeedProvider` support various types of seed sources.

The following values are available: `S3SeedProvider`, `CloudSeedProvider`, `URLConnectionSeedProvider`, and `FileSeedProvider`.

* `S3SeedProvider` supports seeds addressed with `s3`.
* `CloudSeedProvider` supports seeds addressed with `s3`, `azb`, `gs`.
* `URLConnectionSeedProvider` supports seeds addressed with `ftp`,`http`, and `https`.
* `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.
Expand Down