hey guys, I'm facing a problem seeding a cluster from a URI
I execute this:
CREATE DATABASE foo OPTIONS {existingData: 'use', seedURI:'https://storage.cloud.google.com/neo4j_backup/neo4j-2023-11-13T13-45-35.backup'};
but then I get an error, and when I check the debug.log, I get this:
2023-11-23 13:24:30.325+0000 INFO [c.n.d.d.DatabaseManager] Starting 'DatabaseId{090013f9[foo]}'.
2023-11-23 13:24:30.331+0000 INFO [c.n.c.s.f.SeedLifecycle] [foo/090013f9] Initiating seed download from https://storage.cloud.google.com/neo4j_backup/neo4j-2023-11-13T13-45-35.backup using URLConnectionSeedProvider into /data/seed2767173296547425380
2023-11-23 13:24:31.659+0000 ERROR [c.n.c.s.f.SeedLifecycle] [foo/090013f9] Error while performing seeding.
java.lang.Exception: The seed file (/data/seed3522687520179309465/seedDownload_58D9B12D.backup) starts with an unrecognised prefix (<)
...
I also downloaded the file on each server, and ran:
CREATE DATABASE foo OPTIONS {existingData: 'use', seedURI:'file:/var/lib/neo4j/import/neo4j-2023-11-13T13-45-35.backup'};
getting the same error message:
"The seed file (/data/seed9649895265360037261/seedDownload_AB425F5F.backup) starts with an unrecognized prefix (<)"
I deployed my cluster on k8s using the helm chart, and I also have the backup service up and running, but I can't restore my backups for some reason.