Ma77Ball opened a new issue, #5666: URL: https://github.com/apache/texera/issues/5666
### Task Summary `DatasetFileDocument` (`amber/src/main/python/pytexera/storage/dataset_file_document.py`) makes two `requests.get()` calls, the presigned-URL fetch in `get_presigned_url` and the file download in `read_file`, with no `timeout`. Since `requests` defaults to no timeout, a slow, hung, or unreachable file-service blocks the worker thread indefinitely, with no recovery from transient network blips. Add a request timeout and a bounded retry policy so these calls fail in bounded time and ride out transient connection errors / 5xx responses. Both calls are idempotent GETs, so retrying is safe. ### Task Type - [x] Performance -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
