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
This is a bug, since the checkpoint directory must be on shared storage, but the tmp directory should not be on shared storage. Changing this might require some poking around and changing in the SparkConnection class, and might also be a good time to simplify some of the configuration loading code. It's really messy and makes this confusing.
The text was updated successfully, but these errors were encountered:
Instead of using this function to get the config and add attributes to it, we
now separately get the config with load_conf_file() and pass attributes to
Spark. I've translated some of the tests for load_conf() to tests for
load_conf_file().
Previously we always set the checkpoint directory to be the same as
spark.local.dir, which we call "tmp_dir". However, this doesn't make sense
because tmp_dir should be on a disk local to each executor, and the checkpoint
directory has to be on shared storage to work correctly.
This is a bug, since the checkpoint directory must be on shared storage, but the tmp directory should not be on shared storage. Changing this might require some poking around and changing in the
SparkConnection
class, and might also be a good time to simplify some of the configuration loading code. It's really messy and makes this confusing.The text was updated successfully, but these errors were encountered: