open-nomad/ui/app/models/job.js

293 lines
8.9 KiB
JavaScript
Raw Normal View History

import { alias, equal, or, and, mapBy } from '@ember/object/computed';
import { computed } from '@ember/object';
2017-09-19 14:47:10 +00:00
import Model from 'ember-data/model';
import attr from 'ember-data/attr';
2017-10-10 16:36:15 +00:00
import { belongsTo, hasMany } from 'ember-data/relationships';
2017-09-19 14:47:10 +00:00
import { fragmentArray } from 'ember-data-model-fragments/attributes';
2018-08-15 00:29:51 +00:00
import RSVP from 'rsvp';
import { assert } from '@ember/debug';
import classic from 'ember-classic-decorator';
2017-09-19 14:47:10 +00:00
const JOB_TYPES = ['service', 'batch', 'system'];
@classic
export default class Job extends Model {
@attr('string') region;
@attr('string') name;
@attr('string') plainId;
@attr('string') type;
@attr('number') priority;
@attr('boolean') allAtOnce;
2017-09-19 14:47:10 +00:00
@attr('string') status;
@attr('string') statusDescription;
@attr('number') createIndex;
@attr('number') modifyIndex;
2017-09-19 14:47:10 +00:00
// True when the job is the parent periodic or parameterized jobs
// Instances of periodic or parameterized jobs are false for both properties
@attr('boolean') periodic;
@attr('boolean') parameterized;
@attr('boolean') dispatched;
2017-09-19 14:47:10 +00:00
@attr() periodicDetails;
@attr() parameterizedDetails;
@computed('periodic', 'parameterized', 'dispatched')
get hasChildren() {
2019-03-26 07:46:44 +00:00
return this.periodic || (this.parameterized && !this.dispatched);
}
@belongsTo('job', { inverse: 'children' }) parent;
@hasMany('job', { inverse: 'parent' }) children;
// The parent job name is prepended to child launch job names
@computed('name', 'parent')
get trimmedName() {
2019-03-26 07:46:44 +00:00
return this.get('parent.content') ? this.name.replace(/.+?\//, '') : this.name;
}
// A composite of type and other job attributes to determine
// a better type descriptor for human interpretation rather
// than for scheduling.
@computed('type', 'periodic', 'parameterized')
get displayType() {
2019-03-26 07:46:44 +00:00
if (this.periodic) {
return 'periodic';
2019-03-26 07:46:44 +00:00
} else if (this.parameterized) {
return 'parameterized';
}
2019-03-26 07:46:44 +00:00
return this.type;
}
// A composite of type and other job attributes to determine
// type for templating rather than scheduling
@computed('type', 'periodic', 'parameterized', 'parent.{periodic,parameterized}')
get templateType() {
const type = this.type;
if (this.get('parent.periodic')) {
return 'periodic-child';
} else if (this.get('parent.parameterized')) {
return 'parameterized-child';
} else if (this.periodic) {
return 'periodic';
} else if (this.parameterized) {
return 'parameterized';
} else if (JOB_TYPES.includes(type)) {
// Guard against the API introducing a new type before the UI
// is prepared to handle it.
return this.type;
}
// A fail-safe in the event the API introduces a new type.
return 'service';
}
@attr() datacenters;
@fragmentArray('task-group', { defaultValue: () => [] }) taskGroups;
@belongsTo('job-summary') summary;
// A job model created from the jobs list response will be lacking
// task groups. This is an indicator that it needs to be reloaded
// if task group information is important.
@equal('taskGroups.length', 0) isPartial;
// If a job has only been loaded through the list request, the task groups
// are still unknown. However, the count of task groups is available through
// the job-summary model which is embedded in the jobs list response.
@or('taskGroups.length', 'taskGroupSummaries.length') taskGroupCount;
// Alias through to the summary, as if there was no relationship
@alias('summary.taskGroupSummaries') taskGroupSummaries;
@alias('summary.queuedAllocs') queuedAllocs;
@alias('summary.startingAllocs') startingAllocs;
@alias('summary.runningAllocs') runningAllocs;
@alias('summary.completeAllocs') completeAllocs;
@alias('summary.failedAllocs') failedAllocs;
@alias('summary.lostAllocs') lostAllocs;
@alias('summary.totalAllocs') totalAllocs;
@alias('summary.pendingChildren') pendingChildren;
@alias('summary.runningChildren') runningChildren;
@alias('summary.deadChildren') deadChildren;
@alias('summary.totalChildren') totalChildren;
@attr('number') version;
@hasMany('job-versions') versions;
@hasMany('allocations') allocations;
@hasMany('deployments') deployments;
@hasMany('evaluations') evaluations;
@belongsTo('namespace') namespace;
@computed('taskGroups.@each.drivers')
get drivers() {
2019-03-26 07:46:44 +00:00
return this.taskGroups
.mapBy('drivers')
.reduce((all, drivers) => {
all.push(...drivers);
return all;
}, [])
.uniq();
}
@mapBy('allocations', 'unhealthyDrivers') allocationsUnhealthyDrivers;
// Getting all unhealthy drivers for a job can be incredibly expensive if the job
// has many allocations. This can lead to making an API request for many nodes.
@computed('allocationsUnhealthyDrivers.[]')
get unhealthyDrivers() {
2019-03-26 07:46:44 +00:00
return this.allocations
.mapBy('unhealthyDrivers')
.reduce((all, drivers) => {
all.push(...drivers);
return all;
}, [])
.uniq();
}
@computed('evaluations.@each.isBlocked')
get hasBlockedEvaluation() {
2019-10-08 18:44:19 +00:00
return this.evaluations.toArray().some(evaluation => evaluation.get('isBlocked'));
}
@and('latestFailureEvaluation', 'hasBlockedEvaluation') hasPlacementFailures;
@computed('evaluations.{@each.modifyIndex,isPending}')
get latestEvaluation() {
2019-03-26 07:46:44 +00:00
const evaluations = this.evaluations;
if (!evaluations || evaluations.get('isPending')) {
return null;
}
return evaluations.sortBy('modifyIndex').get('lastObject');
}
@computed('evaluations.{@each.modifyIndex,isPending}')
get latestFailureEvaluation() {
const evaluations = this.evaluations;
if (!evaluations || evaluations.get('isPending')) {
return null;
}
const failureEvaluations = evaluations.filterBy('hasPlacementFailures');
if (failureEvaluations) {
return failureEvaluations.sortBy('modifyIndex').get('lastObject');
}
return undefined;
}
@equal('type', 'service') supportsDeployments;
@belongsTo('deployment', { inverse: 'jobForLatest' }) latestDeployment;
@computed('latestDeployment', 'latestDeployment.isRunning')
get runningDeployment() {
2019-03-26 07:46:44 +00:00
const latest = this.latestDeployment;
if (latest.get('isRunning')) return latest;
return undefined;
}
2017-09-19 14:47:10 +00:00
fetchRawDefinition() {
return this.store.adapterFor('job').fetchRawDefinition(this);
}
2017-09-19 14:47:10 +00:00
forcePeriodic() {
return this.store.adapterFor('job').forcePeriodic(this);
}
stop() {
return this.store.adapterFor('job').stop(this);
}
2018-08-15 00:29:51 +00:00
plan() {
2019-03-26 07:46:44 +00:00
assert('A job must be parsed before planned', this._newDefinitionJSON);
2018-08-15 00:29:51 +00:00
return this.store.adapterFor('job').plan(this);
}
2018-08-15 00:29:51 +00:00
2018-08-15 01:26:26 +00:00
run() {
2019-03-26 07:46:44 +00:00
assert('A job must be parsed before ran', this._newDefinitionJSON);
2018-08-15 01:26:26 +00:00
return this.store.adapterFor('job').run(this);
}
2018-08-15 01:26:26 +00:00
2018-08-21 23:44:31 +00:00
update() {
2019-03-26 07:46:44 +00:00
assert('A job must be parsed before updated', this._newDefinitionJSON);
2018-08-21 23:44:31 +00:00
return this.store.adapterFor('job').update(this);
}
2018-08-21 23:44:31 +00:00
2018-08-15 00:29:51 +00:00
parse() {
2019-03-26 07:46:44 +00:00
const definition = this._newDefinition;
2018-08-15 00:29:51 +00:00
let promise;
try {
// If the definition is already JSON then it doesn't need to be parsed.
const json = JSON.parse(definition);
this.set('_newDefinitionJSON', json);
2018-08-21 23:44:31 +00:00
// You can't set the ID of a record that already exists
2019-03-26 07:46:44 +00:00
if (this.isNew) {
2018-08-21 23:44:31 +00:00
this.setIdByPayload(json);
}
2018-08-17 00:22:58 +00:00
promise = RSVP.resolve(definition);
2018-08-15 00:29:51 +00:00
} catch (err) {
// If the definition is invalid JSON, assume it is HCL. If it is invalid
// in anyway, the parse endpoint will throw an error.
promise = this.store
.adapterFor('job')
2019-03-26 07:46:44 +00:00
.parse(this._newDefinition)
2018-08-15 00:29:51 +00:00
.then(response => {
this.set('_newDefinitionJSON', response);
2018-08-21 23:44:31 +00:00
this.setIdByPayload(response);
2018-08-15 00:29:51 +00:00
});
}
return promise;
}
2018-08-15 00:29:51 +00:00
2018-08-21 23:44:31 +00:00
setIdByPayload(payload) {
2018-08-15 01:26:26 +00:00
const namespace = payload.Namespace || 'default';
const id = payload.Name;
this.set('plainId', id);
2019-10-08 18:44:19 +00:00
this.set('_idBeforeSaving', JSON.stringify([id, namespace]));
2018-08-15 01:26:26 +00:00
const namespaceRecord = this.store.peekRecord('namespace', namespace);
if (namespaceRecord) {
this.set('namespace', namespaceRecord);
}
}
2018-08-15 00:29:51 +00:00
2018-08-21 23:44:31 +00:00
resetId() {
2019-03-26 07:46:44 +00:00
this.set('id', JSON.stringify([this.plainId, this.get('namespace.name') || 'default']));
}
2018-08-21 23:44:31 +00:00
@computed('status')
get statusClass() {
2017-09-19 14:47:10 +00:00
const classMap = {
pending: 'is-pending',
running: 'is-primary',
dead: 'is-light',
};
2019-03-26 07:46:44 +00:00
return classMap[this.status] || 'is-dark';
}
@attr('string') payload;
@computed('payload')
get decodedPayload() {
// Lazily decode the base64 encoded payload
2019-03-26 07:46:44 +00:00
return window.atob(this.payload || '');
}
2018-08-15 00:29:51 +00:00
// An arbitrary HCL or JSON string that is used by the serializer to plan
// and run this job. Used for both new job models and saved job models.
@attr('string') _newDefinition;
2018-08-15 00:29:51 +00:00
// The new definition may be HCL, in which case the API will need to parse the
// spec first. In order to preserve both the original HCL and the parsed response
// that will be submitted to the create job endpoint, another prop is necessary.
@attr('string') _newDefinitionJSON;
}