Skip to content

Do not use the default timeout when streaming logs#908

Closed
sauladam wants to merge 5 commits intoaio-libs:mainfrom
sauladam:main
Closed

Do not use the default timeout when streaming logs#908
sauladam wants to merge 5 commits intoaio-libs:mainfrom
sauladam:main

Conversation

@sauladam
Copy link
Copy Markdown

What do these changes do?

This update modifies the default session timeout in the aiohttp client when calling DockerContainer.log(). Currently, the default timeout appears to be 300 seconds. By explicitly setting a ClientTimeout with sock_read=None, the logs can continue streaming as long as the connection remains active. This seems like a more suitable default behavior for continuous log streaming.

Are there changes in behavior for the user?

There may be a small impact for users who have implemented workarounds to handle the current 5-minute timeout, as they might expect the connection to terminate after that period. However, the overall effect should be minimal.

For better backward compatibility, an alternative approach could be to introduce a timeout_seconds parameter in the DockerContainer.log() function, defaulting to 300 seconds.

Related issue number

This issue was originally discussed in #901, and the solution was proposed by @toerb. I have adapted this approach and successfully tested it in my own projects.

Checklist

  • I think the code is well written
  • I’m not sure how to unit test or classify this change, as it’s neither a bug fix nor a new feature - just a default setting that seems more appropriate for this use case.

@codecov
Copy link
Copy Markdown

codecov bot commented Nov 20, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 80.76%. Comparing base (e0bb05b) to head (421208c).
Report is 2 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #908      +/-   ##
==========================================
+ Coverage   80.75%   80.76%   +0.01%     
==========================================
  Files          24       24              
  Lines        1434     1435       +1     
  Branches      206      206              
==========================================
+ Hits         1158     1159       +1     
  Misses        184      184              
  Partials       92       92              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.


🚨 Try these New Features:

@asvetlov asvetlov changed the title Do not use the default timeout when streming logs Do not use the default timeout when streaming logs Nov 20, 2024
@bdraco
Copy link
Copy Markdown
Member

bdraco commented Nov 20, 2024

For better backward compatibility, an alternative approach could be to introduce a timeout_seconds parameter in the DockerContainer.log() function, defaulting to 300 seconds.

I think this is a better approach as changing the timeout behavior is a breaking change

@sauladam
Copy link
Copy Markdown
Author

sauladam commented Nov 21, 2024

Hey @bdraco ,

I agree that changing the timeout behavior would be a breaking change. I've updated the code accordingly.

Regarding the parameter design, I believe using timeout: Optional[ClientTimeout] = None might be more appropriate than timeout_seconds = 300. This is because we need to distinguish between HTTP timeout and socket timeout - using just timeout_seconds could be ambiguous and doesn't fully capture the parameter's purpose.

On the downside, while allowing an optional ClientTimeout gives users more fine-grained control, it does create a dependency on aiohttp in the library API, which isn't ideal.

What are your thoughts on this approach? Would you prefer a different solution?

@bdraco
Copy link
Copy Markdown
Member

bdraco commented Nov 21, 2024

We shouldn't use ClientTimeout directly as an external input since it's an aiohttp object that may change in the future. The fact that aiohttp is used internally is an implementation detail of aiodocker which we don't want to leak to the caller.

We should create a new class to pass the timeout and convert it to an aiohttp ClientTimeout before passing it to aiohttp. This way if aiohttp changes how timeouts are handled in the future it won't be a breaking change for aiodocker as we can adapt it internally and externally callers do not need to make any changes.

@sauladam
Copy link
Copy Markdown
Author

The fact that aiohttp is used internally is an implementation detail of aiodocker which we don't want to leak to the caller.

Yes, that was exactly my concern. I'll try to come up with a lightweight Timeout abstraction that can be exposed through the aiodocker public API. This should give users the control they need while maintaining proper encapsulation.

@FrEaKmAn
Copy link
Copy Markdown

Any update about this?

@sauladam
Copy link
Copy Markdown
Author

sauladam commented Mar 5, 2025

@FrEaKmAn Yeah, sorry, things have been a little hectic lately and I don't want to rush just for the sake of merging. It's totally on still my radar though. I'll try to get to it soon.

@achimnol
Copy link
Copy Markdown
Member

achimnol commented Oct 31, 2025

Requirements:

I partially agree with the idea not to expose aiohttp.ClientTimeout in our API, but I think aiodocker is a very thin wrapper around the Docker Daemon's REST API using aiohttp and therefore it is impractical to limit the controllability of aiohttp.ClientSession. aiodocker already exposes the connector and session arguments in Docker.__init__().

@achimnol
Copy link
Copy Markdown
Member

achimnol commented Oct 31, 2025

NOTE: In most cases, what people want for timeout is "conection timeout" which signifies connection failures to the server, not the "total timeout" which imposes time limits for the entire request-response processing.
Unfortunately, asyncio.timeout() cannot distinguish this, so it should be used for the total timeouts only.

@achimnol
Copy link
Copy Markdown
Member

achimnol commented Nov 9, 2025

I'd like to redesign the aiodocker timeout interface to:

  • Specify the connection timeout that applies to new connections by default when creating Docker instance
    • Note that this timeout applies to new connections, not all individual requests, because a TCP connection may be reused across multiple requests depending on the keepalive option.
    • Users are still able to set the global aiohttp.ClientTimeout if they pass an externally created an aiohttp.ClientSession instance to the session argument.
  • Move the responsibility of enforcing "total" timeouts to the caller (e.g., using asyncio.timeout())
    • Users may set individual total-processing timeouts to specific requests (e.g., removing timeout for streaming logs while setting timeouts to other one-off request-response pairs).

@achimnol
Copy link
Copy Markdown
Member

achimnol commented Nov 11, 2025

Closing in favor of #983.
I will include you in the contributor list as Saulius Adamonis and co-author of the merge commit.

@achimnol achimnol closed this Nov 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants