Statistics
| Branch: | Tag: | Revision:

root / lib / jqueue.py @ 0cb94105

History | View | Annotate | Download (16.8 kB)

1 498ae1cc Iustin Pop
#
2 498ae1cc Iustin Pop
#
3 498ae1cc Iustin Pop
4 498ae1cc Iustin Pop
# Copyright (C) 2006, 2007 Google Inc.
5 498ae1cc Iustin Pop
#
6 498ae1cc Iustin Pop
# This program is free software; you can redistribute it and/or modify
7 498ae1cc Iustin Pop
# it under the terms of the GNU General Public License as published by
8 498ae1cc Iustin Pop
# the Free Software Foundation; either version 2 of the License, or
9 498ae1cc Iustin Pop
# (at your option) any later version.
10 498ae1cc Iustin Pop
#
11 498ae1cc Iustin Pop
# This program is distributed in the hope that it will be useful, but
12 498ae1cc Iustin Pop
# WITHOUT ANY WARRANTY; without even the implied warranty of
13 498ae1cc Iustin Pop
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 498ae1cc Iustin Pop
# General Public License for more details.
15 498ae1cc Iustin Pop
#
16 498ae1cc Iustin Pop
# You should have received a copy of the GNU General Public License
17 498ae1cc Iustin Pop
# along with this program; if not, write to the Free Software
18 498ae1cc Iustin Pop
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 498ae1cc Iustin Pop
# 02110-1301, USA.
20 498ae1cc Iustin Pop
21 498ae1cc Iustin Pop
22 498ae1cc Iustin Pop
"""Module implementing the job queue handling."""
23 498ae1cc Iustin Pop
24 f1da30e6 Michael Hanselmann
import os
25 e2715f69 Michael Hanselmann
import logging
26 e2715f69 Michael Hanselmann
import threading
27 f1da30e6 Michael Hanselmann
import errno
28 f1da30e6 Michael Hanselmann
import re
29 f1048938 Iustin Pop
import time
30 498ae1cc Iustin Pop
31 e2715f69 Michael Hanselmann
from ganeti import constants
32 f1da30e6 Michael Hanselmann
from ganeti import serializer
33 e2715f69 Michael Hanselmann
from ganeti import workerpool
34 f1da30e6 Michael Hanselmann
from ganeti import opcodes
35 7a1ecaed Iustin Pop
from ganeti import errors
36 e2715f69 Michael Hanselmann
from ganeti import mcpu
37 7996a135 Iustin Pop
from ganeti import utils
38 c3f0a12f Iustin Pop
from ganeti import rpc
39 e2715f69 Michael Hanselmann
40 e2715f69 Michael Hanselmann
41 e2715f69 Michael Hanselmann
JOBQUEUE_THREADS = 5
42 e2715f69 Michael Hanselmann
43 498ae1cc Iustin Pop
44 e2715f69 Michael Hanselmann
class _QueuedOpCode(object):
45 e2715f69 Michael Hanselmann
  """Encasulates an opcode object.
46 e2715f69 Michael Hanselmann

47 307149a8 Iustin Pop
  Access is synchronized by the '_lock' attribute.
48 e2715f69 Michael Hanselmann

49 f1048938 Iustin Pop
  The 'log' attribute holds the execution log and consists of tuples
50 f1048938 Iustin Pop
  of the form (timestamp, level, message).
51 f1048938 Iustin Pop

52 e2715f69 Michael Hanselmann
  """
53 e2715f69 Michael Hanselmann
  def __init__(self, op):
54 f1048938 Iustin Pop
    self.__Setup(op, constants.OP_STATUS_QUEUED, None, [])
55 f1da30e6 Michael Hanselmann
56 f1048938 Iustin Pop
  def __Setup(self, input_, status, result, log):
57 307149a8 Iustin Pop
    self._lock = threading.Lock()
58 f1048938 Iustin Pop
    self.input = input_
59 f1da30e6 Michael Hanselmann
    self.status = status
60 f1da30e6 Michael Hanselmann
    self.result = result
61 f1048938 Iustin Pop
    self.log = log
62 f1da30e6 Michael Hanselmann
63 f1da30e6 Michael Hanselmann
  @classmethod
64 f1da30e6 Michael Hanselmann
  def Restore(cls, state):
65 f1da30e6 Michael Hanselmann
    obj = object.__new__(cls)
66 f1da30e6 Michael Hanselmann
    obj.__Setup(opcodes.OpCode.LoadOpCode(state["input"]),
67 f1048938 Iustin Pop
                state["status"], state["result"], state["log"])
68 f1da30e6 Michael Hanselmann
    return obj
69 f1da30e6 Michael Hanselmann
70 f1da30e6 Michael Hanselmann
  @utils.LockedMethod
71 f1da30e6 Michael Hanselmann
  def Serialize(self):
72 f1da30e6 Michael Hanselmann
    return {
73 f1da30e6 Michael Hanselmann
      "input": self.input.__getstate__(),
74 f1da30e6 Michael Hanselmann
      "status": self.status,
75 f1da30e6 Michael Hanselmann
      "result": self.result,
76 f1048938 Iustin Pop
      "log": self.log,
77 f1da30e6 Michael Hanselmann
      }
78 307149a8 Iustin Pop
79 307149a8 Iustin Pop
  @utils.LockedMethod
80 af30b2fd Michael Hanselmann
  def GetInput(self):
81 af30b2fd Michael Hanselmann
    """Returns the original opcode.
82 af30b2fd Michael Hanselmann

83 af30b2fd Michael Hanselmann
    """
84 af30b2fd Michael Hanselmann
    return self.input
85 af30b2fd Michael Hanselmann
86 af30b2fd Michael Hanselmann
  @utils.LockedMethod
