jolly-florist-66728
11/04/2024, 9:38 AMpyflyte run --remote pyspark_pi.py my_spark
(from the Flytesnacks examples).
While Spark seems to execute, I keep getting the following error:
python
Traceback (most recent call last):
...
ValueError: ZIP does not support timestamps before 1980
I’m a bit stuck, as I can't seem to find what's causing the issue. Has anyone encountered this error before or have any insights into what might be happening?
Thanks so much for any help you can provide! 🙏
# Answer
The error is due to the pyflyte register
command stripping datetime metadata during fast registration, defaulting to 1970, which zipfile
doesn't support. Use pyflyte register --no-fast
to avoid this issue. Would you like more detail?
Sources:
- GitHub Issue #4711
Slack Link
https://.slack.com/archives/CP2HDHKE1/p1730713110.358969 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.