Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create or replace with seed from uri #2011

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions modules/ROOT/pages/clustering/databases.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,12 @@ neo4j@neo4j> SHOW DATABASES;

To determine the cause of the problem, it is recommended to look at the `debug.log`.

[NOTE]
====
Seed from URI can also be used in combination with xref:database-administration/standard-databases/create-databases.adoc[`CREATE DATABASE OR REPLACE`].
====


[[file-seed-provider]]
==== FileSeedProvider

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ If the store is seeded with `seedURI`, `existingDataSeedInstance` or `existingDa

[NOTE]
====
The `existingData`, `existingDataSeedInstance`, `existingDataSeedServer`, `seedURI`, `seedConfig`, and `seedCredentials` options cannot be combined with the `OR REPLACE` part of this command.
The `existingDataSeedInstance` and `existingDataSeedServer` options cannot be combined with the `OR REPLACE` part of this command.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're removing a few options here. Does this mean that starting from 2025.01, existingData, seedURI, seedConfig, and seedCredentials options can be combined with the OR REPLACE part?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes exactly.
This change is not dependent on the cypher version.

More details about seeding options can be found in xref::clustering/databases.adoc#cluster-seed[Seed a cluster].
====

Expand Down
Loading