@@ -304,7 +304,7 @@ See <<cluster-seed-uri, Seed from URI>> for more details.
304
304
305
305
[source, shell]
306
306
----
307
- CALL dbms.cluster.recreateDatabase("neo4j", {seedURI: "s3:/myBucket/myBackup.backup"});
307
+ CALL dbms.cluster.recreateDatabase("neo4j", {seedURI: "s3:// myBucket/myBackup.backup"});
308
308
----
309
309
310
310
[[seed-servers]]
@@ -351,7 +351,7 @@ This means the store is replaced by the most up-to-date seeder if available; oth
351
351
+
352
352
[source, shell]
353
353
----
354
- CALL dbms.cluster.recreateDatabase("neo4j", {seedingServers: [], seedURI: "s3:/myBucket/myBackup.backup"});
354
+ CALL dbms.cluster.recreateDatabase("neo4j", {seedingServers: [], seedURI: "s3:// myBucket/myBackup.backup"});
355
355
----
356
356
357
357
[[alter-topology-recreate]]
@@ -537,7 +537,7 @@ include::partial$/aws-s3-credentials.adoc[]
537
537
+
538
538
[source,shell, role="nocopy"]
539
539
----
540
- CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:/myBucket/myBackup.backup' }
540
+ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:// myBucket/myBackup.backup' }
541
541
----
542
542
543
543
======
@@ -550,7 +550,7 @@ include::partial$/gcs-credentials.adoc[]
550
550
+
551
551
[source,shell]
552
552
----
553
- CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 'gs:/myBucket/myBackup.backup' }
553
+ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 'gs:// myBucket/myBackup.backup' }
554
554
----
555
555
======
556
556
[role=include-with-Azure-cloud-storage]
@@ -576,7 +576,7 @@ To seed up to a specific date, you need to pass the differential backup, which c
576
576
+
577
577
[source,shell]
578
578
----
579
- CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:/myBucket/myBackup.backup', seedRestoreUntil: datetime("2019-06-01T18:40:32.142+0100") }
579
+ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:// myBucket/myBackup.backup', seedRestoreUntil: datetime("2019-06-01T18:40:32.142+0100") }
580
580
----
581
581
+
582
582
This will seed the database with transactions committed before the provided timestamp.
@@ -588,7 +588,7 @@ To seed up to a specific transaction ID, you need to pass the differential backu
588
588
+
589
589
[source,shell]
590
590
----
591
- CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:/myBucket/myBackup.backup', seedRestoreUntil: 123 }
591
+ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:// myBucket/myBackup.backup', seedRestoreUntil: 123 }
592
592
----
593
593
+
594
594
This will seed the database with transactions up to, but not including transaction 123.
@@ -617,7 +617,7 @@ Each configuration value is specified as a name followed by `=` and the value, a
617
617
618
618
[source, cypher, role="noplay"]
619
619
----
620
- CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:/myBucket/myBackup.backup', seedConfig: 'region=eu-west-1' }
620
+ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:// myBucket/myBackup.backup', seedConfig: 'region=eu-west-1' }
621
621
----
622
622
623
623
`S3SeedProvider` also requires passing in credentials.
@@ -629,7 +629,7 @@ If this configuration is not performed, the `seedCredentials` option fails.
629
629
630
630
[source, cypher, role="noplay"]
631
631
----
632
- CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:/myBucket/myBackup.backup', seedConfig: 'region=eu-west-1', seedCredentials: [accessKey];[secretKey] }
632
+ CREATE DATABASE foo OPTIONS { existingData: 'use', seedURI: 's3:// myBucket/myBackup.backup', seedConfig: 'region=eu-west-1', seedCredentials: [accessKey];[secretKey] }
633
633
----
634
634
Where `accessKey` and `secretKey` are provided by AWS.
635
635
@@ -643,11 +643,11 @@ Where `accessKey` and `secretKey` are provided by AWS.
643
643
644
644
| `file:`
645
645
| `FileSeedProvider`
646
- | `file:/tmp/backup1.backup`
646
+ | `file:// tmp/backup1.backup`
647
647
648
648
| `ftp:`
649
649
| `URLConnectionSeedProvider`
650
- | `ftp:: //myftp.com/backups/backup1.backup`
650
+ | `ftp://myftp.com/backups/backup1.backup`
651
651
652
652
| `http:`
653
653
| `URLConnectionSeedProvider`
0 commit comments