New RunLLM response generated: >>>*# Question* Hi...
# runllm-flyte-trial
j
New RunLLM response generated: >>>*# Question* Hi everyone! 👋 I'm new here, and this is my first message in the Flyte community. 😊 I'm working on deploying Flyte on AWS to test its integration with the Spark operator. I followed the documentation for the Spark plugin and tried running the provided example with:
Copy code
pyflyte run --remote pyspark_pi.py my_spark
(from the Flytesnacks examples). While Spark seems to execute, I keep getting the following error:
Copy code
python
Copy code
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.