Exception to be thrown when unknown properties are found in the SparkConf
Force creation of all Parameters.
Force creation of all Parameters. Any New Parameter Holding Objects should be added here *
Checks the SparkConf Object for any unknown spark.cassandra.* properties and throws an exception with suggestions if an unknown property is found.
Checks the SparkConf Object for any unknown spark.cassandra.* properties and throws an exception with suggestions if an unknown property is found.
SparkConf object to check
For a given unknown property determine if we have any guesses as to what the property should be.
For a given unknown property determine if we have any guesses as to what the property should be. Suggestions are found by breaking the unknown property into fragments. spark.cassandra.foo.bar => [foo,bar] Any known property which has some fragments which fuzzy match all of the fragments of the unknown property are considered a suggestion.
Fuzziness is determined by MatchThreshold
Set of valid static properties hardcoded in the connector.
Set of valid static properties hardcoded in the connector. Custom CassandraConnectionFactory and AuthConf properties are not listed here.
Helper class to throw exceptions if there are environment variables in the spark.cassandra namespace which don't map to Spark Cassandra Connector known properties.