You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/01/25 13:33:53 UTC

[GitHub] [airflow] kaxil commented on a change in pull request #13798: Created rule for SparkJDBCOperator class conn_id

kaxil commented on a change in pull request #13798:
URL: https://github.com/apache/airflow/pull/13798#discussion_r563725388



##########
File path: airflow/upgrade/rules/spark_jdbc_operator_conn_id_rule.py
##########
@@ -0,0 +1,45 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+from airflow.models import Connection
+from airflow.upgrade.rules.base_rule import BaseRule
+from airflow.utils.db import provide_session
+
+
+class SparkJDBCOperatorConnIdRule(BaseRule):
+    """SparkJDBCOperatorConnIdRule class to ease upgrade to Airflow 2.0"""
+
+    title = "Check Spark JDBC Operator default connection name"
+
+    description = """\
+In Airflow 1.10.x, the default value for SparkJDBCOperator class 'conn_id' is 'spark-default'.
+From Airflow 2.0, it has been changed to 'spark_default' to conform with the naming conventions
+of all other connection names.
+    """
+
+    @provide_session
+    def check(self, session=None):
+        for conn in session.query(Connection.conn_id):
+            if conn.conn_id == 'spark-default':
+                return (
+                    "Deprecation Warning: From Airflow 2.0, SparkJDBCOperator class 'conn_id' "
+                    "value has been changed to 'spark_default' to conform with the naming "
+                    "conventions of all other connection names."
+                    "See link below for details:"
+                    "https://github.com/apache/airflow/blob/master/"
+                    "UPDATING.md#sparkjdbchook-default-connection"

Review comment:
       It is not clear from the description of what actions a user needs to perform if the check fails




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org