You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SPARK-52667] Improve SparkAppReconciler to show app names during cleaning up
### What changes were proposed in this pull request?
This PR aims to improve `SparkAppReconciler` to show app names during cleaning up.
### Why are the changes needed?
**BEFORE**
The log message doesn't provide any specific information.
```
25/07/03 05:54:22 INFO SparkAppReconciler: Cleaning up resources for SparkApp.
25/07/03 05:54:22 INFO SparkAppReconciler: Cleanup completed
25/07/03 05:54:22 INFO SparkAppReconciler: Cleaning up resources for SparkApp.
25/07/03 05:54:22 INFO SparkAppReconciler: Cleanup completed
```
**AFTER**
It provides a concise and specific information.
```
25/07/03 06:06:57 INFO SparkAppReconciler: Cleaning up resources for SparkApp:pi
25/07/03 06:07:02 INFO SparkAppReconciler: Cleaning up resources for SparkApp:pi-java21
```
### Does this PR introduce _any_ user-facing change?
No behavior change. This is only changing log message information.
### How was this patch tested?
Manual build, install, test, and check logs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closesapache#275 from dongjoon-hyun/SPARK-52667.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
0 commit comments