例如,我有一个文件夹:
/
- test.py
- test.yml
并将作业提交给 spark 集群:
gcloud beta dataproc jobs submit pyspark --files=test.yml "test.py"
在中test.py
,我想访问我上传的静态文件。
with open('test.yml') as test_file:
logging.info(test_file.read())
但出现以下异常:
IOError: [Errno 2] No such file or directory: 'test.yml'
如何访问我上传的文件?