The dump comes from exporting a snapshot from AuraDB, as stated in Neo4j documentation. im working with Neo4j Community 4.1.11 in Ubuntu, none of the other answers i found have been helpful... Let me know what other piece of info you need to assess better the situation, thanks when running the command...
Neo4j-admin load dump.file returning: Not a valid Neo4j archive
695 views Asked by Juan Casabo At
1
There are 1 answers
Related Questions in NEO4J
- Neo4j CALL subquery with UNWIND returns 0 records
- LookupError: No plugin named 'GremlinPlugin'
- Mount Azure file share on Azure container app
- Unable to install Neo4J on Mac M3
- What is the reason I'm seeing a Lookup index which is null when I run, graph.run(SHOW INDEXES;)?
- jQAssistant scan missing value for retrofit2.http.GET
- How to create model instances from html form and save to AuraDb?
- neo4j, how to query chain using two different nodes
- Connecting Azure container app Spring boot backend to Azure container app Neo4j database
- Relationship refuses to generate in Neo4j
- Is there a way to bulk import csv data into cosmos db gremlin API Azure?
- spring data neo4j could not query a list of relationship?
- How to connect to Neo4J's AuraDB (free tier) from Django?
- Segregating data from different collections in Neo4j database community edition
- Neo4j Source Connectors Failing to build the Schema where the source query returns null for some of the fields
Related Questions in NEO4J-AURA
- How to create model instances from html form and save to AuraDb?
- Neo4j Aura (GCP) memory limit 18.7 GiB when instance has 64GB
- How can I return a node even when its related objects aren't found?
- NeoVis.js not displaying all relationships when connecting to AuraDB Neo4j instance
- What is the required data table structure for successful importation of data into Neo4j Aura using the data import tool?
- Why am I getting ClassCastException when running Liquibase?
- How to connect to AuraDB from a Gatsby-based pages
- Neomodel + Aura DB -> Exception ignored in: <function Bolt.__del__ at 0x7f1fe64679a0>
- How to make transactions running a particular query execute sequentially in Neo4j?
- Neo4j Aura demo python AttributeError: 'Session' object has no attribute 'execute_write'
- Cannot read properties of undefined (reading 'concepts')
- Neo4j Aura: Can a user be defined and set a role such as 'publisher'
- Neo4j AuraDB scalability of read queries
- Neo4j-admin load dump.file returning: Not a valid Neo4j archive
- How do I edit neo4j.conf in an AuraDB instance?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

You may need to upgrade your local version of Neo4j to something much more recent - an Aura database I just created couldn't be loaded into any version of Neo4j older than 4.4.1 (as at current date).
However, the specific version you need to use will change over time. Guidance on the Aura support site indicates as much, and recommends using the latest possible local version of Neo4j as the target for the import (potentially to the point of needing to use pre-release versions), since Aura will typically be running bleeding-edge versions of the database store format.
An alternative might be to explore exporting to CSV or JSON and importing that way, since this output won't vary depending on Neo4j version of the source or target - you can do a stream-based export from Aura using
apoc.export.csv.allorapoc.export.json.allwhich you could then load via script, though with large graphs this may not be practical.