From f849697905198ddcb3ede68ab593e75f5f3ef7bb Mon Sep 17 00:00:00 2001 From: AndersonUece Date: Thu, 29 Jan 2026 19:44:28 +0100 Subject: [PATCH] Create HTTP_TIMEOUTS.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Documented practical timeout defaults so clients don’t hang indefinitely on bad networks. --- docs/HTTP_TIMEOUTS.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/HTTP_TIMEOUTS.md diff --git a/docs/HTTP_TIMEOUTS.md b/docs/HTTP_TIMEOUTS.md new file mode 100644 index 00000000..9097b366 --- /dev/null +++ b/docs/HTTP_TIMEOUTS.md @@ -0,0 +1,12 @@ +# HTTP Timeouts + +Recommended defaults for clients calling CLOB endpoints: + +- Connect timeout: 3s +- Read timeout: 10s +- Total timeout: 15s (if supported) + +Retry guidance: +- Retry only idempotent requests +- Use exponential backoff with jitter +- Cap retries (e.g., 3 attempts)