87 307149a8 Iustin Pop
  def SetStatus(self, status, result):
88 307149a8 Iustin Pop
    """Update the opcode status and result.
89 307149a8 Iustin Pop

90 307149a8 Iustin Pop
    """
91 307149a8 Iustin Pop
    self.status = status
92 307149a8 Iustin Pop
    self.result = result
93 307149a8 Iustin Pop
94 307149a8 Iustin Pop
  @utils.LockedMethod
95 307149a8 Iustin Pop
  def GetStatus(self):
96 307149a8 Iustin Pop
    """Get the opcode status.
97 307149a8 Iustin Pop

98 307149a8 Iustin Pop
    """
99 307149a8 Iustin Pop
    return self.status
100 307149a8 Iustin Pop
101 307149a8 Iustin Pop
  @utils.LockedMethod
102 307149a8 Iustin Pop
  def GetResult(self):
103 307149a8 Iustin Pop
    """Get the opcode result.
104 307149a8 Iustin Pop

105 307149a8 Iustin Pop
    """
106 307149a8 Iustin Pop
    return self.result
107 e2715f69 Michael Hanselmann
108 f1048938 Iustin Pop
  @utils.LockedMethod
109 f1048938 Iustin Pop
  def Log(self, *args):
110 f1048938 Iustin Pop
    """Append a log entry.
111 f1048938 Iustin Pop

112 f1048938 Iustin Pop
    """
113 f1048938 Iustin Pop
    assert len(args) < 2
114 f1048938 Iustin Pop
115 f1048938 Iustin Pop
    if len(args) == 1:
116 f1048938 Iustin Pop
      log_type = constants.ELOG_MESSAGE
117 f1048938 Iustin Pop
      log_msg = args[0]
118 f1048938 Iustin Pop
    else:
119 f1048938 Iustin Pop
      log_type, log_msg = args
120 f1048938 Iustin Pop
    self.log.append((time.time(), log_type, log_msg))
121 f1048938 Iustin Pop
122 f1048938 Iustin Pop
  @utils.LockedMethod
123 f1048938 Iustin Pop
  def RetrieveLog(self, start_at=0):
124 f1048938 Iustin Pop
    """Retrieve (a part of) the execution log.
125 f1048938 Iustin Pop

126 f1048938 Iustin Pop
    """
127 f1048938 Iustin Pop
    return self.log[start_at:]
128 f1048938 Iustin Pop
129 e2715f69 Michael Hanselmann
130 e2715f69 Michael Hanselmann
class _QueuedJob(object):
131 e2715f69 Michael Hanselmann
  """In-memory job representation.
132 e2715f69 Michael Hanselmann

133 e2715f69 Michael Hanselmann
  This is what we use to track the user-submitted jobs.
134 e2715f69 Michael Hanselmann

135 e2715f69 Michael Hanselmann
  """
136 f1da30e6 Michael Hanselmann
  def __init__(self, storage, job_id, ops):
137 e2715f69 Michael Hanselmann
    if not ops:
138 e2715f69 Michael Hanselmann
      # TODO
139 e2715f69 Michael Hanselmann
      raise Exception("No opcodes")
140 e2715f69 Michael Hanselmann
141 f1048938 Iustin Pop
    self.__Setup(storage, job_id, [_QueuedOpCode(op) for op in ops], -1)
142 e2715f69 Michael Hanselmann
143 f1048938 Iustin Pop
  def __Setup(self, storage, job_id, ops, run_op_index):
144 f1048938 Iustin Pop
    self._lock = threading.Lock()
145 f1da30e6 Michael Hanselmann
    self.storage = storage
146 f1da30e6 Michael Hanselmann
    self.id = job_id
147 f1da30e6 Michael Hanselmann
    self._ops = ops
148 f1048938 Iustin Pop
    self.run_op_index = run_op_index
149 f1da30e6 Michael Hanselmann
150 f1da30e6 Michael Hanselmann
  @classmethod
151 f1da30e6 Michael Hanselmann
  def Restore(cls, storage, state):
152 f1da30e6 Michael Hanselmann
    obj = object.__new__(cls)
153 f1048938 Iustin Pop
    op_list = [_QueuedOpCode.Restore(op_state) for op_state in state["ops"]]
154 f1048938 Iustin Pop
    obj.__Setup(storage, state["id"], op_list, state["run_op_index"])
155 f1da30e6 Michael Hanselmann
    return obj
156 f1da30e6 Michael Hanselmann
157 f1da30e6 Michael Hanselmann
  def Serialize(self):
158 f1da30e6 Michael Hanselmann
    return {
159 f1da30e6 Michael Hanselmann
      "id": self.id,
160 f1da30e6 Michael Hanselmann
      "ops": [op.Serialize() for op in self._ops],
161 f1048938 Iustin Pop
      "run_op_index": self.run_op_index,
162 f1da30e6 Michael Hanselmann
      }
163 f1da30e6 Michael Hanselmann
164 f1da30e6 Michael Hanselmann
  def SetUnclean(self, msg):
165 f1da30e6 Michael Hanselmann
    try:
166 f1da30e6 Michael Hanselmann
      for op in self._ops:
167 f1da30e6 Michael Hanselmann
        op.SetStatus(constants.OP_STATUS_ERROR, msg)
168 f1da30e6 Michael Hanselmann
    finally:
169 f1da30e6 Michael Hanselmann
      self.storage.UpdateJob(self)
170 e2715f69 Michael Hanselmann
171 307149a8 Iustin Pop
  def GetStatus(self):
172 e2715f69 Michael Hanselmann
    status = constants.JOB_STATUS_QUEUED
173 e2715f69 Michael Hanselmann
174 e2715f69 Michael Hanselmann
    all_success = True
175 e2715f69 Michael Hanselmann
    for op in self._ops:
