Fokko commented on a change in pull request #2708: [AIRFLOW-1746] Add a Nomad 
operator to trigger job from Airflow
URL: https://github.com/apache/airflow/pull/2708#discussion_r275168255
 
 

 ##########
 File path: airflow/contrib/hooks/nomad_hook.py
 ##########
 @@ -0,0 +1,44 @@
+# -*- coding: utf-8 -*-
+#
+# Licensed 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.
+#
+
+
+import nomad
+
+from airflow.hooks.base_hook import BaseHook
+from airflow.utils.log.logging_mixin import LoggingMixin
+
+
+class NomadHook(BaseHook, LoggingMixin):
+    """ Hook to manage connection to nomad server
+        NOTE: this operator also relies on the python-nomad
+              package https://github.com/jrxFive/python-nomad
+    """
+
+    def __init__(self,
+                 nomad_conn_id='nomad_default',
+                 *args,
+                 **kwargs):
+        self.connection = self.get_connection(nomad_conn_id)
+        self.nomad_client = self.prepare_nomad_client(*args, **kwargs)
 
 Review comment:
   Please remove this from the constructor, we don't want to initialize the 
heavyweight objects right in the constructor.

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to