Merge branch 'master' of github.com:coreos-inc/quay
This commit is contained in:
commit
258588b914
3 changed files with 23 additions and 5 deletions
|
@ -10,3 +10,4 @@ class BuildServerStatus(object):
|
||||||
STARTING = 'starting'
|
STARTING = 'starting'
|
||||||
RUNNING = 'running'
|
RUNNING = 'running'
|
||||||
SHUTDOWN = 'shutting_down'
|
SHUTDOWN = 'shutting_down'
|
||||||
|
EXCEPTION = 'exception'
|
||||||
|
|
|
@ -77,7 +77,7 @@ class EphemeralBuilderManager(BaseManager):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
etcd_result = changed_key_future.result()
|
etcd_result = changed_key_future.result()
|
||||||
except (ReadTimeoutError, ProtocolError):
|
except (ReadTimeoutError, ProtocolError, etcd.EtcdException):
|
||||||
return
|
return
|
||||||
|
|
||||||
change_callback(etcd_result)
|
change_callback(etcd_result)
|
||||||
|
@ -233,11 +233,20 @@ class EphemeralBuilderManager(BaseManager):
|
||||||
raise Return(False)
|
raise Return(False)
|
||||||
|
|
||||||
logger.debug('Starting builder with executor: %s', self._executor)
|
logger.debug('Starting builder with executor: %s', self._executor)
|
||||||
|
|
||||||
|
try:
|
||||||
builder_id = yield From(self._executor.start_builder(realm, token, build_uuid))
|
builder_id = yield From(self._executor.start_builder(realm, token, build_uuid))
|
||||||
|
except:
|
||||||
|
logger.exception('Exception when starting builder for job: %s', build_uuid)
|
||||||
|
raise Return(False)
|
||||||
|
|
||||||
# Store the builder in etcd associated with the job id
|
# Store the builder in etcd associated with the job id
|
||||||
|
try:
|
||||||
payload['builder_id'] = builder_id
|
payload['builder_id'] = builder_id
|
||||||
yield From(self._etcd_client.write(job_key, json.dumps(payload), prevExist=True, ttl=ttl))
|
yield From(self._etcd_client.write(job_key, json.dumps(payload), prevExist=True, ttl=ttl))
|
||||||
|
except etcd.EtcdException:
|
||||||
|
logger.exception('Exception when writing job %s to etcd', build_uuid)
|
||||||
|
raise Return(False)
|
||||||
|
|
||||||
# Store the realm spec which will allow any manager to accept this builder when it connects
|
# Store the realm spec which will allow any manager to accept this builder when it connects
|
||||||
realm_spec = json.dumps({
|
realm_spec = json.dumps({
|
||||||
|
|
|
@ -175,7 +175,14 @@ class BuilderServer(object):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
logger.debug('Build job found. Checking for an avaliable worker.')
|
logger.debug('Build job found. Checking for an avaliable worker.')
|
||||||
|
|
||||||
|
try:
|
||||||
scheduled = yield From(self._lifecycle_manager.schedule(build_job))
|
scheduled = yield From(self._lifecycle_manager.schedule(build_job))
|
||||||
|
except:
|
||||||
|
logger.exception('Exception when scheduling job')
|
||||||
|
self._current_status = BuildServerStatus.EXCEPTION
|
||||||
|
return
|
||||||
|
|
||||||
if scheduled:
|
if scheduled:
|
||||||
status_handler = StatusHandler(self._build_logs, build_job.repo_build.uuid)
|
status_handler = StatusHandler(self._build_logs, build_job.repo_build.uuid)
|
||||||
status_handler.set_phase('build-scheduled')
|
status_handler.set_phase('build-scheduled')
|
||||||
|
@ -190,6 +197,7 @@ class BuilderServer(object):
|
||||||
def _queue_metrics_updater(self):
|
def _queue_metrics_updater(self):
|
||||||
while self._current_status == BuildServerStatus.RUNNING:
|
while self._current_status == BuildServerStatus.RUNNING:
|
||||||
yield From(trollius.sleep(30))
|
yield From(trollius.sleep(30))
|
||||||
|
logger.debug('Writing metrics')
|
||||||
self._queue.update_metrics()
|
self._queue.update_metrics()
|
||||||
|
|
||||||
@trollius.coroutine
|
@trollius.coroutine
|
||||||
|
|
Reference in a new issue