You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -150,9 +198,10 @@ The `S3SeedProvider` requires additional configuration.
150
198
This is specified with the `seedConfig` option, which expects a comma-separated list of configurations.
151
199
Each configuration entry is specified in the format `key=value`, as such:
152
200
153
-
[source, cypher]
201
+
[source, cypher5]
154
202
----
155
203
CREATE DATABASE foo OPTIONS {
204
+
existingData: 'use',
156
205
seedURI: 's3://myBucket/myBackup.backup',
157
206
seedConfig: 'region=eu-west-1'
158
207
}
@@ -165,9 +214,10 @@ For this to work, Neo4j on each server in the cluster must be configured with id
165
214
This is identical to the configuration required by remote aliases, see xref:database-administration/aliases/remote-database-alias-configuration.adoc#remote-alias-config-DBMS_admin-A[Configuration of DBMS with remote database alias].
166
215
Without this configuration, the `seedCredentials` option fails.
167
216
168
-
[source, cypher]
217
+
[source, cypher5]
169
218
----
170
219
CREATE DATABASE foo OPTIONS {
220
+
existingData: 'use',
171
221
seedURI: 's3://myBucket/myBackup.backup',
172
222
seedConfig: 'region=eu-west-1',
173
223
seedCredentials: <accessKey>;<secretKey>
@@ -222,27 +272,67 @@ Starting from Neo4j 2025.01, when creating a database you can seed up to a speci
222
272
223
273
The `seedRestoreUntil` option is supported by the `CloudSeedProvider` and the `FileSeedProvider`.
224
274
225
-
226
275
Seed up to a specific date::
227
276
228
-
To seed up to a specific date, you need to pass the differential backup, which contains the data up to that date.
277
+
To seed up to a specific date, provide the differential backup containing the data up to that date.
0 commit comments