prefect.client.base
¶
PrefectResponse
¶
Bases: Response
A Prefect wrapper for the httpx.Response
class.
Provides more informative error messages.
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/client/base.py
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 |
|
raise_for_status
¶
Raise an exception if the response contains an HTTPStatusError.
The PrefectHTTPStatusError
contains useful additional information that
is not contained in the HTTPStatusError
.
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/client/base.py
128 129 130 131 132 133 134 135 136 137 138 |
|
from_httpx_response
classmethod
¶
Create a PrefectReponse
from an httpx.Response
.
By changing the __class__
attribute of the Response, we change the method
resolution order to look for methods defined in PrefectResponse, while leaving
everything else about the original Response instance intact.
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/client/base.py
140 141 142 143 144 145 146 147 148 149 150 151 |
|
PrefectHttpxClient
¶
Bases: AsyncClient
A Prefect wrapper for the async httpx client with support for retry-after headers for the provided status codes (typically 429, 502 and 503).
Additionally, this client will always call raise_for_status
on responses.
For more details on rate limit headers, see: Configuring Cloudflare Rate Limiting
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/client/base.py
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 |
|
send
async
¶
Send a request with automatic retry behavior for the following status codes:
- 429 CloudFlare-style rate limiting
- 502 Bad Gateway
- 503 Service unavailable
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/client/base.py
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 |
|
app_lifespan_context
async
¶
A context manager that calls startup/shutdown hooks for the given application.
Lifespan contexts are cached per application to avoid calling the lifespan hooks more than once if the context is entered in nested code. A no-op context will be returned if the context for the given application is already being managed.
This manager is robust to concurrent access within the event loop. For example, if you have concurrent contexts for the same application, it is guaranteed that startup hooks will be called before their context starts and shutdown hooks will only be called after their context exits.
A reference count is used to support nested use of clients without running lifespan hooks excessively. The first client context entered will create and enter a lifespan context. Each subsequent client will increment a reference count but will not create a new lifespan context. When each client context exits, the reference count is decremented. When the last client context exits, the lifespan will be closed.
In simple nested cases, the first client context will be the one to exit the lifespan. However, if client contexts are entered concurrently they may not exit in a consistent order. If the first client context was responsible for closing the lifespan, it would have to wait until all other client contexts to exit to avoid firing shutdown hooks while the application is in use. Waiting for the other clients to exit can introduce deadlocks, so, instead, the first client will exit without closing the lifespan context and reference counts will be used to ensure the lifespan is closed once all of the clients are done.
Source code in /home/runner/work/docs/docs/prefect_source/src/prefect/client/base.py
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 |
|