I am running Neo4j Desktop version 1.6.1.122, and the DBMS version is 5.24. I have created an initial graph and exported the .dump file using Neo4j Desktop.
When I try to run neo4j-admin database load ... in a Neo4j container(image: neo4j:5.24), I get the following error:
Failed to load database 'neo4j': Block format detected for database neo4j but unavailable in this edition.
Does this mean I can't import a dump file using community edition? Is there a way to get around this?
Per Store formats - Operations Manualblock format is a Enterprise only format. So it is expected an error upon loading into community which does not support block
From the dekstop you can create a dump file by clicking the three dots next to your database and choose dump. Then you can import the dump file by opening a terminal and cd to the bin directory of your database which you can locate from opening the import-DMBS from your neo4j desktop, then run the command: ./neo4j-admin database load --from-path="path to your dump file" --overwrite-destination=true neo4j
@chrismith
Yes, But this doesnt change a loaded databases format. i.e. if you are loading a dump in format X into Aura eventhough a newly created database would be in Block, since this is a load then it retains the same format