Pysail Local execution timing out #2185
Unanswered
Soumendu-Khilar
asked this question in
Q&A
Replies: 1 comment 3 replies
|
Reading and filtering a single CSV file from remote storage requires streaming the entire file, which may take a long time depending on your network. The CSV format does not support efficient pruning. If you have data in e.g., Parquet format, querying the data in remote storage would be much more efficient. It is not yet clear to me whether the "timeout error" is an issue within Sail or the underlying operating system. If you can share the exact error message or a stack trace, we might be able to pinpoint the issue more clearly. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello Everyone,
I am a newbie to Spark and Sail usage.
This is something that I am trying to do from my local MAC. I am trying to read a CSV file in S3 bucket which is of 15 GB size. Doing a simple read and show gives the result.
But when I try to do any other filter, I start getting timeout errors.
Encountered error while reading
While I understand that data of this volume are best to be analysed and aggregated in a cluster, I was wondering if there is still a possibility to read and do simple filters in the local system.
Data Details:
Location : S3
Size : 15 GB
Columns Size : 23
Any suggestions for optimization, if any, would really help.
All reactions