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 src/prefect/server/api/server.py
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
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 src/prefect/server/api/server.py
120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
SubprocessASGIServer
Source code in src/prefect/server/api/server.py
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 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 |
|
__new__(port=None, *args, **kwargs)
Return an instance of the server associated with the provided port. Prevents multiple instances from being created for the same port.
Source code in src/prefect/server/api/server.py
713 714 715 716 717 718 719 720 721 |
|
start(timeout=None)
Start the server in a separate process. Safe to call multiple times; only starts the server once.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
timeout |
Optional[int]
|
The maximum time to wait for the server to start |
None
|
Source code in src/prefect/server/api/server.py
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 |
|
create_api_app(dependencies=None, health_check_path='/health', version_check_path='/version', fast_api_app_kwargs=None)
Create a FastAPI app that includes the Prefect REST API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
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
|
Returns:
Type | Description |
---|---|
FastAPI
|
a FastAPI app that serves the Prefect REST API |
Source code in src/prefect/server/api/server.py
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 |
|
create_app(settings=None, ephemeral=False, ignore_cache=False)
Create an FastAPI app that includes the Prefect REST API and UI
Parameters:
Name | Type | Description | Default |
---|---|---|---|
settings |
Optional[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 src/prefect/server/api/server.py
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 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 |
|
custom_internal_exception_handler(request, exc)
async
Log a detailed exception for internal server errors before returning.
Send 503 for errors clients can retry on.
Source code in src/prefect/server/api/server.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
|
integrity_exception_handler(request, exc)
async
Capture database integrity errors.
Source code in src/prefect/server/api/server.py
167 168 169 170 171 172 173 174 175 176 177 178 179 |
|
prefect_object_not_found_exception_handler(request, exc)
async
Return 404 status code on object not found exceptions.
Source code in src/prefect/server/api/server.py
272 273 274 275 276 277 278 |
|
replace_placeholder_string_in_files(directory, placeholder, replacement, allowed_extensions=None)
Recursively loops through all files in the given directory and replaces a placeholder string.
Source code in src/prefect/server/api/server.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
validation_exception_handler(request, exc)
async
Provide a detailed message for request validation errors.
Source code in src/prefect/server/api/server.py
153 154 155 156 157 158 159 160 161 162 163 164 |
|