You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now TaskManager will check spark.master and local[*] is not supported yet.
SPARK_MASTER = prop.getProperty("spark.master", "local").toLowerCase();
if (!Arrays.asList("local", "yarn", "yarn-cluster", "yarn-client").contains(SPARK_MASTER) ) {
throw new ConfigException("spark.master", "should be one of local, yarn, yarn-cluster or yarn-client");
}
The text was updated successfully, but these errors were encountered:
Now TaskManager will check
spark.master
andlocal[*]
is not supported yet.The text was updated successfully, but these errors were encountered: