-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path_http_client.py
More file actions
480 lines (403 loc) · 17 KB
/
_http_client.py
File metadata and controls
480 lines (403 loc) · 17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
from __future__ import annotations
import asyncio
import logging
import random
import time
from datetime import timedelta
from http import HTTPStatus
from typing import TYPE_CHECKING, Any, TypeVar
import impit
from apify_client._consts import DEFAULT_MAX_RETRIES, DEFAULT_MIN_DELAY_BETWEEN_RETRIES, DEFAULT_TIMEOUT
from apify_client._docs import docs_group
from apify_client._http_clients._base import BaseHttpClient
from apify_client._logging import log_context, logger_name
from apify_client._utils import to_seconds
from apify_client.errors import ApifyApiError
if TYPE_CHECKING:
from collections.abc import Awaitable, Callable
from apify_client._consts import JsonSerializable
from apify_client._statistics import ClientStatistics
T = TypeVar('T')
logger = logging.getLogger(logger_name)
@docs_group('HTTP clients')
class HttpClient(BaseHttpClient):
"""Synchronous HTTP client for the Apify API.
Handles authentication, request serialization, and automatic retries with exponential backoff
for rate-limited (HTTP 429) and server error (HTTP 5xx) responses. Non-retryable errors
(e.g. HTTP 4xx client errors) are raised immediately.
"""
def __init__(
self,
*,
token: str | None = None,
timeout: timedelta = DEFAULT_TIMEOUT,
max_retries: int = DEFAULT_MAX_RETRIES,
min_delay_between_retries: timedelta = DEFAULT_MIN_DELAY_BETWEEN_RETRIES,
statistics: ClientStatistics | None = None,
headers: dict[str, str] | None = None,
) -> None:
"""Initialize the synchronous HTTP client.
Args:
token: Apify API token for authentication.
timeout: Default timeout for HTTP requests.
max_retries: Maximum number of retry attempts for failed requests.
min_delay_between_retries: Minimum delay between retries (increases exponentially with each attempt).
statistics: Statistics tracker for API calls. Created automatically if not provided.
headers: Additional HTTP headers to include in all requests.
"""
super().__init__(
token=token,
timeout=timeout,
max_retries=max_retries,
min_delay_between_retries=min_delay_between_retries,
statistics=statistics,
headers=headers,
)
self._impit_client = impit.Client(
headers=self._headers,
follow_redirects=True,
timeout=to_seconds(self._timeout),
)
def call(
self,
*,
method: str,
url: str,
headers: dict[str, str] | None = None,
params: dict[str, Any] | None = None,
data: str | bytes | bytearray | None = None,
json: JsonSerializable | None = None,
stream: bool | None = None,
timeout: timedelta | None = None,
) -> impit.Response:
"""Make an HTTP request with automatic retry and exponential backoff.
Args:
method: HTTP method (GET, POST, PUT, DELETE, etc.).
url: Full URL to make the request to.
headers: Additional headers to include.
params: Query parameters to append to the URL.
data: Raw request body data. Cannot be used together with json.
json: JSON-serializable data for the request body. Cannot be used together with data.
stream: Whether to stream the response body.
timeout: Timeout override for this request.
Returns:
The HTTP response object.
Raises:
ApifyApiError: If the request fails after all retries or returns a non-retryable error status.
ValueError: If both json and data are provided.
"""
log_context.method.set(method)
log_context.url.set(url)
self._statistics.calls += 1
prepared_headers, prepared_params, content = self._prepare_request_call(headers, params, data, json)
return self._retry_with_exp_backoff(
lambda stop_retrying, attempt: self._make_request(
stop_retrying=stop_retrying,
attempt=attempt,
method=method,
url=url,
headers=prepared_headers,
params=prepared_params,
content=content,
stream=stream,
timeout=timeout,
),
max_retries=self._max_retries,
backoff_base=self._min_delay_between_retries,
)
def _make_request(
self,
*,
stop_retrying: Callable[[], None],
attempt: int,
method: str,
url: str,
headers: dict[str, str],
params: dict[str, Any] | None,
content: bytes | None,
stream: bool | None,
timeout: timedelta | None,
) -> impit.Response:
"""Execute a single HTTP request attempt.
Args:
stop_retrying: Callback to signal that retries should stop.
attempt: Current attempt number (1-indexed).
method: HTTP method.
url: Request URL.
headers: Request headers.
params: Query parameters.
content: Request body content.
stream: Whether to stream the response.
timeout: Timeout override for this request.
Returns:
The HTTP response object.
Raises:
ApifyApiError: If the request fails with an error status.
"""
log_context.attempt.set(attempt)
logger.debug('Sending request')
self._statistics.requests += 1
try:
url_with_params = self._build_url_with_params(url, params)
response = self._impit_client.request(
method=method,
url=url_with_params,
headers=headers,
content=content,
timeout=self._calculate_timeout(attempt, timeout),
stream=stream or False,
)
if response.status_code < HTTPStatus.MULTIPLE_CHOICES:
logger.debug('Request successful', extra={'status_code': response.status_code})
return response
if response.status_code == HTTPStatus.TOO_MANY_REQUESTS:
self._statistics.add_rate_limit_error(attempt)
except Exception as exc:
logger.debug('Request threw exception', exc_info=exc)
if not self._is_retryable_error(exc):
logger.debug('Exception is not retryable', exc_info=exc)
stop_retrying()
raise
# Retry only server errors (5xx) and rate limits (429).
logger.debug('Request unsuccessful', extra={'status_code': response.status_code})
if (
response.status_code < HTTPStatus.INTERNAL_SERVER_ERROR
and response.status_code != HTTPStatus.TOO_MANY_REQUESTS
):
logger.debug('Status code is not retryable', extra={'status_code': response.status_code})
stop_retrying()
# Read the response in case it is a stream, so we can raise the error properly.
response.read()
raise ApifyApiError(response, attempt, method=method)
@staticmethod
def _retry_with_exp_backoff(
func: Callable[[Callable[[], None], int], T],
*,
max_retries: int = 8,
backoff_base: timedelta = timedelta(milliseconds=500),
backoff_factor: float = 2,
random_factor: float = 1,
) -> T:
"""Retry a function with exponential backoff and jitter.
Args:
func: Function to retry. Receives (stop_retrying callback, attempt number).
max_retries: Maximum retry attempts.
backoff_base: Base delay.
backoff_factor: Exponential multiplier (clamped to 1-10).
random_factor: Jitter factor (clamped to 0-1).
Returns:
The function's return value on success.
Raises:
Exception: Re-raises the last exception if all retries fail or stop_retrying is called.
"""
if max_retries < 1:
raise ValueError(f'max_retries must be at least 1, got {max_retries}')
random_factor = min(max(0, random_factor), 1)
backoff_factor = min(max(1, backoff_factor), 10)
swallow = True
def stop_retrying() -> None:
nonlocal swallow
swallow = False
for attempt in range(1, max_retries + 1):
try:
return func(stop_retrying, attempt)
except Exception:
if not swallow:
raise
random_sleep_factor = random.uniform(1, 1 + random_factor)
backoff_base_secs = to_seconds(backoff_base)
backoff_exp_factor = backoff_factor ** (attempt - 1)
sleep_time_secs = random_sleep_factor * backoff_base_secs * backoff_exp_factor
time.sleep(sleep_time_secs)
return func(stop_retrying, max_retries + 1)
@docs_group('HTTP clients')
class HttpClientAsync(BaseHttpClient):
"""Asynchronous HTTP client for the Apify API.
Handles authentication, request serialization, and automatic retries with exponential backoff
for rate-limited (HTTP 429) and server error (HTTP 5xx) responses. Non-retryable errors
(e.g. HTTP 4xx client errors) are raised immediately.
"""
def __init__(
self,
*,
token: str | None = None,
timeout: timedelta = DEFAULT_TIMEOUT,
max_retries: int = DEFAULT_MAX_RETRIES,
min_delay_between_retries: timedelta = DEFAULT_MIN_DELAY_BETWEEN_RETRIES,
statistics: ClientStatistics | None = None,
headers: dict[str, str] | None = None,
) -> None:
"""Initialize the asynchronous HTTP client.
Args:
token: Apify API token for authentication.
timeout: Default timeout for HTTP requests.
max_retries: Maximum number of retry attempts for failed requests.
min_delay_between_retries: Minimum delay between retries (increases exponentially with each attempt).
statistics: Statistics tracker for API calls. Created automatically if not provided.
headers: Additional HTTP headers to include in all requests.
"""
super().__init__(
token=token,
timeout=timeout,
max_retries=max_retries,
min_delay_between_retries=min_delay_between_retries,
statistics=statistics,
headers=headers,
)
self._impit_async_client = impit.AsyncClient(
headers=self._headers,
follow_redirects=True,
timeout=to_seconds(self._timeout),
)
async def call(
self,
*,
method: str,
url: str,
headers: dict[str, str] | None = None,
params: dict[str, Any] | None = None,
data: str | bytes | bytearray | None = None,
json: JsonSerializable | None = None,
stream: bool | None = None,
timeout: timedelta | None = None,
) -> impit.Response:
"""Make an HTTP request with automatic retry and exponential backoff.
Args:
method: HTTP method (GET, POST, PUT, DELETE, etc.).
url: Full URL to make the request to.
headers: Additional headers to include.
params: Query parameters to append to the URL.
data: Raw request body data. Cannot be used together with json.
json: JSON-serializable data for the request body. Cannot be used together with data.
stream: Whether to stream the response body.
timeout: Timeout override for this request.
Returns:
The HTTP response object.
Raises:
ApifyApiError: If the request fails after all retries or returns a non-retryable error status.
ValueError: If both json and data are provided.
"""
log_context.method.set(method)
log_context.url.set(url)
self._statistics.calls += 1
prepared_headers, prepared_params, content = self._prepare_request_call(headers, params, data, json)
return await self._retry_with_exp_backoff(
lambda stop_retrying, attempt: self._make_request(
stop_retrying=stop_retrying,
attempt=attempt,
method=method,
url=url,
headers=prepared_headers,
params=prepared_params,
content=content,
stream=stream,
timeout=timeout,
),
max_retries=self._max_retries,
backoff_base=self._min_delay_between_retries,
)
async def _make_request(
self,
*,
stop_retrying: Callable[[], None],
attempt: int,
method: str,
url: str,
headers: dict[str, str],
params: dict[str, Any] | None,
content: bytes | None,
stream: bool | None,
timeout: timedelta | None,
) -> impit.Response:
"""Execute a single HTTP request attempt.
Args:
stop_retrying: Callback to signal that retries should stop.
attempt: Current attempt number (1-indexed).
method: HTTP method.
url: Request URL.
headers: Request headers.
params: Query parameters.
content: Request body content.
stream: Whether to stream the response.
timeout: Timeout override for this request.
Returns:
The HTTP response object.
Raises:
ApifyApiError: If the request fails with an error status.
"""
log_context.attempt.set(attempt)
logger.debug('Sending request')
self._statistics.requests += 1
try:
url_with_params = self._build_url_with_params(url, params)
response = await self._impit_async_client.request(
method=method,
url=url_with_params,
headers=headers,
content=content,
timeout=self._calculate_timeout(attempt, timeout),
stream=stream or False,
)
if response.status_code < HTTPStatus.MULTIPLE_CHOICES:
logger.debug('Request successful', extra={'status_code': response.status_code})
return response
if response.status_code == HTTPStatus.TOO_MANY_REQUESTS:
self._statistics.add_rate_limit_error(attempt)
except Exception as exc:
logger.debug('Request threw exception', exc_info=exc)
if not self._is_retryable_error(exc):
logger.debug('Exception is not retryable', exc_info=exc)
stop_retrying()
raise
# Retry only server errors (5xx) and rate limits (429).
logger.debug('Request unsuccessful', extra={'status_code': response.status_code})
if (
response.status_code < HTTPStatus.INTERNAL_SERVER_ERROR
and response.status_code != HTTPStatus.TOO_MANY_REQUESTS
):
logger.debug('Status code is not retryable', extra={'status_code': response.status_code})
stop_retrying()
# Read the response in case it is a stream, so we can raise the error properly.
await response.aread()
raise ApifyApiError(response, attempt, method=method)
@staticmethod
async def _retry_with_exp_backoff(
func: Callable[[Callable[[], None], int], Awaitable[T]],
*,
max_retries: int = 8,
backoff_base: timedelta = timedelta(milliseconds=500),
backoff_factor: float = 2,
random_factor: float = 1,
) -> T:
"""Retry an async function with exponential backoff and jitter.
Args:
func: Async function to retry. Receives (stop_retrying callback, attempt number).
max_retries: Maximum retry attempts.
backoff_base: Base delay.
backoff_factor: Exponential multiplier (clamped to 1-10).
random_factor: Jitter factor (clamped to 0-1).
Returns:
The function's return value on success.
Raises:
Exception: Re-raises the last exception if all retries fail or stop_retrying is called.
"""
if max_retries < 1:
raise ValueError(f'max_retries must be at least 1, got {max_retries}')
random_factor = min(max(0, random_factor), 1)
backoff_factor = min(max(1, backoff_factor), 10)
swallow = True
def stop_retrying() -> None:
nonlocal swallow
swallow = False
for attempt in range(1, max_retries + 1):
try:
return await func(stop_retrying, attempt)
except Exception:
if not swallow:
raise
random_sleep_factor = random.uniform(1, 1 + random_factor)
backoff_base_secs = to_seconds(backoff_base)
backoff_exp_factor = backoff_factor ** (attempt - 1)
sleep_time_secs = random_sleep_factor * backoff_base_secs * backoff_exp_factor
await asyncio.sleep(sleep_time_secs)
return await func(stop_retrying, max_retries + 1)