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_r275168264
 
 

 ##########
 File path: airflow/contrib/operators/batch_nomad_operator.py
 ##########
 @@ -0,0 +1,97 @@
+# -*- 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 time
+
+from airflow.contrib.hooks.nomad_hook import NomadHook
+from airflow.exceptions import AirflowException
+from airflow.models import BaseOperator
+from airflow.utils import apply_defaults
+
+
+class NomadOperator(BaseOperator):
+    """
+    This module contains a Nomad Operator
+    which allows you to register and dispatch your nomad job,
+    """
+
+    completed_states = ['complete']
+    still_active_states = ['running', 'starting', 'pending', 'queued']
+    no_allocation_status = 'pending'
+
+    @apply_defaults
+    def __init__(self,
 
 Review comment:
   Please add the docstring for all the fields

----------------------------------------------------------------
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