ShreyeshArangath commented on PR #40637:
URL: https://github.com/apache/spark/pull/40637#issuecomment-1498073102
> how is this different from:
>
> ```
>
> private[spark] val REPORT_INTERVAL =
ConfigBuilder("spark.yarn.report.interval")
> .doc("Interval between reports of the current app status.")
> .version("0.9.0")
> .timeConf(TimeUnit.MILLISECONDS)
> .createWithDefaultString("1s")
> ```
>
> ?
@tgravescs this property dictates the how often we poll yarn for an
application report. We still want to check for the application state every
second, if we change this property then we might not know of a change in state
until the `x` seconds have elapsed.
This is why, I decided to create a new logging specific property so that the
current behavior of polling application report every second is not affected.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]