We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9cad2 commit 01e0ae7Copy full SHA for 01e0ae7
README.md
@@ -166,6 +166,14 @@ from yandexcloud import SDK, RetryPolicy
166
sdk = SDK(retry_policy=RetryPolicy())
167
```
168
169
+SDK provide different modes for retry throttling policy:
170
+
171
+* `persistent` is suitable when you use SDK in any long-lived application, when SDK instance will live long enough for manage budget;
172
+* `temporary` is suitable when you use SDK in any short-lived application, e.g. scripts or CI/CD.
173
174
+By default, SDK will use temporary mode, but you can change it through `throttling_mode` argument.
175
176
177
## Contributing
178
### Dependencies
179
We use [uv](https://docs.astral.sh/uv) to manage dependencies and run commands in Makefile.
0 commit comments