prefect.cli.global_concurrency_limit
create_global_concurrency_limit(name=typer.Argument(..., help='The name of the global concurrency limit to create.'), limit=typer.Option(..., '--limit', '-l', help='The limit of the global concurrency limit.'), disable=typer.Option(None, '--disable', help='Create an inactive global concurrency limit.'), active_slots=typer.Option(0, '--active-slots', help='The number of active slots.'), slot_decay_per_second=typer.Option(0.0, '--slot-decay-per-second', help='The slot decay per second.'))
async
Create a global concurrency limit.
Arguments:
name (str): The name of the global concurrency limit to create.
limit (int): The limit of the global concurrency limit.
disable (Optional[bool]): Create an inactive global concurrency limit.
active_slots (Optional[int]): The number of active slots.
slot_decay_per_second (Optional[float]): The slot decay per second.
Examples:
$ prefect global-concurrency-limit create my-gcl --limit 10
$ prefect gcl create my-gcl --limit 5 --active-slots 3
$ prefect gcl create my-gcl --limit 5 --active-slots 3 --slot-decay-per-second 0.5
$ prefect gcl create my-gcl --limit 5 --inactive
Source code in src/prefect/cli/global_concurrency_limit.py
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 |
|
delete_global_concurrency_limit(name=typer.Argument(..., help='The name of the global concurrency limit to delete.'))
async
Delete a global concurrency limit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the global concurrency limit to delete. |
Argument(..., help='The name of the global concurrency limit to delete.')
|
Source code in src/prefect/cli/global_concurrency_limit.py
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 |
|
disable_global_concurrency_limit(name=typer.Argument(..., help='The name of the global concurrency limit to disable.'))
async
Disable a global concurrency limit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the global concurrency limit to disable. |
Argument(..., help='The name of the global concurrency limit to disable.')
|
Source code in src/prefect/cli/global_concurrency_limit.py
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 |
|
enable_global_concurrency_limit(name=typer.Argument(..., help='The name of the global concurrency limit to enable.'))
async
Enable a global concurrency limit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the global concurrency limit to enable. |
Argument(..., help='The name of the global concurrency limit to enable.')
|
Source code in src/prefect/cli/global_concurrency_limit.py
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 |
|
inspect_global_concurrency_limit(name=typer.Argument(..., help='The name of the global concurrency limit to inspect.'), output=typer.Option(None, '--output', '-o', help='Output format for the command.', case_sensitive=False), file_path=typer.Option(None, '--file', '-f', help='Path to .json file to write the global concurrency limit output to.'))
async
Inspect a global concurrency limit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the global concurrency limit to inspect. |
Argument(..., help='The name of the global concurrency limit to inspect.')
|
output
|
Optional[OutputFormat]
|
An output format for the command. Currently only supports JSON. Required if --file/-f is set. |
Option(None, '--output', '-o', help='Output format for the command.', case_sensitive=False)
|
file_path
|
Optional[Path]
|
A path to .json file to write the global concurrent limit output to. |
Option(None, '--file', '-f', help='Path to .json file to write the global concurrency limit output to.')
|
Returns:
Name | Type | Description |
---|---|---|
id |
str
|
The ID of the global concurrency limit. |
created |
str
|
The created date of the global concurrency limit. |
updated |
str
|
The updated date of the global concurrency limit. |
name |
str
|
The name of the global concurrency limit. |
limit |
int
|
The limit of the global concurrency limit. |
active_slots |
int
|
The number of active slots. |
slot_decay_per_second |
float
|
The slot decay per second. |
Source code in src/prefect/cli/global_concurrency_limit.py
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 |
|
list_global_concurrency_limits()
async
List all global concurrency limits.
Source code in src/prefect/cli/global_concurrency_limit.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 |
|
update_global_concurrency_limit(name=typer.Argument(..., help='The name of the global concurrency limit to update.'), enable=typer.Option(None, '--enable', help='Enable the global concurrency limit.'), disable=typer.Option(None, '--disable', help='Disable the global concurrency limit.'), limit=typer.Option(None, '--limit', '-l', help='The limit of the global concurrency limit.'), active_slots=typer.Option(None, '--active-slots', help='The number of active slots.'), slot_decay_per_second=typer.Option(None, '--slot-decay-per-second', help='The slot decay per second.'))
async
Update a global concurrency limit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the global concurrency limit to update. |
Argument(..., help='The name of the global concurrency limit to update.')
|
enable
|
Optional[bool]
|
Enable the global concurrency limit. |
Option(None, '--enable', help='Enable the global concurrency limit.')
|
disable
|
Optional[bool]
|
Disable the global concurrency limit. |
Option(None, '--disable', help='Disable the global concurrency limit.')
|
limit
|
Optional[int]
|
The limit of the global concurrency limit. |
Option(None, '--limit', '-l', help='The limit of the global concurrency limit.')
|
active_slots
|
Optional[int]
|
The number of active slots. |
Option(None, '--active-slots', help='The number of active slots.')
|
slot_decay_per_second
|
Optional[float]
|
The slot decay per second. |
Option(None, '--slot-decay-per-second', help='The slot decay per second.')
|
Examples:
$ prefect global-concurrency-limit update my-gcl --limit 10 $ prefect gcl update my-gcl --active-slots 5 $ prefect gcl update my-gcl --slot-decay-per-second 0.5 $ prefect gcl update my-gcl --enable $ prefect gcl update my-gcl --disable --limit 5
Source code in src/prefect/cli/global_concurrency_limit.py
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 |
|