Hi,
When I am connecting to DSE 6.8.0 using java then getting the following exception:
Graph protocol 'GRAPHSON_2_0' incompatible. Use 'GraphSON 3.0 / Gryo 3.0 / GraphBinary' with Core Graph
Here is the code:
DseCluster dseCluster = DseCluster.builder() .withCredentials("xxxx", "xxxx") .addContactPoint("xx.xx.xx.xx") .withGraphOptions(new GraphOptions() .setGraphName("graph").setGraphSubProtocol(GraphProtocol.GRAPHSON_2_0)) .build();
I have the latest dependency of DSE java graph driver (1.9.0) but it is not showing the option of GraphSON 3.0.
Any help is appreciated.