Delete data from Cassandra table, using data from the stream as a list of primary keys.
Delete data from Cassandra table, using data from the stream as a list of primary keys. Uses the specified column names.
the name of the Keyspace to use
the name of the Table to use
The list of column names to delete, empty ColumnSelector means full row.
Primary key columns selector, Optional. All RDD primary columns columns will be checked by default
additional configuration object allowing to set consistency level, batch size, etc.
Transforms RDDs with com.datastax.spark.connector.RDDFunctions.joinWithCassandraTable for each produced RDD
Transforms RDDs with com.datastax.spark.connector.RDDFunctions.repartitionByCassandraReplica for each produced RDD.
Performs com.datastax.spark.connector.writer.WritableToCassandra for each produced RDD.
Performs com.datastax.spark.connector.writer.WritableToCassandra for each produced RDD. Uses specific column names with an additional batch size.
the name of the Keyspace to use
the name of the Table to use
The list of column names to save data to. Uses only the unique column names, and you must select at least all primary key columns. All other fields are discarded. Non-selected property/column names are left unchanged.
additional configuration object allowing to set consistency level, batch size, etc.