176 307149a8 Iustin Pop
      op_status = op.GetStatus()
177 307149a8 Iustin Pop
      if op_status == constants.OP_STATUS_SUCCESS:
178 e2715f69 Michael Hanselmann
        continue
179 e2715f69 Michael Hanselmann
180 e2715f69 Michael Hanselmann
      all_success = False
181 e2715f69 Michael Hanselmann
182 307149a8 Iustin Pop
      if op_status == constants.OP_STATUS_QUEUED:
183 e2715f69 Michael Hanselmann
        pass
184 307149a8 Iustin Pop
      elif op_status == constants.OP_STATUS_RUNNING:
185 e2715f69 Michael Hanselmann
        status = constants.JOB_STATUS_RUNNING
186 f1da30e6 Michael Hanselmann
      elif op_status == constants.OP_STATUS_ERROR:
187 f1da30e6 Michael Hanselmann
        status = constants.JOB_STATUS_ERROR
188 f1da30e6 Michael Hanselmann
        # The whole job fails if one opcode failed
189 f1da30e6 Michael Hanselmann
        break
190 e2715f69 Michael Hanselmann
191 e2715f69 Michael Hanselmann
    if all_success:
192 e2715f69 Michael Hanselmann
      status = constants.JOB_STATUS_SUCCESS
193 e2715f69 Michael Hanselmann
194 e2715f69 Michael Hanselmann
    return status
195 e2715f69 Michael Hanselmann
196 f1048938 Iustin Pop
  @utils.LockedMethod
197 f1048938 Iustin Pop
  def GetRunOpIndex(self):
198 f1048938 Iustin Pop
    return self.run_op_index
199 f1048938 Iustin Pop
200 e2715f69 Michael Hanselmann
  def Run(self, proc):
201 e2715f69 Michael Hanselmann
    """Job executor.
202 e2715f69 Michael Hanselmann

203 e2715f69 Michael Hanselmann
    This functions processes a this job in the context of given processor
204 e2715f69 Michael Hanselmann
    instance.
205 e2715f69 Michael Hanselmann

206 e2715f69 Michael Hanselmann
    Args:
207 e2715f69 Michael Hanselmann
    - proc: Ganeti Processor to run the job with
208 e2715f69 Michael Hanselmann

209 e2715f69 Michael Hanselmann
    """
210 e2715f69 Michael Hanselmann
    try:
211 c8549bfd Michael Hanselmann
      count = len(self._ops)
212 c8549bfd Michael Hanselmann
      for idx, op in enumerate(self._ops):
213 e2715f69 Michael Hanselmann
        try:
214 307149a8 Iustin Pop
          logging.debug("Op %s/%s: Starting %s", idx + 1, count, op)
215 f1048938 Iustin Pop
216 f1048938 Iustin Pop
          self._lock.acquire()
217 f1048938 Iustin Pop
          try:
218 f1048938 Iustin Pop
            self.run_op_index = idx
219 f1048938 Iustin Pop
          finally:
220 f1048938 Iustin Pop
            self._lock.release()
221 f1048938 Iustin Pop
222 307149a8 Iustin Pop
          op.SetStatus(constants.OP_STATUS_RUNNING, None)
223 f1da30e6 Michael Hanselmann
          self.storage.UpdateJob(self)
224 e2715f69 Michael Hanselmann
225 f1048938 Iustin Pop
          result = proc.ExecOpCode(op.input, op.Log)
226 e2715f69 Michael Hanselmann
227 307149a8 Iustin Pop
          op.SetStatus(constants.OP_STATUS_SUCCESS, result)
228 f1da30e6 Michael Hanselmann
          self.storage.UpdateJob(self)
229 307149a8 Iustin Pop
          logging.debug("Op %s/%s: Successfully finished %s",
230 307149a8 Iustin Pop
                        idx + 1, count, op)
231 e2715f69 Michael Hanselmann
        except Exception, err:
232 f1da30e6 Michael Hanselmann
          try:
233 f1da30e6 Michael Hanselmann
            op.SetStatus(constants.OP_STATUS_ERROR, str(err))
234 f1da30e6 Michael Hanselmann
            logging.debug("Op %s/%s: Error in %s", idx + 1, count, op)
235 f1da30e6 Michael Hanselmann
          finally:
236 f1da30e6 Michael Hanselmann
            self.storage.UpdateJob(self)
237 e2715f69 Michael Hanselmann
          raise
238 e2715f69 Michael Hanselmann
239 e2715f69 Michael Hanselmann
    except errors.GenericError, err:
240 e2715f69 Michael Hanselmann
      logging.error("ganeti exception %s", exc_info=err)
241 e2715f69 Michael Hanselmann
    except Exception, err:
242 e2715f69 Michael Hanselmann
      logging.error("unhandled exception %s", exc_info=err)
243 e2715f69 Michael Hanselmann
    except:
244 e2715f69 Michael Hanselmann
      logging.error("unhandled unknown exception %s", exc_info=err)
245 e2715f69 Michael Hanselmann
246 e2715f69 Michael Hanselmann
247 e2715f69 Michael Hanselmann
class _JobQueueWorker(workerpool.BaseWorker):
248 e2715f69 Michael Hanselmann
  def RunTask(self, job):
249 e2715f69 Michael Hanselmann
    logging.debug("Worker %s processing job %s",
250 e2715f69 Michael Hanselmann
                  self.worker_id, job.id)
251 e2715f69 Michael Hanselmann
    # TODO: feedback function
252 f1048938 Iustin Pop
    proc = mcpu.Processor(self.pool.context)
253 e2715f69 Michael Hanselmann
    try:
254 e2715f69 Michael Hanselmann
      job.Run(proc)
255 e2715f69 Michael Hanselmann
    finally:
