Created
November 30, 2021 04:31
-
-
Save kshitijcode/a6047c645a794f370e4d455ada1b7972 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table_raw = "integrationtest_users" | |
table_processed = "processed_integrationtest_user" | |
# Trigger the Master Pipeline for Processed to processed Zone | |
masterpipeline_processed_params = { | |
"lookUpTables": [{ | |
"SourceTableSchemaName": "dbo", | |
"SourceTableName": table_raw, | |
"SinkTableSchemaName": "dbo", | |
"SinkTableName": table_processed, | |
"HasIncrementalData": "false" | |
}], | |
"sourceDatabase": database, | |
} | |
pipeline_name = constants.COPY_TO_DEDICATE_SQL_PIPELINE | |
print(f"{pipeline_name} Parameters : {masterpipeline_processed_params}\n") | |
pipeline_run_result = pipelineutils.run_and_observe_pipeline( | |
azure_credential, synapse_endpoint, pipeline_name, masterpipeline_processed_params) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment