casagrande-stefano commented on pull request #25076:
URL: https://github.com/apache/spark/pull/25076#issuecomment-634071190
The correct way is modify spark-submit2.cmd.
I changed the row:
set LAUNCHER_OUTPUT=%temp%\spark-class-launcher-output-%RANDOM%.txt
with:
rem set LAUNCHER_OUTPUT=%temp%\spark-class-launcher-output-%RANDOM%.txt
SET RND=
for /f "delims=" %%F in ('powershell Get-Random') do (SET "RND=%%F")
set LAUNCHER_OUTPUT=%temp%\spark-class-launcher-output-%RND%.txt
and the system work fine.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]