-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update custom function for downloading files from s3 #458
Conversation
Codecov Report
@@ Coverage Diff @@
## main #458 +/- ##
==========================================
+ Coverage 82.68% 82.71% +0.03%
==========================================
Files 112 112
Lines 6400 6412 +12
==========================================
+ Hits 5292 5304 +12
Misses 1108 1108
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Hi, thank you for this great update! I’m trying to confirm my understanding of how the I’m using Can you confirm if there are any known memory issues in the current implementation, or if there might still be room for memory to accumulate under certain circumstances? I am troubleshooting my pipeline and would appreciate any insights on whether explicit Thanks in advance! |
This method by-passes R when collecting data from s3. Instead it calls
httr:write_disk
frompaws.common:::issue
and relies onlibcurl
to do the heavy lifting throughcurl::curl_fetch_disk
.Addresses #401