i need some help in importing the data from impala to neo4j .
i have credentials of impala and i want my data in neo4j . could you all please help me and tell me the steps how i can do it.
i have millions of records in my tables and i know there is a apoc procedure apoc.load.jdbc
but i dont know how to use it. i had a look into APOC document as well but no clear understanding for me
please help
Firstly you need to put the JDBC driver of impala into the plugin directory of Neo4j, and restart it.
Then, register the driver in neo4j with this query : CALL apoc.load.driver("com.cloudera.impala.jdbc41.Driver");
And now you can use the apoc JDNC procedure like that : CALL apoc.load.jdbc("jdbc:impala://MY_SERVER_IP:PORT/MY_DB","SELECT * FROM table" YIELD row ...