I want to run a movie recommendation app based on ALS algorithm on Apache Spark using Python I’m using Spark2.2.0-Hadoop2.7 I have one master and 2 workers When I want to run the app using this command
Spark-submit —master Spark://192.168.190.132:7077 —total-executor-cores 8 —executor-memory 2g engine.py
I get errors it says the ratings.csv file doesn’t exist( I checked the addres everything is correct)
error picture below
https://i.stack.imgur.com/dgK2Q.jpg
But when I use this command
Spark-submit app.pyit works but fails after a while
I’m not using HDFS I load dataset locally Do I need to copy datasets to all worker nodes?