MlflowAzureMLHook¶
kedro_azureml_pipeline.hooks.MlflowAzureMLHook
¶
Coordinates kedro-mlflow inside Azure ML pipeline component jobs.
Lifecycle
after_context_created(tryfirst): pre-setsMLFLOW_EXPERIMENT_NAMEso kedro-mlflow picks it up.before_pipeline_run: tags the active MLflow child run with node name, pipeline name, and kedro environment.on_pipeline_error: tags the run with error information.
See Also ¶
- AzureMLPipelineGenerator : Injects MLflow env vars.
- AzureMLLocalRunHook : Companion hook for dataset config.
Source Code ¶
Source code in src/kedro_azureml_pipeline/hooks/mlflow.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 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 | |
Methods ¶
after_context_created(context)
¶
Pre-set MLFLOW_EXPERIMENT_NAME for kedro-mlflow.
Parameters ¶
| Name | Type | Description | Default |
|---|---|---|---|
context
|
KedroContext
|
Kedro project context. |
required |
Source Code ¶
Source code in src/kedro_azureml_pipeline/hooks/mlflow.py
before_pipeline_run(run_params, pipeline, catalog)
¶
Tag the active MLflow run with Kedro metadata.
Parameters ¶
| Name | Type | Description | Default |
|---|---|---|---|
run_params
|
dict
|
Parameters passed to the run command. |
required |
pipeline
|
Pipeline
|
Pipeline about to be run. |
required |
catalog
|
DataCatalog
|
Data catalog. |
required |
Source Code ¶
Source code in src/kedro_azureml_pipeline/hooks/mlflow.py
on_pipeline_error(error, run_params, pipeline, catalog)
¶
Tag the MLflow run with error details.
Parameters ¶
| Name | Type | Description | Default |
|---|---|---|---|
error
|
Exception
|
The error that occurred. |
required |
run_params
|
dict
|
Parameters passed to the run command. |
required |
pipeline
|
Pipeline
|
Pipeline that failed. |
required |
catalog
|
DataCatalog
|
Data catalog. |
required |