Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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]
|===


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <<cloud-seed-provider, `CloudSeedProvider`>>, introduced in Neo4j 5.26), or a dump from an existing database.
The seed can either be a full backup, a differential backup (see <<cloud-seed-provider, `CloudSeedProvider`>>, 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]
Expand Down