256 e2715f69 Michael Hanselmann
      logging.debug("Worker %s finished job %s, status = %s",
257 e2715f69 Michael Hanselmann
                    self.worker_id, job.id, job.GetStatus())
258 e2715f69 Michael Hanselmann
259 e2715f69 Michael Hanselmann
260 e2715f69 Michael Hanselmann
class _JobQueueWorkerPool(workerpool.WorkerPool):
261 e2715f69 Michael Hanselmann
  def __init__(self, context):
262 e2715f69 Michael Hanselmann
    super(_JobQueueWorkerPool, self).__init__(JOBQUEUE_THREADS,
263 e2715f69 Michael Hanselmann
                                              _JobQueueWorker)
264 e2715f69 Michael Hanselmann
    self.context = context
265 e2715f69 Michael Hanselmann
266 e2715f69 Michael Hanselmann
267 ce594241 Michael Hanselmann
class JobStorageBase(object):
268 ce594241 Michael Hanselmann
  def __init__(self, id_prefix):
269 ce594241 Michael Hanselmann
    self.id_prefix = id_prefix
270 ce594241 Michael Hanselmann
271 ce594241 Michael Hanselmann
    if id_prefix:
272 ce594241 Michael Hanselmann
      prefix_pattern = re.escape("%s-" % id_prefix)
273 ce594241 Michael Hanselmann
    else:
274 ce594241 Michael Hanselmann
      prefix_pattern = ""
275 ce594241 Michael Hanselmann
276 ce594241 Michael Hanselmann
    # Apart from the prefix, all job IDs are numeric
277 ce594241 Michael Hanselmann
    self._re_job_id = re.compile(r"^%s\d+$" % prefix_pattern)
278 ce594241 Michael Hanselmann
279 ce594241 Michael Hanselmann
  def OwnsJobId(self, job_id):
280 ce594241 Michael Hanselmann
    return self._re_job_id.match(job_id)
281 ce594241 Michael Hanselmann
282 ce594241 Michael Hanselmann
  def FormatJobID(self, job_id):
283 ce594241 Michael Hanselmann
    if not isinstance(job_id, (int, long)):
284 ce594241 Michael Hanselmann
      raise errors.ProgrammerError("Job ID '%s' not numeric" % job_id)
285 ce594241 Michael Hanselmann
    if job_id < 0:
286 ce594241 Michael Hanselmann
      raise errors.ProgrammerError("Job ID %s is negative" % job_id)
287 ce594241 Michael Hanselmann
288 ce594241 Michael Hanselmann
    if self.id_prefix:
289 ce594241 Michael Hanselmann
      prefix = "%s-" % self.id_prefix
290 ce594241 Michael Hanselmann
    else:
291 ce594241 Michael Hanselmann
      prefix = ""
292 ce594241 Michael Hanselmann
293 ce594241 Michael Hanselmann
    return "%s%010d" % (prefix, job_id)
294 ce594241 Michael Hanselmann
295 ce594241 Michael Hanselmann
296 ce594241 Michael Hanselmann
class DiskJobStorage(JobStorageBase):
297 bac5ffc3 Oleksiy Mishchenko
  _RE_JOB_FILE = re.compile(r"^job-(%s)$" % constants.JOB_ID_TEMPLATE)
298 f1da30e6 Michael Hanselmann
299 ce594241 Michael Hanselmann
  def __init__(self, id_prefix):
300 ce594241 Michael Hanselmann
    JobStorageBase.__init__(self, id_prefix)
301 ce594241 Michael Hanselmann
302 f1da30e6 Michael Hanselmann
    self._lock = threading.Lock()
303 ac0930b9 Iustin Pop
    self._memcache = {}
304 c3f0a12f Iustin Pop
    self._my_hostname = utils.HostInfo().name
305 f1da30e6 Michael Hanselmann
306 0cb94105 Michael Hanselmann
    # Make sure our directories exists
307 0cb94105 Michael Hanselmann
    for path in (constants.QUEUE_DIR, constants.JOB_QUEUE_ARCHIVE_DIR):
308 0cb94105 Michael Hanselmann
      try:
309 0cb94105 Michael Hanselmann
        os.mkdir(path, 0700)
310 0cb94105 Michael Hanselmann
      except OSError, err:
311 0cb94105 Michael Hanselmann
        if err.errno not in (errno.EEXIST, ):
312 0cb94105 Michael Hanselmann
          raise
313 f1da30e6 Michael Hanselmann
314 f1da30e6 Michael Hanselmann
    # Get queue lock
315 f1da30e6 Michael Hanselmann
    self.lock_fd = open(constants.JOB_QUEUE_LOCK_FILE, "w")
316 f1da30e6 Michael Hanselmann
    try:
317 f1da30e6 Michael Hanselmann
      utils.LockFile(self.lock_fd)
318 f1da30e6 Michael Hanselmann
    except:
319 f1da30e6 Michael Hanselmann
      self.lock_fd.close()
320 f1da30e6 Michael Hanselmann
      raise
321 f1da30e6 Michael Hanselmann
322 f1da30e6 Michael Hanselmann
    # Read version
323 f1da30e6 Michael Hanselmann
    try:
324 f1da30e6 Michael Hanselmann
      version_fd = open(constants.JOB_QUEUE_VERSION_FILE, "r")
325 f1da30e6 Michael Hanselmann
    except IOError, err:
326 f1da30e6 Michael Hanselmann
      if err.errno not in (errno.ENOENT, ):
327 f1da30e6 Michael Hanselmann
        raise
328 f1da30e6 Michael Hanselmann
329 f1da30e6 Michael Hanselmann
      # Setup a new queue
330 f1da30e6 Michael Hanselmann
      self._InitQueueUnlocked()
331 f1da30e6 Michael Hanselmann
332 f1da30e6 Michael Hanselmann
      # Try to open again
333 f1da30e6 Michael Hanselmann
      version_fd = open(constants.JOB_QUEUE_VERSION_FILE, "r")
334 f1da30e6 Michael Hanselmann
335 f1da30e6 Michael Hanselmann
    try:
336 f1da30e6 Michael Hanselmann
      # Try to read version
337 f1da30e6 Michael Hanselmann
      version = int(version_fd.read(128))
338 f1da30e6 Michael Hanselmann
339 f1da30e6 Michael Hanselmann
      # Verify version
340 f1da30e6 Michael Hanselmann
      if version != constants.JOB_QUEUE_VERSION:
341 f1da30e6 Michael Hanselmann
        raise errors.JobQueueError("Found version %s, expected %s",
342 f1da30e6 Michael Hanselmann
                                   version, constants.JOB_QUEUE_VERSION)
343 f1da30e6 Michael Hanselmann
    finally:
344 f1da30e6 Michael Hanselmann
      version_fd.close()
345 f1da30e6 Michael Hanselmann
346 c4beba1c Iustin Pop
    self._last_serial = self._ReadSerial()
347 c4beba1c Iustin Pop
    if self._last_serial is None:
348 c4beba1c Iustin Pop
      raise errors.ConfigurationError("Can't read/parse the job queue serial"
349 c4beba1c Iustin Pop
                                      " file")
350 c4beba1c Iustin Pop
351 c4beba1c Iustin Pop
  @staticmethod
352 c4beba1c Iustin Pop
  def _ReadSerial():
353 c4beba1c Iustin Pop
    """Try to read the job serial file.
354 c4beba1c Iustin Pop

355 c4beba1c Iustin Pop
    @rtype: None or int
356 c4beba1c Iustin Pop
    @return: If the serial can be read, then it is returned. Otherwise None
357 c4beba1c Iustin Pop
             is returned.
358 c4beba1c Iustin Pop

359 c4beba1c Iustin Pop
    """
360 f1da30e6 Michael Hanselmann
    try:
361 c4beba1c Iustin Pop
      serial_fd = open(constants.JOB_QUEUE_SERIAL_FILE, "r")
362 c4beba1c Iustin Pop
      try:
363 c4beba1c Iustin Pop
        # Read last serial
364 c4beba1c Iustin Pop
        serial = int(serial_fd.read(1024).strip())
365 c4beba1c Iustin Pop
      finally:
366 c4beba1c Iustin Pop
        serial_fd.close()
367 c4beba1c Iustin Pop
    except (ValueError, EnvironmentError):
368 c4beba1c Iustin Pop
      serial = None
369 c4beba1c Iustin Pop
370 c4beba1c Iustin Pop
    return serial
371 f1da30e6 Michael Hanselmann
372 f1da30e6 Michael Hanselmann
  def Close(self):
373 f1da30e6 Michael Hanselmann
    assert self.lock_fd, "Queue should be open"
374 f1da30e6 Michael Hanselmann
375 f1da30e6 Michael Hanselmann
    self.lock_fd.close()
376 f1da30e6 Michael Hanselmann
    self.lock_fd = None
377 f1da30e6 Michael Hanselmann
378 f1da30e6 Michael Hanselmann
  def _InitQueueUnlocked(self):
379 f1da30e6 Michael Hanselmann
    assert self.lock_fd, "Queue should be open"
380 f1da30e6 Michael Hanselmann
381 f1da30e6 Michael Hanselmann
    utils.WriteFile(constants.JOB_QUEUE_VERSION_FILE,
382 f1da30e6 Michael Hanselmann
                    data="%s\n" % constants.JOB_QUEUE_VERSION)
383 c4beba1c Iustin Pop
    if self._ReadSerial() is None:
384 c4beba1c Iustin Pop
      utils.WriteFile(constants.JOB_QUEUE_SERIAL_FILE,
385 c4beba1c Iustin Pop
                      data="%s\n" % 0)
386 f1da30e6 Michael Hanselmann
387 c3f0a12f Iustin Pop
  def _NewSerialUnlocked(self, nodes):
388 f1da30e6 Michael Hanselmann
    """Generates a new job identifier.
389 f1da30e6 Michael Hanselmann

390 f1da30e6 Michael Hanselmann
    Job identifiers are unique during the lifetime of a cluster.
391 f1da30e6 Michael Hanselmann

392 f1da30e6 Michael Hanselmann
    Returns: A string representing the job identifier.
393 f1da30e6 Michael Hanselmann

394 f1da30e6 Michael Hanselmann
    """
395 f1da30e6 Michael Hanselmann
    assert self.lock_fd, "Queue should be open"
396 f1da30e6 Michael Hanselmann
397 f1da30e6 Michael Hanselmann
    # New number
398 f1da30e6 Michael Hanselmann
    serial = self._last_serial + 1
399 f1da30e6 Michael Hanselmann
400 f1da30e6 Michael Hanselmann
    # Write to file
401 f1da30e6 Michael Hanselmann
    utils.WriteFile(constants.JOB_QUEUE_SERIAL_FILE,
402 f1da30e6 Michael Hanselmann
                    data="%s\n" % serial)
403 f1da30e6 Michael Hanselmann
404 f1da30e6 Michael Hanselmann
    # Keep it only if we were able to write the file
405 f1da30e6 Michael Hanselmann
    self._last_serial = serial
406 f1da30e6 Michael Hanselmann
407 c3f0a12f Iustin Pop
    # Distribute the serial to the other nodes
408 c3f0a12f Iustin Pop
    try:
409 c3f0a12f Iustin Pop
      nodes.remove(self._my_hostname)
410 c3f0a12f Iustin Pop
    except ValueError:
411 c3f0a12f Iustin Pop
      pass
412 c3f0a12f Iustin Pop
413 c3f0a12f Iustin Pop
    result = rpc.call_upload_file(nodes, constants.JOB_QUEUE_SERIAL_FILE)
414 c3f0a12f Iustin Pop
    for node in nodes:
415 c3f0a12f Iustin Pop
      if not result[node]:
416 c3f0a12f Iustin Pop
        logging.error("copy of job queue file to node %s failed", node)
417 c3f0a12f Iustin Pop
418 ce594241 Michael Hanselmann
    return self.FormatJobID(serial)
419 f1da30e6 Michael Hanselmann
420 f1da30e6 Michael Hanselmann
  def _GetJobPath(self, job_id):
421 f1da30e6 Michael Hanselmann
    return os.path.join(constants.QUEUE_DIR, "job-%s" % job_id)
422 f1da30e6 Michael Hanselmann
423 0cb94105 Michael Hanselmann
  def _GetArchivedJobPath(self, job_id):
424 0cb94105 Michael Hanselmann
    return os.path.join(constants.JOB_QUEUE_ARCHIVE_DIR, "job-%s" % job_id)
425 0cb94105 Michael Hanselmann
426 911a495b Iustin Pop
  def _GetJobIDsUnlocked(self, archived=False):
427 911a495b Iustin Pop
    """Return all known job IDs.
428 911a495b Iustin Pop

429 911a495b Iustin Pop
    If the parameter archived is True, archived jobs IDs will be
430 911a495b Iustin Pop
    included. Currently this argument is unused.
431 911a495b Iustin Pop

432 ac0930b9 Iustin Pop
    The method only looks at disk because it's a requirement that all
433 ac0930b9 Iustin Pop
    jobs are present on disk (so in the _memcache we don't have any
434 ac0930b9 Iustin Pop
    extra IDs).
435 ac0930b9 Iustin Pop

436 911a495b Iustin Pop
    """
437 911a495b Iustin Pop
    jfiles = self._ListJobFiles()
438 ce594241 Michael Hanselmann
    jlist = [m.group(1) for m in
439 f0d874fe Iustin Pop
             [self._RE_JOB_FILE.match(name) for name in jfiles]]
440 f0d874fe Iustin Pop
    jlist.sort()
441 f0d874fe Iustin Pop
    return jlist
442 911a495b Iustin Pop
443 f1da30e6 Michael Hanselmann
  def _ListJobFiles(self):
444 f1da30e6 Michael Hanselmann
    assert self.lock_fd, "Queue should be open"
445 f1da30e6 Michael Hanselmann
446 f1da30e6 Michael Hanselmann
    return [name for name in utils.ListVisibleFiles(constants.QUEUE_DIR)
447 f1da30e6 Michael Hanselmann
            if self._RE_JOB_FILE.match(name)]
448 f1da30e6 Michael Hanselmann
449 911a495b Iustin Pop
  def _LoadJobUnlocked(self, job_id):
450 f1da30e6 Michael Hanselmann
    assert self.lock_fd, "Queue should be open"
451 f1da30e6 Michael Hanselmann
452 ac0930b9 Iustin Pop
    if job_id in self._memcache:
453 205d71fd Michael Hanselmann
      logging.debug("Found job %s in memcache", job_id)
454 ac0930b9 Iustin Pop
      return self._memcache[job_id]
455 ac0930b9 Iustin Pop
456 911a495b Iustin Pop
    filepath = self._GetJobPath(job_id)
457 f1da30e6 Michael Hanselmann
    logging.debug("Loading job from %s", filepath)
458 f1da30e6 Michael Hanselmann
    try:
459 f1da30e6 Michael Hanselmann
      fd = open(filepath, "r")
460 f1da30e6 Michael Hanselmann
    except IOError, err:
461 f1da30e6 Michael Hanselmann
      if err.errno in (errno.ENOENT, ):
462 f1da30e6 Michael Hanselmann
        return None
463 f1da30e6 Michael Hanselmann
      raise
464 f1da30e6 Michael Hanselmann
    try:
465 f1da30e6 Michael Hanselmann
      data = serializer.LoadJson(fd.read())
466 f1da30e6 Michael Hanselmann
    finally:
467 f1da30e6 Michael Hanselmann
      fd.close()
468 f1da30e6 Michael Hanselmann
469 ac0930b9 Iustin Pop
    job = _QueuedJob.Restore(self, data)
470 ac0930b9 Iustin Pop
    self._memcache[job_id] = job
471 205d71fd Michael Hanselmann
    logging.debug("Added job %s to the cache", job_id)
472 ac0930b9 Iustin Pop
    return job
473 f1da30e6 Michael Hanselmann
474 f1da30e6 Michael Hanselmann
  def _GetJobsUnlocked(self, job_ids):
475 911a495b Iustin Pop
    if not job_ids:
476 911a495b Iustin Pop
      job_ids = self._GetJobIDsUnlocked()
477 f1da30e6 Michael Hanselmann
478 911a495b Iustin Pop
    return [self._LoadJobUnlocked(job_id) for job_id in job_ids]
479 f1da30e6 Michael Hanselmann
480 f1da30e6 Michael Hanselmann
  @utils.LockedMethod
481 f1da30e6 Michael Hanselmann
  def GetJobs(self, job_ids):
482 f1da30e6 Michael Hanselmann
    return self._GetJobsUnlocked(job_ids)
483 f1da30e6 Michael Hanselmann
484 f1da30e6 Michael Hanselmann
  @utils.LockedMethod
485 c3f0a12f Iustin Pop
  def AddJob(self, ops, nodes):
486 c3f0a12f Iustin Pop
    """Create and store on disk a new job.
487 c3f0a12f Iustin Pop

488 c3f0a12f Iustin Pop
    @type ops: list
489 205d71fd Michael Hanselmann
    @param ops: The list of OpCodes that will become the new job.
490 c3f0a12f Iustin Pop
    @type nodes: list
491 c3f0a12f Iustin Pop
    @param nodes: The list of nodes to which the new job serial will be
492 c3f0a12f Iustin Pop
                  distributed.
493 c3f0a12f Iustin Pop

494 c3f0a12f Iustin Pop
    """
495 f1da30e6 Michael Hanselmann
    assert self.lock_fd, "Queue should be open"
496 f1da30e6 Michael Hanselmann
497 f1da30e6 Michael Hanselmann
    # Get job identifier
498 c3f0a12f Iustin Pop
    job_id = self._NewSerialUnlocked(nodes)
499 f1da30e6 Michael Hanselmann
    job = _QueuedJob(self, job_id, ops)
500 f1da30e6 Michael Hanselmann
501 f1da30e6 Michael Hanselmann
    # Write to disk
502 f1da30e6 Michael Hanselmann
    self._UpdateJobUnlocked(job)
503 f1da30e6 Michael Hanselmann
504 205d71fd Michael Hanselmann
    logging.debug("Added new job %s to the cache", job_id)
505 ac0930b9 Iustin Pop
    self._memcache[job_id] = job
506 ac0930b9 Iustin Pop
507 f1da30e6 Michael Hanselmann
    return job
508 f1da30e6 Michael Hanselmann
509 f1da30e6 Michael Hanselmann
  def _UpdateJobUnlocked(self, job):
510 f1da30e6 Michael Hanselmann
    assert self.lock_fd, "Queue should be open"
511 f1da30e6 Michael Hanselmann
512 f1da30e6 Michael Hanselmann
    filename = self._GetJobPath(job.id)
513 f1da30e6 Michael Hanselmann
    logging.debug("Writing job %s to %s", job.id, filename)
514 f1da30e6 Michael Hanselmann
    utils.WriteFile(filename,
515 f1da30e6 Michael Hanselmann
                    data=serializer.DumpJson(job.Serialize(), indent=False))
516 57f8615f Michael Hanselmann
    self._CleanCacheUnlocked([job.id])
517 ac0930b9 Iustin Pop
518 57f8615f Michael Hanselmann
  def _CleanCacheUnlocked(self, exclude):
519 ac0930b9 Iustin Pop
    """Clean the memory cache.
520 ac0930b9 Iustin Pop

521 ac0930b9 Iustin Pop
    The exceptions argument contains job IDs that should not be
522 ac0930b9 Iustin Pop
    cleaned.
523 ac0930b9 Iustin Pop

524 ac0930b9 Iustin Pop
    """
525 57f8615f Michael Hanselmann
    assert isinstance(exclude, list)
526 ac0930b9 Iustin Pop
    for job in self._memcache.values():
527 57f8615f Michael Hanselmann
      if job.id in exclude:
528 ac0930b9 Iustin Pop
        continue
529 ac0930b9 Iustin Pop
      if job.GetStatus() not in (constants.JOB_STATUS_QUEUED,
530 ac0930b9 Iustin Pop
                                 constants.JOB_STATUS_RUNNING):
531 205d71fd Michael Hanselmann
        logging.debug("Cleaning job %s from the cache", job.id)
532 ac0930b9 Iustin Pop
        try:
533 ac0930b9 Iustin Pop
          del self._memcache[job.id]
534 ac0930b9 Iustin Pop
        except KeyError:
535 ac0930b9 Iustin Pop
          pass
536 f1da30e6 Michael Hanselmann
537 f1da30e6 Michael Hanselmann
  @utils.LockedMethod
538 f1da30e6 Michael Hanselmann
  def UpdateJob(self, job):
539 f1da30e6 Michael Hanselmann
    return self._UpdateJobUnlocked(job)
540 f1da30e6 Michael Hanselmann
541 f1da30e6 Michael Hanselmann
  def ArchiveJob(self, job_id):
542 f1da30e6 Michael Hanselmann
    raise NotImplementedError()
543 f1da30e6 Michael Hanselmann
544 f1da30e6 Michael Hanselmann
545 e2715f69 Michael Hanselmann
class JobQueue:
546 e2715f69 Michael Hanselmann
  """The job queue.
547 e2715f69 Michael Hanselmann

548 ce594241 Michael Hanselmann
  """
549 e2715f69 Michael Hanselmann
  def __init__(self, context):
550 e2715f69 Michael Hanselmann
    self._lock = threading.Lock()
551 ce594241 Michael Hanselmann
    self._jobs = DiskJobStorage("")
552 e2715f69 Michael Hanselmann
    self._wpool = _JobQueueWorkerPool(context)
553 e2715f69 Michael Hanselmann
554 f1da30e6 Michael Hanselmann
    for job in self._jobs.GetJobs(None):
555 f1da30e6 Michael Hanselmann
      status = job.GetStatus()
556 f1da30e6 Michael Hanselmann
      if status in (constants.JOB_STATUS_QUEUED, ):
557 f1da30e6 Michael Hanselmann
        self._wpool.AddTask(job)
558 e2715f69 Michael Hanselmann
559 f1da30e6 Michael Hanselmann
      elif status in (constants.JOB_STATUS_RUNNING, ):
560 f1da30e6 Michael Hanselmann
        logging.warning("Unfinished job %s found: %s", job.id, job)
561 f1da30e6 Michael Hanselmann
        job.SetUnclean("Unclean master daemon shutdown")
562 e2715f69 Michael Hanselmann
563 f1da30e6 Michael Hanselmann
  @utils.LockedMethod
564 c3f0a12f Iustin Pop
  def SubmitJob(self, ops, nodes):
