Hi guys,
during a Presto import, this line always gets triggered:
|
data_dir.mkdir(exist_ok=True, parents=True) |
On some systems like our cluster, where a Python wheel containing Presto is shipped and deployed, this does not work. I fixed it for now locally by catching the error without failing and the rest of the code (computing Presto encodings) worked without issue on the cluster. So it's something to look at.
Hi guys,
during a Presto import, this line always gets triggered:
presto/presto/utils.py
Line 22 in 182d590
On some systems like our cluster, where a Python wheel containing Presto is shipped and deployed, this does not work. I fixed it for now locally by catching the error without failing and the rest of the code (computing Presto encodings) worked without issue on the cluster. So it's something to look at.