Why does starting a streaming query lead to “ExitCodeException exitCode=-1073741515”?

后端 未结 4 754
花落未央
花落未央 2020-12-09 22:54

Been trying to get used to the new structured streaming but it keeps giving me below error as soon as I start a .writeStream query.

Any idea what could

4条回答
  •  悲&欢浪女
    2020-12-09 23:11

    Actually, I had the same problem while running Spark unit tests on my local machine. It was caused by the failing WinUtils.exe in %HADOOP_HOME% folder:

    Input: %HADOOP_HOME%\bin\winutils.exe chmod 777 %SOME_TEMP_DIRECTORY%

    Output:

    winutils.exe - System Error
    The code execution cannot proceed because MSVCR100.dll was not found.
    Reinstalling the program may fix this problem.

    After some surfing the Internet I found out an issue on winutils project of Steve Loughran: Windows 10: winutils.exe doesn't work.
    In particular it says that installing the VC++ redistributable packages should fix the problem (and that worked in my case): How do I fix this error "msvcp100.dll is missing"

提交回复
热议问题