prefect.server.api.server
¶
Defines the Prefect REST API FastAPI app.
RequestLimitMiddleware
¶
A middleware that limits the number of concurrent requests handled by the API.
This is a blunt tool for limiting SQLite concurrent writes which will cause failures at high volume. Ideally, we would only apply the limit to routes that perform writes.
Source code in prefect/server/api/server.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
|
SPAStaticFiles
¶
Bases: StaticFiles
Implementation of StaticFiles
for serving single page applications.
Adds get_response
handling to ensure that when a resource isn't found the
application still returns the index.
Source code in prefect/server/api/server.py
105 106 107 108 109 110 111 112 113 114 115 116 117 |
|
create_api_app
¶
Create a FastAPI app that includes the Prefect REST API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
router_prefix
|
Optional[str]
|
a prefix to apply to all included routers |
''
|
dependencies
|
Optional[List[Depends]]
|
a list of global dependencies to add to each Prefect REST API router |
None
|
health_check_path
|
str
|
the health check route path |
'/health'
|
fast_api_app_kwargs
|
Optional[Dict[str, Any]]
|
kwargs to pass to the FastAPI constructor |
None
|
router_overrides
|
Mapping[str, Optional[APIRouter]]
|
a mapping of route prefixes (i.e. "/admin") to new routers
allowing the caller to override the default routers. If |
None
|
Returns:
Type | Description |
---|---|
FastAPI
|
a FastAPI app that serves the Prefect REST API |
Source code in prefect/server/api/server.py
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 314 315 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 |
|
create_app
¶
Create an FastAPI app that includes the Prefect REST API and UI
Parameters:
Name | Type | Description | Default |
---|---|---|---|
settings
|
Settings
|
The settings to use to create the app. If not set, settings are pulled from the context. |
None
|
ignore_cache
|
bool
|
If set, a new application will be created even if the settings match. Otherwise, an application is returned from the cache. |
False
|
ephemeral
|
bool
|
If set, the application will be treated as ephemeral. The UI and services will be disabled. |
False
|
Source code in prefect/server/api/server.py
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 |
|
custom_internal_exception_handler
async
¶
Log a detailed exception for internal server errors before returning.
Send 503 for errors clients can retry on.
Source code in prefect/server/api/server.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
integrity_exception_handler
async
¶
Capture database integrity errors.
Source code in prefect/server/api/server.py
152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
prefect_object_not_found_exception_handler
async
¶
Return 404 status code on object not found exceptions.
Source code in prefect/server/api/server.py
254 255 256 257 258 259 260 |
|
replace_placeholder_string_in_files
¶
Recursively loops through all files in the given directory and replaces a placeholder string.
Source code in prefect/server/api/server.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
|
validation_exception_handler
async
¶
Provide a detailed message for request validation errors.
Source code in prefect/server/api/server.py
138 139 140 141 142 143 144 145 146 147 148 149 |
|