SparkJobEntry 클래스
Spark 작업에 대한 항목입니다.
- 상속
-
azure.ai.ml.entities._mixins.RestTranslatableMixinSparkJobEntry
생성자
SparkJobEntry(*, entry: str, type: str = 'SparkJobPythonEntry')
키워드 전용 매개 변수
Name | Description |
---|---|
entry
|
파일 또는 클래스 진입점입니다. |
type
|
항목 유형입니다. 허용되는 값은 SparkJobEntryType.SPARK_JOB_FILE_ENTRY 또는 SparkJobEntryType.SPARK_JOB_CLASS_ENTRY. 기본값은 SparkJobEntryType.SPARK_JOB_FILE_ENTRY. 기본값: SparkJobPythonEntry
|
예제
SparkComponent 만들기.
from azure.ai.ml.entities import SparkComponent
component = SparkComponent(
name="add_greeting_column_spark_component",
display_name="Aml Spark add greeting column test module",
description="Aml Spark add greeting column test module",
version="1",
inputs={
"file_input": {"type": "uri_file", "mode": "direct"},
},
driver_cores=2,
driver_memory="1g",
executor_cores=1,
executor_memory="1g",
executor_instances=1,
code="./src",
entry={"file": "add_greeting_column.py"},
py_files=["utils.zip"],
files=["my_files.txt"],
args="--file_input ${{inputs.file_input}}",
base_path="./sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/spark_job_in_pipeline",
)
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Python