Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/guides/proxy_management.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@ You can also provide a list of proxy tiers to the `ProxyConfiguration` class. Th

:::warning

Note that the `tieredProxyUrls` option requires `ProxyConfiguration` to be used from a crawler instance ([see below](#crawler-integration)).
The `tieredProxyUrls` option requires `ProxyConfiguration` to be used from a crawler instance ([see below](#crawler-integration)).

Using this configuration through the `newUrl` calls will not yield the expected results.
Calling `newUrl()` or `newProxyInfo()` directly on the `ProxyConfiguration` object will not activate tier logic — it will simply rotate through all provided URLs in round-robin fashion, ignoring tier associations and blocking detection. This is because tiered proxy behavior relies on session state and per-domain error tracking that only exist within a running crawler.

For standalone usage, use `proxyUrls` (simple rotation) instead, or use `newUrlFunction` to implement custom logic.

:::

Expand Down