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 2018/09/05 23:17:22 UTC

[GitHub] ndmar commented on a change in pull request #2708: [AIRFLOW-1746] Add a Nomad operator to trigger job from Airflow

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

 ##########
 File path: airflow/contrib/hooks/nomad_hook.py
 ##########
 @@ -0,0 +1,38 @@
+# -*- 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.
+#
+
+""" Hook to manage connection to nomad server
+    NOTE: this operator also relies on the python-nomad
+          package https://github.com/jrxFive/python-nomad """
+
+import nomad
+
+from airflow.hooks.base_hook import BaseHook
+from airflow.utils.log.logging_mixin import LoggingMixin
+
+
+class NomadHook(BaseHook, LoggingMixin):
+    def __init__(self,
+                 nomad_conn_id='nomad_default',
+                 *args,
+                 **kwargs):
+        self.connection = self.get_connection(nomad_conn_id)
+        self.nomad_client = self.get_nomad_client(*args, **kwargs)
+
+    def get_nomad_client(self, *args, **kwargs):
 
 Review comment:
   From what I understand from a quick check, the `get_conn` seems to be intended to be the convention for retrieving a connection for the an external resource, and it typically uses an airflow connection to supply the connection details.  It appears that the proposed function here would does that, it's just named `get_nomad_client` instead.
   
   In this particular case, it seems that simply renaming `get_nomad_client` to `get_conn` would be sufficient. Does that sound right?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


With regards,
Apache Git Services