Can anybody tell me what changes I need to made to the code below running on 2.0.8 spark connector vs 3.0.0 which uses java-driver-core 4.0.0
I am getting an error on code that was calling com.datastax.driver.core.Cluster
There is seem to be gone. This code does not work:
Cluster cluster = Cluster.builder().addContactPoints(hosts.split(",")) .withSSL() .withCredentials(user, password) .build();