Rafnel commented on PR #43706: URL: https://github.com/apache/spark/pull/43706#issuecomment-1997936967
Hello all, I'm going to do one final edit on this PR. We found that `set LAUNCHER_OUTPUT=%temp%\spark-class-launcher-output-%RANDOM%%TIME::=0%.txt` still resulted in the occasional race condition error, as we launch tens of Spark instances at the same time each day on Windows. `%RANDOM%%TIME::=0%` still has a small chance of overlapping. Our team found that using GUIDs at the end of the temp file name completely fixed this bug and removed the need for %RANDOM% and %TIME%, entirely. -- 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]
