This is an automated email from the ASF dual-hosted git repository.
uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 6becb70316 SparkSubmitOperator: rename spark_conn_id to conn_id
(#31952)
6becb70316 is described below
commit 6becb7031618867bc253aefc9e3e216629575d2d
Author: Andre (&re) <[email protected]>
AuthorDate: Fri Jun 16 14:22:40 2023 +0700
SparkSubmitOperator: rename spark_conn_id to conn_id (#31952)
---
airflow/providers/apache/spark/operators/spark_submit.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/providers/apache/spark/operators/spark_submit.py
b/airflow/providers/apache/spark/operators/spark_submit.py
index e335f056b1..c2a5dfc8b2 100644
--- a/airflow/providers/apache/spark/operators/spark_submit.py
+++ b/airflow/providers/apache/spark/operators/spark_submit.py
@@ -38,7 +38,7 @@ class SparkSubmitOperator(BaseOperator):
:param application: The application that submitted as a job, either jar or
py file. (templated)
:param conf: Arbitrary Spark configuration properties (templated)
- :param spark_conn_id: The :ref:`spark connection id
<howto/connection:spark>` as configured
+ :param conn_id: The :ref:`spark connection id <howto/connection:spark>` as
configured
in Airflow administration. When an invalid connection_id is supplied,
it will default to yarn.
:param files: Upload additional files to the executor running the job,
separated by a
comma. Files will be placed in the working directory of each
executor.