[GitHub] [spark] mridulm commented on pull request #30131: [SPARK-33220][CORE]Use `scheduleWithFixedDelay` to avoid repeated unnecessary scheduling for a short time

2020-10-26 Thread GitBox
mridulm commented on pull request #30131: URL: https://github.com/apache/spark/pull/30131#issuecomment-716804124 +CC @otterc This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [spark] mridulm commented on pull request #30131: [SPARK-33220][CORE]Use `scheduleWithFixedDelay` to avoid repeated unnecessary scheduling for a short time

2020-10-25 Thread GitBox
mridulm commented on pull request #30131: URL: https://github.com/apache/spark/pull/30131#issuecomment-716312657 > > If we want to take a look at the jdk implementation in case the documentation is unclear, please note that both `scheduleAtFixedRate` and `scheduleWithFixedDelay` rely on

[GitHub] [spark] mridulm commented on pull request #30131: [SPARK-33220][CORE]Use `scheduleWithFixedDelay` to avoid repeated unnecessary scheduling for a short time

2020-10-24 Thread GitBox
mridulm commented on pull request #30131: URL: https://github.com/apache/spark/pull/30131#issuecomment-716077517 If we want to take a look at the jdk implementation in case the documentation is unclear, please note that both `scheduleAtFixedRate` and `scheduleWithFixedDelay` rely on

[GitHub] [spark] mridulm commented on pull request #30131: [SPARK-33220][CORE]Use `scheduleWithFixedDelay` to avoid repeated unnecessary scheduling for a short time

2020-10-24 Thread GitBox
mridulm commented on pull request #30131: URL: https://github.com/apache/spark/pull/30131#issuecomment-715882017 Are you seeing issues with use of `scheduleAtFixedRate` which are fixed by `scheduleWithFixedDelay` ? There are nuances in the difference, which can have subtle impact. In