You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When publishing a dataset with audb.publish() takes longer than 24h, it might throw an error after some time, e.g. with the minio backend I got after 31 h:
Traceback (most recent call last):
File "/data/hwierstorf/.envs/libri-light-1.0.0/lib/python3.10/site-packages/urllib3/connectionpool.py", line 789, in urlopen
response = self._make_request(
File "/data/hwierstorf/.envs/libri-light-1.0.0/lib/python3.10/site-packages/urllib3/connectionpool.py", line 536, in _make_request
response = conn.getresponse()
File "/data/hwierstorf/.envs/libri-light-1.0.0/lib/python3.10/site-packages/urllib3/connection.py", line 507, in getresponse
httplib_response = super().getresponse()
File "/usr/lib/python3.10/http/client.py", line 1375, in getresponse
response.begin()
File "/usr/lib/python3.10/http/client.py", line 318, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.10/http/client.py", line 287, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response
A similar error for large datasets, but after a shorter (random) time we get for the artifactory backend.
The text was updated successfully, but these errors were encountered:
As this kind of error can usually be handled by restarting the publication process, we might simply catch the error during publication and try to re-establish a connection and continue with publication.
When publishing a dataset with
audb.publish()
takes longer than 24h, it might throw an error after some time, e.g. with theminio
backend I got after 31 h:A similar error for large datasets, but after a shorter (random) time we get for the
artifactory
backend.The text was updated successfully, but these errors were encountered: