I was trying to use the transaction on DSE 6.8. When I tried to open the transaction it gave me the following error.
Code:
DseCluster dseCluster = DseCluster.builder().addContactPoint("127.0.0.1").build(); DseSession dseSession = dseCluster.connect(); GraphTraversalSource g = DseGraph.traversal(dseSession, new GraphOptions().setGraphName("test_graph")); g.tx().open();
The error:
Exception in thread "main" java.lang.UnsupportedOperationException: Graph does not support transactions
What is the possible fix for this?