Skip to content

Commit aa99747

Browse files
Apply suggestions from code review
Co-authored-by: Reneta Popova <[email protected]>
1 parent a7fc682 commit aa99747

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

modules/ROOT/pages/clustering/databases.adoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,9 @@ CALL dbms.cluster.recreateDatabase("neo4j", {seedingServers: [], primaries: 3, s
373373

374374
There are two different ways to seed a cluster with data:
375375

376-
. The first option is to use a _designated seeder_, where a designated server is used to create a backed-up database on other servers in the cluster.
377-
. The other option is to seed the cluster from URI, where all servers to host a database are seeded with an identical seed from an external source specified by the URI. For more details, see xref::database-administration/standard-databases/seed-from-uri.adoc[Create a database using seed from URI].
376+
* The first option is to use a _designated seeder_, where a designated server is used to create a backed-up database on other servers in the cluster.
377+
* The other option is to seed the cluster from a URI, where all servers to host the database are seeded with an identical seed from an external source specified by that URI.
378+
For more details, see xref:database-administration/standard-databases/seed-from-uri.adoc[Create a database from a URI].
378379

379380
Keep in mind that using a designated seeder can be problematic in some situations as it is not known in advance how a database is going to be allocated to the servers in a cluster.
380381
Also, this method relies on the seed already existing on one of the servers.

modules/ROOT/pages/configuration/configuration-settings.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2143,7 +2143,7 @@ The following values are available: `CloudSeedProvider`, `FileSeedProvider`, `S3
21432143
This list specifies enabled seed providers.
21442144
If a seed source (URI scheme) is supported by multiple providers in the list, the first matching provider will be used.
21452145
If the list is set to empty, the seed from URI functionality is effectively disabled.
2146-
See xref::database-administration/standard-databases/seed-from-uri.adoc[Seed from URI] for more information.
2146+
See xref::database-administration/standard-databases/seed-from-uri.adoc[Seed from a URI] for more information.
21472147
|Valid values
21482148
a|A comma-separated list where each element is a string.
21492149
|Default value

modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Replaced by `existingDataSeedServer`.
9191
| URI to a backup or a dump from an existing database.
9292
|
9393
Defines an identical seed from an external source which will be used to seed all servers.
94-
For more information, see xref::database-administration/standard-databases/seed-from-uri.adoc[Seed from URI].
94+
For more information, see xref::database-administration/standard-databases/seed-from-uri.adoc[Seed from a URI].
9595

9696
| `seedConfig`
9797
| Comma-separated list of configuration values.

modules/ROOT/pages/database-administration/standard-databases/delete-databases.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ DROP DATABASE movies DUMP DATA
8686
----
8787

8888
In Neo4j, dumps can be stored in the directory specified by the xref:configuration/configuration-settings.adoc#config_server.directories.dumps.root[`server.directories.dumps.root`] setting (by default, the path for storing dumps is xref:configuration/file-locations.adoc#data[`<neo4j-home>/data/dumps`]).
89-
You can use dumps to create databases through the xref::database-administration/standard-databases/seed-from-uri.adoc[Seed from URI approach].
89+
You can use dumps to create databases using the xref::database-administration/standard-databases/seed-from-uri.adoc[seed from a URI] approach.
9090

9191
The option `DESTROY DATA` explicitly requests the default behavior of the command.
9292

modules/ROOT/pages/database-administration/standard-databases/seed-from-uri.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
:description: How to create a database using a seed from URI.
33

44
[[database-seed-uri]]
5-
= Create a database from URI
5+
= Create a database from a URI
66

7-
This method seeds all databases with an identical seed from an external source, specified by the URI.
7+
This method seeds all databases with an identical seed from an external source, specified by a URI.
88

9-
The URI of the seed is specified when the `CREATE DATABASE` command is issued:
9+
You specify the seed URI as an argument of the `CREATE DATABASE` command:
1010

1111
[source, cypher, role="noplay"]
1212
----

0 commit comments

Comments
 (0)