prefect_databricks.flows
¶
Module containing flows for interacting with Databricks
DatabricksJobInternalError
¶
Bases: Exception
Raised when Databricks jobs runs submit encounters internal error
Source code in prefect_databricks/flows.py
33 34 |
|
DatabricksJobRunTimedOut
¶
Bases: Exception
Raised when Databricks jobs runs does not complete in the configured max wait seconds
Source code in prefect_databricks/flows.py
37 38 39 40 41 |
|
DatabricksJobSkipped
¶
Bases: Exception
Raised when Databricks jobs runs submit skips
Source code in prefect_databricks/flows.py
29 30 |
|
DatabricksJobTerminated
¶
Bases: Exception
Raised when Databricks jobs runs submit terminates
Source code in prefect_databricks/flows.py
25 26 |
|
jobs_runs_submit_and_wait_for_completion
async
¶
Flow that triggers a job run and waits for the triggered run to complete.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
databricks_credentials |
DatabricksCredentials
|
Credentials to use for authentication with Databricks. |
required |
tasks |
List[RunSubmitTaskSettings]
|
Tasks to run, e.g.
|
None
|
run_name |
Optional[str]
|
An optional name for the run. The default value is |
None
|
git_source |
Optional[GitSource]
|
This functionality is in Public Preview. An optional specification for
a remote repository containing the notebooks used by this
job's notebook tasks. Key-values:
- git_url:
URL of the repository to be cloned by this job. The maximum
length is 300 characters, e.g.
|
None
|
timeout_seconds |
Optional[int]
|
An optional timeout applied to each run of this job. The default
behavior is to have no timeout, e.g. |
None
|
idempotency_token |
Optional[str]
|
An optional token that can be used to guarantee the idempotency of job
run requests. If a run with the provided token already
exists, the request does not create a new run but returns
the ID of the existing run instead. If a run with the
provided token is deleted, an error is returned. If you
specify the idempotency token, upon failure you can retry
until the request succeeds. Databricks guarantees that
exactly one run is launched with that idempotency token.
This token must have at most 64 characters. For more
information, see How to ensure idempotency for
jobs,
e.g. |
None
|
access_control_list |
Optional[List[AccessControlRequest]]
|
List of permissions to set on the job. |
None
|
max_wait_seconds |
int
|
Maximum number of seconds to wait for the entire flow to complete. |
900
|
poll_frequency_seconds |
int
|
Number of seconds to wait in between checks for run completion. |
10
|
**jobs_runs_submit_kwargs |
Dict[str, Any]
|
Additional keyword arguments to pass to |
{}
|
Returns:
Type | Description |
---|---|
Dict
|
A dictionary of task keys to its corresponding notebook output. |
Examples:
Submit jobs runs and wait.
from prefect import flow
from prefect_databricks import DatabricksCredentials
from prefect_databricks.flows import jobs_runs_submit_and_wait_for_completion
from prefect_databricks.models.jobs import (
AutoScale,
AwsAttributes,
JobTaskSettings,
NotebookTask,
NewCluster,
)
@flow
def jobs_runs_submit_and_wait_for_completion_flow(notebook_path, **base_parameters):
databricks_credentials = await DatabricksCredentials.load("BLOCK_NAME")
# specify new cluster settings
aws_attributes = AwsAttributes(
availability="SPOT",
zone_id="us-west-2a",
ebs_volume_type="GENERAL_PURPOSE_SSD",
ebs_volume_count=3,
ebs_volume_size=100,
)
auto_scale = AutoScale(min_workers=1, max_workers=2)
new_cluster = NewCluster(
aws_attributes=aws_attributes,
autoscale=auto_scale,
node_type_id="m4.large",
spark_version="10.4.x-scala2.12",
spark_conf={"spark.speculation": True},
)
# specify notebook to use and parameters to pass
notebook_task = NotebookTask(
notebook_path=notebook_path,
base_parameters=base_parameters,
)
# compile job task settings
job_task_settings = JobTaskSettings(
new_cluster=new_cluster,
notebook_task=notebook_task,
task_key="prefect-task"
)
multi_task_runs = jobs_runs_submit_and_wait_for_completion(
databricks_credentials=databricks_credentials,
run_name="prefect-job",
tasks=[job_task_settings]
)
return multi_task_runs
Source code in prefect_databricks/flows.py
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 218 219 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 |
|
jobs_runs_wait_for_completion
async
¶
Flow that triggers a job run and waits for the triggered run to complete.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
run_name |
Optional[str]
|
The name of the jobs runs task. |
None
|
multi_task_jobs_run_id |
The ID of the jobs runs task to watch. |
required | |
databricks_credentials |
DatabricksCredentials
|
Credentials to use for authentication with Databricks. |
required |
max_wait_seconds |
int
|
Maximum number of seconds to wait for the entire flow to complete. |
900
|
poll_frequency_seconds |
int
|
Number of seconds to wait in between checks for run completion. |
10
|
Returns:
Name | Type | Description |
---|---|---|
jobs_runs_state |
A dict containing the jobs runs life cycle state and message. |
|
jobs_runs_metadata |
A dict containing IDs of the jobs runs tasks. |
Example
Waits for completion on jobs runs.
from prefect import flow
from prefect_databricks import DatabricksCredentials
from prefect_databricks.flows import jobs_runs_wait_for_completion
@flow
def jobs_runs_wait_for_completion_flow():
databricks_credentials = DatabricksCredentials.load("BLOCK_NAME")
return jobs_runs_wait_for_completion(
multi_task_jobs_run_id=45429,
databricks_credentials=databricks_credentials,
run_name="my_run_name",
max_wait_seconds=1800, # 30 minutes
poll_frequency_seconds=120, # 2 minutes
)
Source code in prefect_databricks/flows.py
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 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 |
|