Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,7 @@ private[spark] class DAGScheduler(
val ignoreStageFailure = ignoreDecommissionFetchFailure &&
isExecutorDecommissioningOrDecommissioned(taskScheduler, bmAddress)
if (ignoreStageFailure) {
logInfo("Ignoring fetch failure from $task of $failedStage attempt " +
logInfo(s"Ignoring fetch failure from $task of $failedStage attempt " +
s"${task.stageAttemptId} when count spark.stage.maxConsecutiveAttempts " +
"as executor ${bmAddress.executorId} is decommissioned and " +
s" ${config.STAGE_IGNORE_DECOMMISSION_FETCH_FAILURE.key}=true")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ trait ExpressionEvalHelper extends ScalaCheckDrivenPropertyChecks with PlanTestB

val dataType = expression.dataType
if (!checkResult(unsafeRow.get(0, dataType), expected, dataType, expression.nullable)) {
fail("Incorrect evaluation in unsafe mode (fallback mode = $fallbackMode): " +
fail(s"Incorrect evaluation in unsafe mode (fallback mode = $fallbackMode): " +
s"$expression, actual: $unsafeRow, expected: $expected, " +
s"dataType: $dataType, nullable: ${expression.nullable}")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ object V2ScanPartitioningAndOrdering extends Rule[LogicalPlan] with SQLConfHelpe
}
case _: UnknownPartitioning => None
case p =>
logWarning("Spark ignores the partitioning ${p.getClass.getSimpleName}." +
logWarning(s"Spark ignores the partitioning ${p.getClass.getSimpleName}." +
" Please use KeyGroupedPartitioning for better performance")
None
}
Expand Down