Bioconductor / ExperimentHub

Client to access ExperimentHub resources
https://bioconductor.org/packages/ExperimentHub
9 stars 13 forks source link

ExperimentHub() timeout error #10

Closed xingrenUB closed 4 years ago

xingrenUB commented 4 years ago

library(ExperimentHub) ehub <- ExperimentHub()

Error in curl::curl_fetch_memory(url, handle = handle) : Timeout was reached: [experimenthub.bioconductor.org] Connection timed out after 10000 milliseconds

I also could not open experimenthub.bioconductor.org in the browser.

lshep commented 4 years ago

We have been experiencing intermittent inactivity. We are looking into the issue. But please try again at a later time

Get Outlook for Androidhttps://aka.ms/ghei36


From: xingrenUB notifications@github.com Sent: Friday, April 10, 2020 8:50:48 PM To: Bioconductor/ExperimentHub ExperimentHub@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [Bioconductor/ExperimentHub] ExperimentHub() timeout error (#10)

library(ExperimentHub) ehub <- ExperimentHub()

Error in curl::curl_fetch_memory(url, handle = handle) : Timeout was reached: [experimenthub.bioconductor.org] Connection timed out after 10000 milliseconds

I also could not open experimenthub.bioconductor.org in the browser.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/Bioconductor/ExperimentHub/issues/10, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AEO3MHAKJ47TEXW6O7IOUYTRL65GRANCNFSM4MFZJQSQ.

This email message may contain legally privileged and/or confidential information. If you are not the intended recipient(s), or the employee or agent responsible for the delivery of this message to the intended recipient(s), you are hereby notified that any disclosure, copying, distribution, or use of this email message is prohibited. If you have received this message in error, please notify the sender immediately by e-mail and delete this email message from your computer. Thank you.

lshep commented 4 years ago

There was an issue with the AWS host instance that stores the database. This should be resolved.

Yabous commented 2 years ago

I've tried repeatedly to download the GDP indicator from World bank's wbstats package in R. It returns the following message:

Error in curl::curl_fetch_memory(url, handle = handle) : Timeout was reached: [api.worldbank.org] Operation timed out after 20011 milliseconds with 195586 out of 3625865 bytes received

How to fix this error please?

lshep commented 2 years ago

@Yabous I don't think this is an ExperimentHub issue but an R / download issue since you do not indicate you are using ExperimentHub interface. However, download.file changes its default timeout limit to 60 second. My guess is, if you change the default timeout limit the download would complete since the error indicates the download started and was only a partial download. options(timeout=xxx) where xxx is a time in seconds for the default timeout.