prefect_dbt.cli.commands
Module containing tasks and flows for interacting with dbt CLI
DbtCoreOperation
Bases: ShellOperation
A block representing a dbt operation, containing multiple dbt and shell commands.
For long-lasting operations, use the trigger method and utilize the block as a context manager for automatic closure of processes when context is exited. If not, manually call the close method to close processes.
For short-lasting operations, use the run method. Context is automatically managed with this method.
Attributes:
Name | Type | Description |
---|---|---|
commands |
A list of commands to execute sequentially. |
|
stream_output |
Whether to stream output. |
|
env |
A dictionary of environment variables to set for the shell operation. |
|
working_dir |
The working directory context the commands will be executed within. |
|
shell |
The shell to use to execute the commands. |
|
extension |
The extension to use for the temporary file.
if unset defaults to |
|
profiles_dir |
Optional[Path]
|
The directory to search for the profiles.yml file.
Setting this appends the |
project_dir |
Optional[Path]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
overwrite_profiles |
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
dbt_cli_profile |
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
Examples:
Load a configured block.
from prefect_dbt import DbtCoreOperation
dbt_op = DbtCoreOperation.load("BLOCK_NAME")
Execute short-lasting dbt debug and list with a custom DbtCliProfile.
from prefect_dbt import DbtCoreOperation, DbtCliProfile
from prefect_dbt.cli.configs import SnowflakeTargetConfigs
from prefect_snowflake import SnowflakeConnector
snowflake_connector = await SnowflakeConnector.load("snowflake-connector")
target_configs = SnowflakeTargetConfigs(connector=snowflake_connector)
dbt_cli_profile = DbtCliProfile(
name="jaffle_shop",
target="dev",
target_configs=target_configs,
)
dbt_init = DbtCoreOperation(
commands=["dbt debug", "dbt list"],
dbt_cli_profile=dbt_cli_profile,
overwrite_profiles=True
)
dbt_init.run()
Execute a longer-lasting dbt run as a context manager.
with DbtCoreOperation(commands=["dbt run"]) as dbt_run:
dbt_process = dbt_run.trigger()
# do other things
dbt_process.wait_for_completion()
dbt_output = dbt_process.fetch_result()
Source code in prefect_dbt/cli/commands.py
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 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 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 395 396 397 |
|
create_summary_markdown(run_results, command)
Creates a Prefect task artifact summarizing the results of the above predefined prefrect-dbt task.
Source code in prefect_dbt/cli/commands.py
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 |
|
run_dbt_build(profiles_dir=None, project_dir=None, overwrite_profiles=False, dbt_cli_profile=None, create_summary_artifact=False, summary_artifact_key='dbt-build-task-summary', extra_command_args=None, stream_output=True)
async
Executes the 'dbt build' command within a Prefect task, and optionally creates a Prefect artifact summarizing the dbt build results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profiles_dir
|
Optional[Union[Path, str]]
|
The directory to search for the profiles.yml file. Setting this
appends the |
None
|
project_dir
|
Optional[Union[Path, str]]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
None
|
overwrite_profiles
|
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
False
|
dbt_cli_profile
|
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
None
|
create_summary_artifact
|
bool
|
If True, creates a Prefect artifact on the task run with the dbt build results using the specified artifact key. Defaults to False. |
False
|
summary_artifact_key
|
str
|
The key under which to store the dbt build results artifact in Prefect. Defaults to 'dbt-build-task-summary'. |
'dbt-build-task-summary'
|
extra_command_args
|
Optional[List[str]]
|
Additional command arguments to pass to the dbt build command. |
None
|
stream_output
|
bool
|
If True, the output from the dbt command will be logged in Prefect as it happens. Defaults to True. |
True
|
from prefect import flow
from prefect_dbt.cli.tasks import dbt_build_task
@flow
def dbt_test_flow():
dbt_build_task(
project_dir="/Users/test/my_dbt_project_dir",
extra_command_args=["--model", "foo_model"]
)
Raises:
Type | Description |
---|---|
ValueError
|
If required dbt_cli_profile is not provided when needed for profile writing. |
RuntimeError
|
If the dbt build fails for any reason, it will be indicated by the exception raised. |
Source code in prefect_dbt/cli/commands.py
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
|
run_dbt_model(profiles_dir=None, project_dir=None, overwrite_profiles=False, dbt_cli_profile=None, create_summary_artifact=False, summary_artifact_key='dbt-run-task-summary', extra_command_args=None, stream_output=True)
async
Executes the 'dbt run' command within a Prefect task, and optionally creates a Prefect artifact summarizing the dbt model results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profiles_dir
|
Optional[Union[Path, str]]
|
The directory to search for the profiles.yml file. Setting this
appends the |
None
|
project_dir
|
Optional[Union[Path, str]]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
None
|
overwrite_profiles
|
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
False
|
dbt_cli_profile
|
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
None
|
create_summary_artifact
|
bool
|
If True, creates a Prefect artifact on the task run with the dbt model run results using the specified artifact key. Defaults to False. |
False
|
summary_artifact_key
|
str
|
The key under which to store the dbt model run results artifact in Prefect. Defaults to 'dbt-run-task-summary'. |
'dbt-run-task-summary'
|
extra_command_args
|
Optional[List[str]]
|
Additional command arguments to pass to the dbt run command. |
None
|
stream_output
|
bool
|
If True, the output from the dbt command will be logged in Prefect as it happens. Defaults to True. |
True
|
from prefect import flow
from prefect_dbt.cli.tasks import dbt_run_task
@flow
def dbt_test_flow():
dbt_run_task(
project_dir="/Users/test/my_dbt_project_dir",
extra_command_args=["--model", "foo_model"]
)
Raises:
Type | Description |
---|---|
ValueError
|
If required dbt_cli_profile is not provided when needed for profile writing. |
RuntimeError
|
If the dbt build fails for any reason, it will be indicated by the exception raised. |
Source code in prefect_dbt/cli/commands.py
473 474 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 |
|
run_dbt_seed(profiles_dir=None, project_dir=None, overwrite_profiles=False, dbt_cli_profile=None, create_summary_artifact=False, summary_artifact_key='dbt-seed-task-summary', extra_command_args=None, stream_output=True)
async
Executes the 'dbt seed' command within a Prefect task, and optionally creates a Prefect artifact summarizing the dbt seed results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profiles_dir
|
Optional[Union[Path, str]]
|
The directory to search for the profiles.yml file. Setting this
appends the |
None
|
project_dir
|
Optional[Union[Path, str]]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
None
|
overwrite_profiles
|
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
False
|
dbt_cli_profile
|
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
None
|
create_summary_artifact
|
bool
|
If True, creates a Prefect artifact on the task run with the dbt seed results using the specified artifact key. Defaults to False. |
False
|
summary_artifact_key
|
str
|
The key under which to store the dbt seed results artifact in Prefect. Defaults to 'dbt-seed-task-summary'. |
'dbt-seed-task-summary'
|
extra_command_args
|
Optional[List[str]]
|
Additional command arguments to pass to the dbt seed command. |
None
|
stream_output
|
bool
|
If True, the output from the dbt command will be logged in Prefect as it happens. Defaults to True. |
True
|
from prefect import flow
from prefect_dbt.cli.tasks import dbt_seed_task
@flow
def dbt_test_flow():
dbt_seed_task(
project_dir="/Users/test/my_dbt_project_dir",
extra_command_args=["--fail-fast"]
)
Raises:
Type | Description |
---|---|
ValueError
|
If required dbt_cli_profile is not provided when needed for profile writing. |
RuntimeError
|
If the dbt build fails for any reason, it will be indicated by the exception raised. |
Source code in prefect_dbt/cli/commands.py
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 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 |
|
run_dbt_snapshot(profiles_dir=None, project_dir=None, overwrite_profiles=False, dbt_cli_profile=None, create_summary_artifact=False, summary_artifact_key='dbt-snapshot-task-summary', extra_command_args=None, stream_output=True)
async
Executes the 'dbt snapshot' command within a Prefect task, and optionally creates a Prefect artifact summarizing the dbt snapshot results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profiles_dir
|
Optional[Union[Path, str]]
|
The directory to search for the profiles.yml file. Setting this
appends the |
None
|
project_dir
|
Optional[Union[Path, str]]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
None
|
overwrite_profiles
|
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
False
|
dbt_cli_profile
|
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
None
|
create_summary_artifact
|
bool
|
If True, creates a Prefect artifact on the task run with the dbt snapshot results using the specified artifact key. Defaults to False. |
False
|
summary_artifact_key
|
str
|
The key under which to store the dbt snapshot results artifact in Prefect. Defaults to 'dbt-snapshot-task-summary'. |
'dbt-snapshot-task-summary'
|
extra_command_args
|
Optional[List[str]]
|
Additional command arguments to pass to the dbt snapshot command. |
None
|
stream_output
|
bool
|
If True, the output from the dbt command will be logged in Prefect as it happens. Defaults to True. |
True
|
from prefect import flow
from prefect_dbt.cli.tasks import dbt_snapshot_task
@flow
def dbt_test_flow():
dbt_snapshot_task(
project_dir="/Users/test/my_dbt_project_dir",
extra_command_args=["--fail-fast"]
)
Raises:
Type | Description |
---|---|
ValueError
|
If required dbt_cli_profile is not provided when needed for profile writing. |
RuntimeError
|
If the dbt build fails for any reason, it will be indicated by the exception raised. |
Source code in prefect_dbt/cli/commands.py
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 |
|
run_dbt_source_freshness(profiles_dir=None, project_dir=None, overwrite_profiles=False, dbt_cli_profile=None, create_summary_artifact=False, summary_artifact_key='dbt-source-freshness-task-summary', extra_command_args=None, stream_output=True)
async
Executes the 'dbt source freshness' command within a Prefect task, and optionally creates a Prefect artifact summarizing the dbt source freshness results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profiles_dir
|
Optional[Union[Path, str]]
|
The directory to search for the profiles.yml file. Setting this
appends the |
None
|
project_dir
|
Optional[Union[Path, str]]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
None
|
overwrite_profiles
|
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
False
|
dbt_cli_profile
|
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
None
|
create_summary_artifact
|
bool
|
If True, creates a Prefect artifact on the task run with the dbt source freshness results using the specified artifact key. Defaults to False. |
False
|
summary_artifact_key
|
str
|
The key under which to store the dbt source freshness results artifact in Prefect. Defaults to 'dbt-source-freshness-task-summary'. |
'dbt-source-freshness-task-summary'
|
extra_command_args
|
Optional[List[str]]
|
Additional command arguments to pass to the dbt source freshness command. |
None
|
stream_output
|
bool
|
If True, the output from the dbt command will be logged in Prefect as it happens. Defaults to True. |
True
|
from prefect import flow
from prefect_dbt.cli.commands import run_dbt_source_freshness
@flow
def dbt_test_flow():
run_dbt_source_freshness(
project_dir="/Users/test/my_dbt_project_dir",
extra_command_args=["--fail-fast"]
)
Raises:
Type | Description |
---|---|
ValueError
|
If required dbt_cli_profile is not provided when needed for profile writing. |
RuntimeError
|
If the dbt build fails for any reason, it will be indicated by the exception raised. |
Source code in prefect_dbt/cli/commands.py
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 |
|
run_dbt_test(profiles_dir=None, project_dir=None, overwrite_profiles=False, dbt_cli_profile=None, create_summary_artifact=False, summary_artifact_key='dbt-test-task-summary', extra_command_args=None, stream_output=True)
async
Executes the 'dbt test' command within a Prefect task, and optionally creates a Prefect artifact summarizing the dbt test results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profiles_dir
|
Optional[Union[Path, str]]
|
The directory to search for the profiles.yml file. Setting this
appends the |
None
|
project_dir
|
Optional[Union[Path, str]]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
None
|
overwrite_profiles
|
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
False
|
dbt_cli_profile
|
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
None
|
create_summary_artifact
|
bool
|
If True, creates a Prefect artifact on the task run with the dbt test results using the specified artifact key. Defaults to False. |
False
|
summary_artifact_key
|
str
|
The key under which to store the dbt test results artifact in Prefect. Defaults to 'dbt-test-task-summary'. |
'dbt-test-task-summary'
|
extra_command_args
|
Optional[List[str]]
|
Additional command arguments to pass to the dbt test command. |
None
|
stream_output
|
bool
|
If True, the output from the dbt command will be logged in Prefect as it happens. Defaults to True. |
True
|
from prefect import flow
from prefect_dbt.cli.tasks import dbt_test_task
@flow
def dbt_test_flow():
dbt_test_task(
project_dir="/Users/test/my_dbt_project_dir",
extra_command_args=["--model", "foo_model"]
)
Raises:
Type | Description |
---|---|
ValueError
|
If required dbt_cli_profile is not provided when needed for profile writing. |
RuntimeError
|
If the dbt build fails for any reason, it will be indicated by the exception raised. |
Source code in prefect_dbt/cli/commands.py
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 |
|
trigger_dbt_cli_command(command, profiles_dir=None, project_dir=None, overwrite_profiles=False, dbt_cli_profile=None, create_summary_artifact=False, summary_artifact_key='dbt-cli-command-summary', extra_command_args=None, stream_output=True)
async
Task for running dbt commands.
If no profiles.yml file is found or if overwrite_profiles flag is set to True, this will first generate a profiles.yml file in the profiles_dir directory. Then run the dbt CLI shell command.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
command
|
str
|
The dbt command to be executed. |
required |
profiles_dir
|
Optional[Union[Path, str]]
|
The directory to search for the profiles.yml file. Setting this
appends the |
None
|
project_dir
|
Optional[Union[Path, str]]
|
The directory to search for the dbt_project.yml file. Default is the current working directory and its parents. |
None
|
overwrite_profiles
|
bool
|
Whether the existing profiles.yml file under profiles_dir should be overwritten with a new profile. |
False
|
dbt_cli_profile
|
Optional[DbtCliProfile]
|
Profiles class containing the profile written to profiles.yml. Note! This is optional and will raise an error if profiles.yml already exists under profile_dir and overwrite_profiles is set to False. |
None
|
create_summary_artifact
|
bool
|
If True, creates a Prefect artifact on the task run with the dbt results using the specified artifact key. Defaults to False. |
False
|
summary_artifact_key
|
Optional[str]
|
The key under which to store the dbt results artifact in Prefect. Defaults to 'dbt-cli-command-summary'. |
'dbt-cli-command-summary'
|
extra_command_args
|
Optional[List[str]]
|
Additional command arguments to pass to the dbt command. These arguments get appended to the command that gets passed to the dbtRunner client. Example: extra_command_args=["--model", "foo_model"] |
None
|
stream_output
|
bool
|
If True, the output from the dbt command will be logged in Prefect as it happens. Defaults to True. |
True
|
Returns:
Name | Type | Description |
---|---|---|
last_line_cli_output |
str
|
The last line of the CLI output will be returned
if |
full_cli_output |
List[str]
|
Full CLI output will be returned if |
Examples:
Execute dbt debug
with a pre-populated profiles.yml.
from prefect import flow
from prefect_dbt.cli.commands import trigger_dbt_cli_command
@flow
def trigger_dbt_cli_command_flow():
result = trigger_dbt_cli_command("dbt debug")
return result
trigger_dbt_cli_command_flow()
Execute dbt debug
without a pre-populated profiles.yml.
from prefect import flow
from prefect_dbt.cli.credentials import DbtCliProfile
from prefect_dbt.cli.commands import trigger_dbt_cli_command
from prefect_dbt.cli.configs import SnowflakeTargetConfigs
from prefect_snowflake.credentials import SnowflakeCredentials
@flow
def trigger_dbt_cli_command_flow():
credentials = SnowflakeCredentials(
user="user",
password="password",
account="account.region.aws",
role="role",
)
connector = SnowflakeConnector(
schema="public",
database="database",
warehouse="warehouse",
credentials=credentials,
)
target_configs = SnowflakeTargetConfigs(
connector=connector
)
dbt_cli_profile = DbtCliProfile(
name="jaffle_shop",
target="dev",
target_configs=target_configs,
)
result = trigger_dbt_cli_command(
"dbt run",
overwrite_profiles=True,
dbt_cli_profile=dbt_cli_profile,
extra_command_args=["--model", "foo_model"]
)
return result
trigger_dbt_cli_command_flow()
Source code in prefect_dbt/cli/commands.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 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 119 120 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 152 153 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 |
|