Unable to launch SparkR in RStudio

前端 未结 7 989
一向
一向 2021-02-19 07:52

After long and difficult installation process of SparkR i getting into new problems of launching SparkR.

My Settings

R 3.2.0    
RStudio 0.98.1103    
Rt         


        
相关标签:
7条回答
  • 2021-02-19 08:43

    I also had this error, from a different cause. Under the hood, Spark calls

    system2(sparkSubmitBin, combinedArgs, wait = F)
    

    There are many ways this can go wrong. In my case the underlying error (invisible until calling system2 directly as an experiment) was ""UNC path are not supported." I had to change my working directory in R studio to a directory which was not part of a network share, and then it started working.

    0 讨论(0)
提交回复
热议问题