从 Jupyter notebooks (Google Cloud Datalab) 内部创建的文件存放在哪里?

Where do files created from inside Jupyter notebooks (Google Cloud Datalab) reside?

运行 这个代码单元格

%%bash
touch /var/tmp/hello_world
ls -l /var/tmp/hello_world

在 Google Cloud Datalab(即 Jupyter)笔记本中让我想知道:文件实际位于何处。

那么文件实际存放在哪里?

这是 Datalab 虚拟机上 Datalab 容器 运行 中的一个位置。希望对您有所帮助。

任何你想保留的东西都应该写入 /content,它映射到主机 VM 上安装的 PD(数据磁盘,与启动磁盘分开)。例如笔记本。

对于实际数据,PD 可能不是一个很好的位置,尤其是。如果它很大。为此,您应该看看 GCS。