Debugging disk space issues when using local mode
Sometimes, when running the estimator.fit()
function in an experiment using local mode, we may encounter issues similar to what is shown in Figure 3.62.
Note that this may or may not be caused by disk space issues but there is a big chance that the root cause is that there is no space left. The error message may include the following error message:
CalledProcessError: Command '['docker', 'pull', '763104351884.dkr.ecr.us-east-1.amazon.com/<image-uri>:<tag>'] ' returned non-zero exit status 1.
In this recipe, we will take a look at how to debug this issue.
Tip
If everything went smoothly when running the recipes in this chapter, feel free to check the There's more... section for instructions on how to replicate this issue. Once this issue has been replicated, you may...