I am using spark-cassandra-connector_2.11-2.0.0.jar
to connect to Cassandra(version 2.1.9). Cassandra's partitioner is `ByteOrderedParitioner'.
However, when I submit spark driver programs, it shows:
Exception in thread "main" java.lang.IllegalArgumentException: Unsupported partitioner: org.apache.cassandra.dht.ByteOrderedPartitioner
.
It seems that only "Murmur3Partitioner" and "RandomPartitioner" are supported in the source code.
But Hadoop supports ByteOrderedPartitioner. I wonder how to solve it when I force to use ByteOrderedPartitioner
.
Thanks for your help.