Add support of parameter `storage_options` in functions `modin.pandas.read_*`
See original GitHub issueDescribe the problem
When pandas will release storage_options
for read_*
functions (which are currently supported in master) we should include this feature in modin.
Issue Analytics
- State:
- Created 3 years ago
- Comments:10 (7 by maintainers)
Top Results From Across the Web
pd.DataFrame supported APIs - Modin
DataFrame method pandas Doc link Implemented? (Y/N/P/D)
T T Y
abs abs Y
add add Y
Read more >Using Pandas on Ray (Modin) — Ray 2.2.0
Modin, previously Pandas on Ray, is a dataframe manipulation library that allows users to speed up their pandas workloads by acting as a...
Read more >Release 0+untagged.50.ge6068ba.dirty Modin contributors
As a result, DaskDF does not support a sort function. Modin reproduces the intuitive behavior in pandas where the order of the DataFrame...
Read more >Modin - How to speedup pandas by changing one line ...
In the below code we read a dataset using both pandas and modin and record the time. # Read in the data with...
Read more >Scaling Interactive Data Science Transparently with Modin
4.3 Performance of read csv on 144 cores versus pandas. ... to entry for new Modin users, and also yields a roadmap to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi @youthmrg, sorry for the delay in responding (I finally wrapped up my PhD thesis and graduated 😄).
This is among the highest priority actions for the next release. I am planning on working on this in the next couple of weeks.
@devin-petersohn Your work is amazing. I also encountered this problem: I need to read a
CSV
file from an S3-like storage system, and I need to specify theendpoint_url
instead of getting the file from AWS. Pandas-1.2.4 provides thestorage_options
parameter, as shown below, I can successfully read theCSV
file from the S3-like storage system. What is the progress of solving this problem? Is there a version that has been solved for testing or use?