Skip to content

Latest commit

 

History

History
125 lines (89 loc) · 6.73 KB

FAQ.md

File metadata and controls

125 lines (89 loc) · 6.73 KB

Documentation

Frequently Asked Questions

Why is my job running on a single executor? Why am I not seeing any parallelism?

The first thing to check when you see that a Spark job is not being parallelized is to determine how many tasks have been generated. To check this look at the UI for your spark job and see how many tasks are being run. In the current Shell a small progress bar is shown when running stages, the numbers represent (Completed Tasks + Running Tasks) / Total Tasks

[Stage 2:=============================================>  (121 + 1) / 200]0

If you see that only a single task has been created this means that the Cassandra Token range has not been split into a enough tasks to be well parallelized on your cluster. The number of Spark partitions(tasks) created is directly controlled by the setting spark.cassandra.input.split.size_in_mb. This number reflects the approximate amount of Cassandra Data in any given Spark partition. To increase the number of Spark Partitions decrease this number from the default (64mb) to one that will sufficiently break up your C* token range. This can also be adjusted on a per cassandraTable basis with the function withReadConf and specifying a new ReadConf object.

If there is more than one task but only a single machine is working, make sure that the job itself has been allocated multiple executor slots to work with. This is set at the time of SparkContext creation with spark.cores.max in the SparkConf and cannot be changed during the job.

One last thing to check is whether there is a where clause with a partition-key predicate. Currently the Spark Cassandra Connector creates Spark Tasks which contain entire C* partitions. This method ensures a single C* partition request will always create a single Spark task. where clauses with an in will also generate a single Spark Partition.

Why can't the spark job find Spark Cassandra Connector Classes? (ClassNotFound Exceptions for SCC Classes)

The most common cause for this is that the executor classpath does not contain the Spark Cassandra Connector jars. The simplest way to add these to the class path is to use SparkSubmit with the --jars option pointing to your Spark Cassandra Connector assembly jar. If this is impossible, the second best option is to manually distribute the jar to all of your executors and add the jar's location to spark.executor.extraClassPath in the SparkConf or spark-defaults.conf.

Where should I set configuration options for the connector?

The suggested location is to use the spark-defaults.conf file in your spark/conf directory but this file is ONLY used by spark-submit. Any applications not running through spark submit will ignore this file. You can also specify Spark-Submit conf options with --conf option=value on the command line.

For applications not running through spark submit, set the options in the SparkConf object used to create your SparkContext. Usually this will take the form of a series of statements that look like

val conf = SparkConf()
  .set("Option","Value")
  ...
  
val sc = SparkContext(conf)

Why are my write tasks timing out/ failing?

The most common cause of this is that Spark is able to issue write requests much more quickly than Cassandra can handle them. This can lead to GC issues and build up of hints. If this is the case with your application, try lowering the number of concurrent writes and the current batch size using the following options.

spark.cassandra.output.batch.size.rows spark.cassandra.output.concurrent.writes

or in versions of the Spark Cassandra Connector greater than or equal to 1.2.0 set

spark.cassandra.output.throughput_mb_per_sec

which will allow you to control the amount of data written to C* per Spark core per second.

Why are my executors throwing OutOfMemoryExceptions while Reading from Cassandra?

This usually means that the size of the partitions you are attempting to create are larger than the executor's heap can handle. Remember that all of the executors run in the same JVM so the size of the data is multiplied by the number of executor slots.

To fix this either increase the heap size of the executors spark.executor.memory or shrink the size of the partitions by decreasing spark.cassandra.input.split.size_in_mb

Why can't my spark job find My Application Classes / Anonymous Functions?

This occurs when your application code hasn't been placed on the classpath of the Spark Executor. When using Spark Submit make sure that the jar contains all of the classes and dependencies for running your code. To build a fat jar look into using sbt assembly, or look for instructions for your build tool of choice.

If you are not using the recommended approach with Spark Submit, make sure that your dependencies have been set in the SparkConf using setJars or by distributing the jars yourself and modifying the executor classpath.

Why don't my case classes work?

Usually this is because they have been defined within another object/class. Try moving the definition outside of the scope of other classes.

Why can't my spark job connect to Cassandra?

Check that your Cassandra instance is on and responds to cqlsh. Make sure that the rpc address also accepts incoming connections on the interface you are setting as rpc_address in the cassandra.yaml file. Make sure that you are setting the spark.cassandra.connection.host property to the interface which the rpc_address is set to.

When troubleshooting Cassandra connections it is sometimes useful to set the rpc_address in the C* yaml file to 0.0.0.0 so any incoming connection will work.

What does input.split.size_in_mb use to determine size?

Input.split.size_in_mb uses a internal system table in C* ( >= 2.1.5) to determine the size of the data in C*. The table is called system.size_estimates is not meant to be absolutely accurate so there will be some inaccuracy with smaller tables and split sizes.

Can I contribute to the Spark Cassandra Connector?

YES! Feel free to start a Jira and detail the changes you would like to make or the feature you would like to add. We would be happy to discuss it with you and see your work. Feel free to create a Jira before you have started any work if you would like feedback on an idea. When you have a branch that you are satisfied with and passes all the tests (/dev/run_tests.sh) make a GitHub PR against your target Connector Version and set your Jira to Reviewing.

What should I do if I find a bug?

Feel free to post a repo on the Mailing List or if you are feeling ambitious file a Jira with steps for reproduction and we'll get to it as soon as possible. Please remember to include a full stack trace (if any) and the versions of Spark, The Connector, and Cassandra that you are using.