We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f6851 commit eb26917Copy full SHA for eb26917
src/main/scala/com/datastax/cdm/job/BaseJob.scala
@@ -77,7 +77,7 @@ abstract class BaseJob[T: ClassTag] extends App {
77
this.parts = getParts(numSplits)
78
this.slices = sContext.parallelize(parts.asScala.toSeq, parts.size);
79
abstractLogger.info("PARAM Calculated -- Total Partitions: " + parts.size())
80
- abstractLogger.info("Spark parallelize created : " + slices.count() + " slices!");
+ abstractLogger.info("Spark parallelize created : " + slices.getNumPartitions + " slices!");
81
82
}
83
0 commit comments