Error Message "No space left" Displayed When a TensorFlow Multi-node Job Downloads Data to /cache
Symptom
During training job creation, error message "No space left" is displayed when a TensorFlow multi-node job downloads data to /cache.
Possible Cause
In a TensorFlow multi-node job, the parameter server (ps) and worker roles are started. The ps and worker roles are scheduled to the same machine. Training data is useless for ps. Therefore, the ps-related logic in code does not need to download the training data. If ps also downloads data to /cache, the actually downloaded data will be doubled. For example, if 2.5 TB data has been downloaded, the program displays a message indicating that space is insufficient because /cache has only 4 TB available space.
Solution
When a TensorFlow multi-node job is used to download data, the correct download logic is as follows:
import argparse parser = argparse.ArgumentParser() parser.add_argument("--job_name", type=str, default="") args = parser.parse_known_args() if args[0].job_name != "ps": copy..............................
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot