Statistics
| Branch: | Tag: | Revision:

root / lib / jqueue.py @ ce594241

History | View | Annotate | Download (16.6 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 f1da30e6 Michael Hanselmann
    # Make sure our directory exists
307 f1da30e6 Michael Hanselmann
    try:
308 f1da30e6 Michael Hanselmann
      os.mkdir(constants.QUEUE_DIR, 0700)
309 f1da30e6 Michael Hanselmann
    except OSError, err:
310 f1da30e6 Michael Hanselmann
      if err.errno not in (errno.EEXIST, ):
311 f1da30e6 Michael Hanselmann
        raise
312 f1da30e6 Michael Hanselmann
313 f1da30e6 Michael Hanselmann
    # Get queue lock
314 f1da30e6 Michael Hanselmann
    self.lock_fd = open(constants.JOB_QUEUE_LOCK_FILE, "w")
315 f1da30e6 Michael Hanselmann
    try:
316 f1da30e6 Michael Hanselmann
      utils.LockFile(self.lock_fd)
317 f1da30e6 Michael Hanselmann
    except:
318 f1da30e6 Michael Hanselmann
      self.lock_fd.close()
319 f1da30e6 Michael Hanselmann
      raise
320 f1da30e6 Michael Hanselmann
321 f1da30e6 Michael Hanselmann
    # Read version
322 f1da30e6 Michael Hanselmann
    try:
323 f1da30e6 Michael Hanselmann
      version_fd = open(constants.JOB_QUEUE_VERSION_FILE, "r")
324 f1da30e6 Michael Hanselmann
    except IOError, err:
325 f1da30e6 Michael Hanselmann
      if err.errno not in (errno.ENOENT, ):
326 f1da30e6 Michael Hanselmann
        raise
327 f1da30e6 Michael Hanselmann
328 f1da30e6 Michael Hanselmann
      # Setup a new queue
329 f1da30e6 Michael Hanselmann
      self._InitQueueUnlocked()
330 f1da30e6 Michael Hanselmann
331 f1da30e6 Michael Hanselmann
      # Try to open again
332 f1da30e6 Michael Hanselmann
      version_fd = open(constants.JOB_QUEUE_VERSION_FILE, "r")
333 f1da30e6 Michael Hanselmann
334 f1da30e6 Michael Hanselmann
    try:
335 f1da30e6 Michael Hanselmann
      # Try to read version
336 f1da30e6 Michael Hanselmann
      version = int(version_fd.read(128))
337 f1da30e6 Michael Hanselmann
338 f1da30e6 Michael Hanselmann
      # Verify version
339 f1da30e6 Michael Hanselmann
      if version != constants.JOB_QUEUE_VERSION:
340 f1da30e6 Michael Hanselmann
        raise errors.JobQueueError("Found version %s, expected %s",
341 f1da30e6 Michael Hanselmann
                                   version, constants.JOB_QUEUE_VERSION)
342 f1da30e6 Michael Hanselmann
    finally:
343 f1da30e6 Michael Hanselmann
      version_fd.close()
344 f1da30e6 Michael Hanselmann
345 c4beba1c Iustin Pop
    self._last_serial = self._ReadSerial()
346 c4beba1c Iustin Pop
    if self._last_serial is None:
347 c4beba1c Iustin Pop
      raise errors.ConfigurationError("Can't read/parse the job queue serial"
348 c4beba1c Iustin Pop
                                      " file")
349 c4beba1c Iustin Pop
350 c4beba1c Iustin Pop
  @staticmethod
351 c4beba1c Iustin Pop
  def _ReadSerial():
352 c4beba1c Iustin Pop
    """Try to read the job serial file.
353 c4beba1c Iustin Pop

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

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

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

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

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

425 911a495b Iustin Pop
    If the parameter archived is True, archived jobs IDs will be
426 911a495b Iustin Pop
    included. Currently this argument is unused.
427 911a495b Iustin Pop

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

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

484 c3f0a12f Iustin Pop
    @type ops: list
485 205d71fd Michael Hanselmann
    @param ops: The list of OpCodes that will become the new job.
486 c3f0a12f Iustin Pop
    @type nodes: list
487 c3f0a12f Iustin Pop
    @param nodes: The list of nodes to which the new job serial will be
488 c3f0a12f Iustin Pop
                  distributed.
489 c3f0a12f Iustin Pop

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

517 ac0930b9 Iustin Pop
    The exceptions argument contains job IDs that should not be
518 ac0930b9 Iustin Pop
    cleaned.
519 ac0930b9 Iustin Pop

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

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

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

566 c3f0a12f Iustin Pop
    @type ops: list
567 c3f0a12f Iustin Pop
    @param ops: the sequence of opcodes that will become the new job
568 c3f0a12f Iustin Pop
    @type nodes: list
569 c3f0a12f Iustin Pop
    @param nodes: the list of nodes to which the queue should be
570 c3f0a12f Iustin Pop
                  distributed
571 e2715f69 Michael Hanselmann

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

618 e2715f69 Michael Hanselmann
    Args:
619 e2715f69 Michael Hanselmann
    - job_ids: Sequence of job identifiers or None for all
620 e2715f69 Michael Hanselmann
    - fields: Names of fields to return
621 e2715f69 Michael Hanselmann

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

641 e2715f69 Michael Hanselmann
    """
642 e2715f69 Michael Hanselmann
    self._wpool.TerminateWorkers()
643 f1da30e6 Michael Hanselmann
    self._jobs.Close()