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
This will seed the database with transactions committed before the provided timestamp.
150
213
151
-
[role=label--new-2025.01]
214
+
152
215
Seed up to a specific transaction ID::
153
216
154
217
To seed up to a specific transaction ID, provide the differential backup containing the data up to that transaction ID.
155
218
+
156
-
[source,cypher]
219
+
[.tabbed-example]
220
+
=====
221
+
[role=include-with-Cypher-5]
222
+
======
223
+
[source,cypher5]
224
+
----
225
+
CREATE DATABASE foo OPTIONS {
226
+
existingData: 'use',
227
+
seedURI: 's3://myBucket/myBackup.backup',
228
+
seedRestoreUntil: 123
229
+
}
230
+
----
231
+
======
232
+
[role=include-with-Cypher-25]
233
+
======
234
+
[source,cypher25]
157
235
----
158
236
CREATE DATABASE foo OPTIONS {
159
237
seedURI: 's3://myBucket/myBackup.backup',
160
238
seedRestoreUntil: 123
161
239
}
162
240
----
241
+
======
242
+
=====
163
243
+
164
244
This will seed the database with transactions up to (but not including) transaction 123.
165
245
166
246
167
-
[role=label--deprecated]
247
+
[role=label--deprecated label--cypher-5]
168
248
[[s3-seed-provider]]
169
249
=== S3SeedProvider
170
250
@@ -185,9 +265,10 @@ The `S3SeedProvider` requires additional configuration.
185
265
This is specified with the `seedConfig` option, which expects a comma-separated list of configurations.
186
266
Each configuration entry is specified in the format `key=value`, as such:
187
267
188
-
[source, cypher]
268
+
[source, cypher5]
189
269
----
190
270
CREATE DATABASE foo OPTIONS {
271
+
existingData: 'use',
191
272
seedURI: 's3://myBucket/myBackup.backup',
192
273
seedConfig: 'region=eu-west-1'
193
274
}
@@ -200,9 +281,10 @@ For this to work, Neo4j on each server in the cluster must be configured with id
200
281
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].
201
282
Without this configuration, the `seedCredentials` option fails.
0 commit comments