I want to convert data from Cassandra to Neo4j.
I read the following page (https://neo4j.com/docs/getting-started/data-import/relational-to-graph-import/), but it seems that the ETL tool can only be used with the Enterprise Edition, and other methods seem to require significant implementation effort.
If there is a free and easy way to convert the data and its procedure, please let me know.
I would appreciate any documentation, even if it is unofficial.
OS: Red Hat Enterprise Linux 8.8
Cassandra: version 4.1.3
Neo4j Desktop automatically includes Enterprise Edition. Are you using Docker? The ETL Tool should be able to be used with Community Edition, and it does work with Cassandra via a JDBC driver: Neo4j ETL - Neo4j ETL Docs. Are you seeing an error when you use Community Edition and pull from Cassandra?
As alternatives, there aren't very elegant solutions to pull data from Cassandra...but there’s the CQL COPY
command (can get slow on big data sets) and the sstabledump
utility (more labor intensive).