我想使用群集的暂存空间设置我的临时目录。我尝试了多种方法,其中一种是How to change directory for temporary files - problems with huge temporary raster files,但无济于事。
我必须读取R中的大文件(12 GB)并使用它运行一些代码。 我想以这种方式读取文件:
library(data.table)
mydata<-fread("path/file")
但是首先,我认为有必要将临时目录设置为草稿/否则该作业已被杀死。 随时建议其他方法。