I am working on neo4j-spark
connector for implementing PageRank algorithms. When I run the following command:
val g = Neo4jGraph.loadGraph(sc, "Customer", Seq("transactionid"), "Products")
I am getting the below mentioned error:
ERROR session: Neo4j Session object leaked, please ensure that your application calls the
close
method on Sessions before disposing of the objects. org.neo4j.driver.v1.exceptions.ClientException: Unable to process request: ClosedChannelException buffer:
along with multiple error lines.
When I am trying the same line with other variables which has less nodes and relationships, it works fines. How can I get it resolved?