-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-48623][CORE] Structured Logging Migrations #46980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
8f747e3
b570a01
280b220
6a570d3
b65d9a6
9f06627
fd4a60d
9c368dd
85049f3
e94f280
945d0be
3c646f0
6e9d443
d1c2676
f2a79b8
ebe7bec
dd510b3
12e0680
b5e8709
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,7 +28,7 @@ import com.google.common.cache.CacheBuilder | |
|
|
||
| import org.apache.spark.{SecurityManager, SparkConf, SparkEnv, SparkException} | ||
| import org.apache.spark.errors.SparkCoreErrors | ||
| import org.apache.spark.internal.{config, Logging, MDC} | ||
| import org.apache.spark.internal.{config, Logging, LogKeys, MDC} | ||
| import org.apache.spark.internal.LogKeys._ | ||
| import org.apache.spark.io.NioBufferedFileInputStream | ||
| import org.apache.spark.network.buffer.{FileSegmentManagedBuffer, ManagedBuffer} | ||
|
|
@@ -436,8 +436,8 @@ private[spark] class IndexShuffleBlockResolver( | |
| if (checksumTmp.exists()) { | ||
| try { | ||
| if (!checksumTmp.delete()) { | ||
| logError(s"Failed to delete temporary checksum file " + | ||
| s"at ${checksumTmp.getAbsolutePath}") | ||
| logError(log"Failed to delete temporary checksum file at " + | ||
| log"${MDC(LogKeys.FILE_ABSOLUTE_PATH, checksumTmp.getAbsolutePath)}") | ||
|
||
| } | ||
| } catch { | ||
| case e: Exception => | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.