565 e2715f69 Michael Hanselmann
    """Add a new job to the queue.
566 e2715f69 Michael Hanselmann

567 e2715f69 Michael Hanselmann
    This enters the job into our job queue and also puts it on the new
568 e2715f69 Michael Hanselmann
    queue, in order for it to be picked up by the queue processors.
569 e2715f69 Michael Hanselmann

570 c3f0a12f Iustin Pop
    @type ops: list
571 c3f0a12f Iustin Pop
    @param ops: the sequence of opcodes that will become the new job
572 c3f0a12f Iustin Pop
    @type nodes: list
573 c3f0a12f Iustin Pop
    @param nodes: the list of nodes to which the queue should be
574 c3f0a12f Iustin Pop
                  distributed
575 e2715f69 Michael Hanselmann

576 e2715f69 Michael Hanselmann
    """
577 c3f0a12f Iustin Pop
    job = self._jobs.AddJob(ops, nodes)
578 e2715f69 Michael Hanselmann
579 e2715f69 Michael Hanselmann
    # Add to worker pool
580 e2715f69 Michael Hanselmann
    self._wpool.AddTask(job)
581 e2715f69 Michael Hanselmann
582 f1da30e6 Michael Hanselmann
    return job.id
583 e2715f69 Michael Hanselmann
584 e2715f69 Michael Hanselmann
  def ArchiveJob(self, job_id):
585 e2715f69 Michael Hanselmann
    raise NotImplementedError()
586 e2715f69 Michael Hanselmann
587 e2715f69 Michael Hanselmann
  def CancelJob(self, job_id):
588 e2715f69 Michael Hanselmann
    raise NotImplementedError()
589 e2715f69 Michael Hanselmann
590 e2715f69 Michael Hanselmann
  def _GetJobInfo(self, job, fields):
591 e2715f69 Michael Hanselmann
    row = []
592 e2715f69 Michael Hanselmann
    for fname in fields:
593 e2715f69 Michael Hanselmann
      if fname == "id":
594 e2715f69 Michael Hanselmann
        row.append(job.id)
595 e2715f69 Michael Hanselmann
      elif fname == "status":
596 e2715f69 Michael Hanselmann
        row.append(job.GetStatus())
597 af30b2fd Michael Hanselmann
      elif fname == "ops":
598 af30b2fd Michael Hanselmann
        row.append([op.GetInput().__getstate__() for op in job._ops])
599 af30b2fd Michael Hanselmann
      elif fname == "opresult":
600 307149a8 Iustin Pop
        row.append([op.GetResult() for op in job._ops])
601 af30b2fd Michael Hanselmann
      elif fname == "opstatus":
602 af30b2fd Michael Hanselmann
        row.append([op.GetStatus() for op in job._ops])
603 f1048938 Iustin Pop
      elif fname == "ticker":
604 f1048938 Iustin Pop
        ji = job.GetRunOpIndex()
605 f1048938 Iustin Pop
        if ji < 0:
606 f1048938 Iustin Pop
          lmsg = None
607 f1048938 Iustin Pop
        else:
608 f1048938 Iustin Pop
          lmsg = job._ops[ji].RetrieveLog(-1)
609 f1048938 Iustin Pop
          # message might be empty here
610 f1048938 Iustin Pop
          if lmsg:
611 f1048938 Iustin Pop
            lmsg = lmsg[0]
612 f1048938 Iustin Pop
          else:
613 f1048938 Iustin Pop
            lmsg = None
614 f1048938 Iustin Pop
        row.append(lmsg)
615 e2715f69 Michael Hanselmann
      else:
616 e2715f69 Michael Hanselmann
        raise errors.OpExecError("Invalid job query field '%s'" % fname)
617 e2715f69 Michael Hanselmann
    return row
618 e2715f69 Michael Hanselmann
619 e2715f69 Michael Hanselmann
  def QueryJobs(self, job_ids, fields):
620 e2715f69 Michael Hanselmann
    """Returns a list of jobs in queue.
621 e2715f69 Michael Hanselmann

622 e2715f69 Michael Hanselmann
    Args:
623 e2715f69 Michael Hanselmann
    - job_ids: Sequence of job identifiers or None for all
624 e2715f69 Michael Hanselmann
    - fields: Names of fields to return
625 e2715f69 Michael Hanselmann

626 e2715f69 Michael Hanselmann
    """
627 e2715f69 Michael Hanselmann
    self._lock.acquire()
628 e2715f69 Michael Hanselmann
    try:
629 e2715f69 Michael Hanselmann
      jobs = []
630 e2715f69 Michael Hanselmann
631 f1da30e6 Michael Hanselmann
      for job in self._jobs.GetJobs(job_ids):
632 e2715f69 Michael Hanselmann
        if job is None:
633 e2715f69 Michael Hanselmann
          jobs.append(None)
634 e2715f69 Michael Hanselmann
        else:
635 e2715f69 Michael Hanselmann
          jobs.append(self._GetJobInfo(job, fields))
636 e2715f69 Michael Hanselmann
637 e2715f69 Michael Hanselmann
      return jobs
638 e2715f69 Michael Hanselmann
    finally:
639 e2715f69 Michael Hanselmann
      self._lock.release()
640 e2715f69 Michael Hanselmann
641 f1da30e6 Michael Hanselmann
  @utils.LockedMethod
642 e2715f69 Michael Hanselmann
  def Shutdown(self):
643 e2715f69 Michael Hanselmann
    """Stops the job queue.
644 e2715f69 Michael Hanselmann

645 e2715f69 Michael Hanselmann
    """
646 e2715f69 Michael Hanselmann
    self._wpool.TerminateWorkers()
647 f1da30e6 Michael Hanselmann
    self._jobs.Close()