client
ExecutorInstances
dataclass
Number of executors to request
Attributes:
Name | Type | Description |
---|---|---|
min |
int | None
|
Minimum number of executors. If provided, dynamic allocation is enabled |
max |
int | None
|
Maximum number of executors. If provided, dynamic allocation is enabled |
initial |
int | None
|
Initial number of executors. If max and min are not provided, defaults to 2, dynamic allocation will be disabled and the number of executors will be fixed. |
Source code in spark_on_k8s/client.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
PodResources
dataclass
Resources to request for the Spark driver and executors
Attributes:
Name | Type | Description |
---|---|---|
cpu |
int
|
Number of CPU cores to request |
memory |
int
|
Amount of memory to request in MB |
memory_overhead |
int
|
Amount of memory overhead to request in MB |
Source code in spark_on_k8s/client.py
42 43 44 45 46 47 48 49 50 51 52 53 54 |
|
SparkAppWait
Bases: str
, Enum
Enum for the Spark app waiter options
Source code in spark_on_k8s/client.py
34 35 36 37 38 39 |
|
SparkOnK8S
Bases: LoggingMixin
Client for submitting Spark apps to Kubernetes
Examples:
>>> from spark_on_k8s.client import SparkOnK8S
>>> spark = SparkOnK8S()
>>> spark.submit_app(
... image="husseinawala/spark:v3.5.0",
... app_path="local:///opt/spark/examples/jars/spark-examples_2.12-3.5.0.jar",
... class_name="org.apache.spark.examples.SparkPi",
... app_name="spark-pi",
... app_arguments=["1000"],
... namespace="spark",
... service_account="spark",
... app_waiter="log",
... )
Parameters:
Name | Type | Description | Default |
---|---|---|---|
k8s_client_manager |
KubernetesClientManager | None
|
Kubernetes client manager to use for creating Kubernetes clients |
None
|
logger_name |
str | None
|
Name of the logger to use for logging, defaults to "SparkOnK8S" |
None
|
Source code in spark_on_k8s/client.py
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 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 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 470 471 472 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 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 |
|
submit_app(*, image=NOTSET, app_path=NOTSET, namespace=NOTSET, service_account=NOTSET, app_name=NOTSET, spark_conf=NOTSET, class_name=NOTSET, packages=NOTSET, app_arguments=NOTSET, app_id_suffix=NOTSET, app_waiter=NOTSET, image_pull_policy=NOTSET, ui_reverse_proxy=NOTSET, driver_resources=NOTSET, executor_resources=NOTSET, executor_instances=NOTSET, should_print=NOTSET, secret_values=NOTSET, driver_ephemeral_configmaps_volumes=NOTSET, driver_env_vars_from_secrets=NOTSET, volumes=NOTSET, driver_volume_mounts=NOTSET, executor_volume_mounts=NOTSET, driver_node_selector=NOTSET, executor_node_selector=NOTSET, driver_annotations=NOTSET, executor_annotations=NOTSET, driver_labels=NOTSET, executor_labels=NOTSET, driver_tolerations=NOTSET, executor_pod_template_path=NOTSET, startup_timeout=NOTSET)
Submit a Spark app to Kubernetes
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image |
str | ArgNotSet
|
Docker image to use for the Spark driver and executors |
NOTSET
|
app_path |
str | ArgNotSet
|
Path to the application JAR / Python / R file |
NOTSET
|
namespace |
str | ArgNotSet
|
Kubernetes namespace to use, defaults to "default" |
NOTSET
|
service_account |
str | ArgNotSet
|
Kubernetes service account to use for the Spark driver, defaults to "spark" |
NOTSET
|
app_name |
str | ArgNotSet
|
Name of the Spark application, defaults to a generated name as
|
NOTSET
|
spark_conf |
dict[str, str] | ArgNotSet
|
Dictionary of spark configuration to pass to the application |
NOTSET
|
class_name |
str | ArgNotSet
|
Name of the class to execute |
NOTSET
|
packages |
list[str] | ArgNotSet
|
List of maven coordinates of jars to include in the classpath |
NOTSET
|
app_arguments |
list[str] | ArgNotSet
|
List of arguments to pass to the application |
NOTSET
|
app_id_suffix |
Callable[[], str] | ArgNotSet
|
Function to generate a suffix for the application ID, defaults to
|
NOTSET
|
app_waiter |
Literal['no_wait', 'wait', 'log'] | ArgNotSet
|
How to wait for the app to finish. One of "no_wait", "wait", or "log" |
NOTSET
|
image_pull_policy |
Literal['Always', 'Never', 'IfNotPresent'] | ArgNotSet
|
Image pull policy for the driver and executors, defaults to "IfNotPresent" |
NOTSET
|
ui_reverse_proxy |
bool | ArgNotSet
|
Whether to use a reverse proxy for the Spark UI, defaults to False |
NOTSET
|
driver_resources |
PodResources | ArgNotSet
|
Resources to request for the Spark driver. Defaults to 1 CPU core, 1Gi of memory and512Mi of memory overhead |
NOTSET
|
executor_resources |
PodResources | ArgNotSet
|
Resources to request for the Spark executors. Defaults to 1 CPU core, 1Gi of memory and 512Mi of memory overhead |
NOTSET
|
executor_instances |
ExecutorInstances | ArgNotSet
|
Number of executors to request. If max and min are not provided, dynamic allocation will be disabled and the number of executors will be fixed to initial or 2 if initial is not provided. If max or min or both are provided, dynamic allocation will be enabled and the number of executors will be between min and max (inclusive), and initial will be the initial number of executors with a default of 0. |
NOTSET
|
should_print |
bool | ArgNotSet
|
Whether to print logs instead of logging them, defaults to False |
NOTSET
|
secret_values |
dict[str, str] | ArgNotSet
|
Dictionary of secret values to pass to the application as environment variables |
NOTSET
|
driver_ephemeral_configmaps_volumes |
list[ConfigMap] | ArgNotSet
|
List of ephemeral configmaps to create for the application driver |
NOTSET
|
driver_env_vars_from_secrets |
list[str] | ArgNotSet
|
List of secret names to load environment variables from for the driver |
NOTSET
|
volumes |
list[V1Volume] | ArgNotSet
|
List of volumes to mount to the driver and/or executors |
NOTSET
|
driver_volume_mounts |
list[V1VolumeMount] | ArgNotSet
|
List of volume mounts to mount to the driver |
NOTSET
|
executor_volume_mounts |
list[V1VolumeMount] | ArgNotSet
|
List of volume mounts to mount to the executors |
NOTSET
|
driver_node_selector |
dict[str, str] | ArgNotSet
|
Node selector for the driver |
NOTSET
|
executor_node_selector |
dict[str, str] | ArgNotSet
|
Node selector for the executors |
NOTSET
|
driver_tolerations |
list[V1Toleration] | ArgNotSet
|
List of tolerations for the driver |
NOTSET
|
executor_pod_template_path |
str | ArgNotSet
|
Path to the executor pod template file |
NOTSET
|
startup_timeout |
int | ArgNotSet
|
Timeout in seconds to wait for the application to start |
NOTSET
|
Returns:
Type | Description |
---|---|
str
|
Name of the Spark application pod |
Source code in spark_on_k8s/client.py
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 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 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 |
|
default_app_id_suffix()
Default function to generate a suffix for the application ID
Returns:
Type | Description |
---|---|
str
|
the current timestamp in the format %Y%m%d%H%M%S prefixed with a dash (e.g. -20240101123456) |
Source code in spark_on_k8s/client.py
25 26 27 28 29 30 31 |
|