RateLimited

class RateLimited(val retryAfter: Duration? = null, message: String = "Rate limited by Qdrant (HTTP 429)") : KdrantException

The server rejected the request because it is rate-limited (HTTP 429). Retryable: the client already retried with backoff, honoring the server's Retry-After, before surfacing this.

Constructors

Link copied to clipboard
constructor(retryAfter: Duration? = null, message: String = "Rate limited by Qdrant (HTTP 429)")

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?
Link copied to clipboard

the server's Retry-After hint, if it sent one.