Compare commits
No commits in common. "4e7c825170eb542a7755bd8bc27a00c68cd367f0" and "cba4c0464c29ac2e51d66753fa75bb00ad6620e2" have entirely different histories.
4e7c825170
...
cba4c0464c
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -2,8 +2,6 @@
|
|||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"Repos",
|
"Repos",
|
||||||
"lpush",
|
"lpush",
|
||||||
"lrange",
|
"rpop"
|
||||||
"rpop",
|
|
||||||
"rpush"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
15696
package-lock.json
generated
15696
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -40,7 +40,6 @@
|
|||||||
"graphql-tools": "^7.0.2",
|
"graphql-tools": "^7.0.2",
|
||||||
"js-yaml": "^4.0.0",
|
"js-yaml": "^4.0.0",
|
||||||
"nestjs-redis": "^1.2.8",
|
"nestjs-redis": "^1.2.8",
|
||||||
"observable-to-async-generator": "^1.0.1-rc",
|
|
||||||
"pg": "^8.5.1",
|
"pg": "^8.5.1",
|
||||||
"ramda": "^0.27.1",
|
"ramda": "^0.27.1",
|
||||||
"reflect-metadata": "^0.1.13",
|
"reflect-metadata": "^0.1.13",
|
||||||
|
@ -7,5 +7,6 @@ export class CreatePipelineTaskInput {
|
|||||||
|
|
||||||
commit: string;
|
commit: string;
|
||||||
|
|
||||||
|
@Field(() => PipelineUnits)
|
||||||
units: PipelineUnits[];
|
units: PipelineUnits[];
|
||||||
}
|
}
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
import { ArgsType } from '@nestjs/graphql';
|
|
||||||
import { IsUUID } from 'class-validator';
|
|
||||||
|
|
||||||
@ArgsType()
|
|
||||||
export class PipelineTaskLogArgs {
|
|
||||||
@IsUUID()
|
|
||||||
taskId: string;
|
|
||||||
}
|
|
@ -1,13 +1,6 @@
|
|||||||
import { registerEnumType } from '@nestjs/graphql';
|
|
||||||
|
|
||||||
export enum TaskStatuses {
|
export enum TaskStatuses {
|
||||||
success = 'success',
|
success = 'success',
|
||||||
failed = 'failed',
|
failed = 'failed',
|
||||||
working = 'working',
|
working = 'working',
|
||||||
pending = 'pending',
|
pending = 'pending',
|
||||||
}
|
}
|
||||||
|
|
||||||
registerEnumType(TaskStatuses, {
|
|
||||||
name: 'TaskStatuses',
|
|
||||||
description: '任务状态',
|
|
||||||
});
|
|
||||||
|
@ -1,13 +1,7 @@
|
|||||||
import { PipelineTask } from './../pipeline-task.entity';
|
import { PipelineTask } from './../pipeline-task.entity';
|
||||||
import { PipelineUnits } from '../enums/pipeline-units.enum';
|
|
||||||
import { Field, HideField, ObjectType } from '@nestjs/graphql';
|
|
||||||
|
|
||||||
@ObjectType()
|
|
||||||
export class PipelineTaskLogMessage {
|
export class PipelineTaskLogMessage {
|
||||||
@HideField()
|
|
||||||
task: PipelineTask;
|
task: PipelineTask;
|
||||||
@Field(() => PipelineUnits)
|
|
||||||
unit: PipelineUnits;
|
|
||||||
time: Date;
|
time: Date;
|
||||||
message: string;
|
message: string;
|
||||||
|
|
||||||
|
@ -1,12 +1,7 @@
|
|||||||
import { TaskStatuses } from '../enums/task-statuses.enum';
|
import { TaskStatuses } from '../enums/task-statuses.enum';
|
||||||
import { PipelineUnits } from '../enums/pipeline-units.enum';
|
import { PipelineUnits } from '../enums/pipeline-units.enum';
|
||||||
import { Field, ObjectType } from '@nestjs/graphql';
|
|
||||||
|
|
||||||
@ObjectType()
|
|
||||||
export class PipelineTaskLogs {
|
export class PipelineTaskLogs {
|
||||||
@Field(() => PipelineUnits)
|
|
||||||
unit: PipelineUnits;
|
unit: PipelineUnits;
|
||||||
@Field(() => PipelineUnits)
|
|
||||||
status: TaskStatuses;
|
status: TaskStatuses;
|
||||||
startedAt?: Date;
|
startedAt?: Date;
|
||||||
endedAt?: Date;
|
endedAt?: Date;
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
import { Test, TestingModule } from '@nestjs/testing';
|
|
||||||
import { PipelineTaskLogsService } from './pipeline-task-logs.service';
|
|
||||||
import { RedisService } from 'nestjs-redis';
|
|
||||||
|
|
||||||
describe('PipelineTaskLogsService', () => {
|
|
||||||
let service: PipelineTaskLogsService;
|
|
||||||
|
|
||||||
beforeEach(async () => {
|
|
||||||
const module: TestingModule = await Test.createTestingModule({
|
|
||||||
providers: [
|
|
||||||
PipelineTaskLogsService,
|
|
||||||
{
|
|
||||||
provide: RedisService,
|
|
||||||
useValue: {},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}).compile();
|
|
||||||
|
|
||||||
service = module.get<PipelineTaskLogsService>(PipelineTaskLogsService);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should be defined', () => {
|
|
||||||
expect(service).toBeDefined();
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,50 +0,0 @@
|
|||||||
import { Injectable } from '@nestjs/common';
|
|
||||||
import { PubSub } from 'graphql-subscriptions';
|
|
||||||
import { RedisService } from 'nestjs-redis';
|
|
||||||
import { omit } from 'ramda';
|
|
||||||
import { PipelineTaskLogMessage } from './models/pipeline-task-log-message.module';
|
|
||||||
import { PipelineTask } from './pipeline-task.entity';
|
|
||||||
|
|
||||||
const LOG_TIMEOUT_SECONDS = 10_000;
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class PipelineTaskLogsService {
|
|
||||||
constructor(private readonly redisService: RedisService) {}
|
|
||||||
|
|
||||||
pubSub = new PubSub();
|
|
||||||
|
|
||||||
get redis() {
|
|
||||||
return this.redisService.getClient();
|
|
||||||
}
|
|
||||||
|
|
||||||
getKeys(task: PipelineTask) {
|
|
||||||
return `ptl:${task.id}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
async recordLog(log: PipelineTaskLogMessage) {
|
|
||||||
const logDto = omit(['task'], log);
|
|
||||||
await Promise.all([
|
|
||||||
this.pubSub.publish(this.getKeys(log.task), logDto),
|
|
||||||
this.redis
|
|
||||||
.expire(this.getKeys(log.task), LOG_TIMEOUT_SECONDS)
|
|
||||||
.then(() =>
|
|
||||||
this.redis.rpush(this.getKeys(log.task), JSON.stringify(logDto)),
|
|
||||||
),
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
async readLogs(task: PipelineTask): Promise<PipelineTaskLogMessage[]> {
|
|
||||||
return await this.redis.lrange(this.getKeys(task), 0, -1).then((items) =>
|
|
||||||
items.map((item) => {
|
|
||||||
const log = JSON.parse(item) as PipelineTaskLogMessage;
|
|
||||||
log.task = task;
|
|
||||||
log.time = new Date(log.time);
|
|
||||||
return log;
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
watchLogs(task: PipelineTask) {
|
|
||||||
return this.pubSub.asyncIterator(this.getKeys(task));
|
|
||||||
}
|
|
||||||
}
|
|
@ -18,13 +18,13 @@ import { ApplicationException } from '../commons/exceptions/application.exceptio
|
|||||||
import { PipelineUnits } from './enums/pipeline-units.enum';
|
import { PipelineUnits } from './enums/pipeline-units.enum';
|
||||||
import { PipelineTaskLogMessage } from './models/pipeline-task-log-message.module';
|
import { PipelineTaskLogMessage } from './models/pipeline-task-log-message.module';
|
||||||
import { TaskStatuses } from './enums/task-statuses.enum';
|
import { TaskStatuses } from './enums/task-statuses.enum';
|
||||||
import { PipelineTaskLogsService } from './pipeline-task-logs.service';
|
|
||||||
@Processor(PIPELINE_TASK_QUEUE)
|
@Processor(PIPELINE_TASK_QUEUE)
|
||||||
export class PipelineTaskConsumer {
|
export class PipelineTaskConsumer {
|
||||||
constructor(
|
constructor(
|
||||||
private readonly service: PipelineTasksService,
|
private readonly service: PipelineTasksService,
|
||||||
private readonly reposService: ReposService,
|
private readonly reposService: ReposService,
|
||||||
private readonly logsService: PipelineTaskLogsService,
|
@InjectQueue(PIPELINE_TASK_LOG_QUEUE)
|
||||||
|
private readonly logQueue: Queue<PipelineTaskLogMessage>,
|
||||||
) {}
|
) {}
|
||||||
@Process()
|
@Process()
|
||||||
async doTask({ data: task, update }: Job<PipelineTask>) {
|
async doTask({ data: task, update }: Job<PipelineTask>) {
|
||||||
@ -68,14 +68,13 @@ export class PipelineTaskConsumer {
|
|||||||
} finally {
|
} finally {
|
||||||
unitLog.endedAt = new Date();
|
unitLog.endedAt = new Date();
|
||||||
task.logs.push(unitLog);
|
task.logs.push(unitLog);
|
||||||
// await update(task);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
} finally {
|
} finally {
|
||||||
task = await this.service.updateTask(task);
|
task = await this.service.updateTask(task);
|
||||||
await update(task);
|
update(task);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,12 +94,12 @@ export class PipelineTaskConsumer {
|
|||||||
const str = data.toString();
|
const str = data.toString();
|
||||||
errorMessages.push(str);
|
errorMessages.push(str);
|
||||||
logs.push(str);
|
logs.push(str);
|
||||||
this.logsService.recordLog(PipelineTaskLogMessage.create(task, str));
|
this.logQueue.add(PipelineTaskLogMessage.create(task, str));
|
||||||
});
|
});
|
||||||
sub.stdout.on('data', (data: Buffer) => {
|
sub.stdout.on('data', (data: Buffer) => {
|
||||||
const str = data.toString();
|
const str = data.toString();
|
||||||
logs.push(str);
|
logs.push(str);
|
||||||
this.logsService.recordLog(PipelineTaskLogMessage.create(task, str));
|
this.logQueue.add(PipelineTaskLogMessage.create(task, str));
|
||||||
});
|
});
|
||||||
sub.addListener('close', (code) => {
|
sub.addListener('close', (code) => {
|
||||||
if (code === 0) {
|
if (code === 0) {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { AppBaseEntity } from './../commons/entities/app-base-entity';
|
import { AppBaseEntity } from './../commons/entities/app-base-entity';
|
||||||
import { Field, ObjectType } from '@nestjs/graphql';
|
import { ObjectType } from '@nestjs/graphql';
|
||||||
import { Column, Entity, ManyToOne } from 'typeorm';
|
import { Column, Entity, ManyToOne } from 'typeorm';
|
||||||
import { Pipeline } from '../pipelines/pipeline.entity';
|
import { Pipeline } from '../pipelines/pipeline.entity';
|
||||||
import { PipelineTaskLogs } from './models/pipeline-task-logs.model';
|
import { PipelineTaskLogs } from './models/pipeline-task-logs.model';
|
||||||
@ -26,9 +26,9 @@ export class PipelineTask extends AppBaseEntity {
|
|||||||
@Column({ type: 'enum', enum: TaskStatuses, default: TaskStatuses.pending })
|
@Column({ type: 'enum', enum: TaskStatuses, default: TaskStatuses.pending })
|
||||||
status: TaskStatuses;
|
status: TaskStatuses;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column()
|
||||||
startedAt?: Date;
|
startedAt: Date;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column()
|
||||||
endedAt?: Date;
|
endedAt: Date;
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
export const PIPELINE_TASK_QUEUE = 'PIPELINE_TASK_QUEUE';
|
export const PIPELINE_TASK_QUEUE = 'PIPELINE_TASK_QUEUE';
|
||||||
export const PIPELINE_TASK_LOG_QUEUE = 'PIPELINE_TASK_LOG_QUEUE';
|
export const PIPELINE_TASK_LOG_QUEUE = 'PIPELINE_TASK_LOG_QUEUE';
|
||||||
export const PIPELINE_TASK_LOG_PUBSUB = 'PIPELINE_TASK_LOG_PUBSUB';
|
|
||||||
|
@ -7,14 +7,10 @@ import { Pipeline } from '../pipelines/pipeline.entity';
|
|||||||
import { ReposModule } from '../repos/repos.module';
|
import { ReposModule } from '../repos/repos.module';
|
||||||
import { RedisModule } from 'nestjs-redis';
|
import { RedisModule } from 'nestjs-redis';
|
||||||
import { BullModule } from '@nestjs/bull';
|
import { BullModule } from '@nestjs/bull';
|
||||||
import { PipelineTaskConsumer } from './pipeline-task.consumer';
|
|
||||||
import {
|
import {
|
||||||
PIPELINE_TASK_QUEUE,
|
PIPELINE_TASK_QUEUE,
|
||||||
PIPELINE_TASK_LOG_QUEUE,
|
PIPELINE_TASK_LOG_QUEUE,
|
||||||
PIPELINE_TASK_LOG_PUBSUB,
|
|
||||||
} from './pipeline-tasks.constants';
|
} from './pipeline-tasks.constants';
|
||||||
import { PipelineTaskLogsService } from './pipeline-task-logs.service';
|
|
||||||
import { PubSub } from 'apollo-server-express';
|
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
imports: [
|
imports: [
|
||||||
@ -28,15 +24,6 @@ import { PubSub } from 'apollo-server-express';
|
|||||||
RedisModule,
|
RedisModule,
|
||||||
ReposModule,
|
ReposModule,
|
||||||
],
|
],
|
||||||
providers: [
|
providers: [PipelineTasksService, PipelineTasksResolver],
|
||||||
PipelineTasksService,
|
|
||||||
PipelineTasksResolver,
|
|
||||||
PipelineTaskConsumer,
|
|
||||||
PipelineTaskLogsService,
|
|
||||||
{
|
|
||||||
provide: Symbol(PIPELINE_TASK_LOG_PUBSUB),
|
|
||||||
useValue: new PubSub(),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
})
|
})
|
||||||
export class PipelineTasksModule {}
|
export class PipelineTasksModule {}
|
||||||
|
@ -1,27 +1,4 @@
|
|||||||
import { Resolver, Args, Mutation, Subscription } from '@nestjs/graphql';
|
import { Resolver } from '@nestjs/graphql';
|
||||||
import { PipelineTask } from './pipeline-task.entity';
|
|
||||||
import { PipelineTasksService } from './pipeline-tasks.service';
|
|
||||||
import { CreatePipelineTaskInput } from './dtos/create-pipeline-task.input';
|
|
||||||
import { PipelineTaskLogMessage } from './models/pipeline-task-log-message.module';
|
|
||||||
import { PipelineTaskLogArgs } from './dtos/pipeline-task-log.args';
|
|
||||||
import { PipelineTaskLogsService } from './pipeline-task-logs.service';
|
|
||||||
|
|
||||||
@Resolver()
|
@Resolver()
|
||||||
export class PipelineTasksResolver {
|
export class PipelineTasksResolver {}
|
||||||
constructor(
|
|
||||||
private readonly service: PipelineTasksService,
|
|
||||||
private readonly logsService: PipelineTaskLogsService,
|
|
||||||
) {}
|
|
||||||
|
|
||||||
@Mutation(() => PipelineTask)
|
|
||||||
async createPipelineTask(@Args('task') taskDto: CreatePipelineTaskInput) {
|
|
||||||
return await this.service.addTask(taskDto);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Subscription(() => PipelineTaskLogMessage)
|
|
||||||
async pipelineTaskLog(@Args() args: PipelineTaskLogArgs) {
|
|
||||||
const task = await this.service.findTaskById(args.taskId);
|
|
||||||
const asyncIterator = this.logsService.watchLogs(task);
|
|
||||||
return asyncIterator;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -33,11 +33,6 @@ export class PipelineTasksService {
|
|||||||
const redis = this.redis.getClient();
|
const redis = this.redis.getClient();
|
||||||
await redis.lpush(tasksKey, JSON.stringify(task));
|
await redis.lpush(tasksKey, JSON.stringify(task));
|
||||||
await this.doNextTask(pipeline);
|
await this.doNextTask(pipeline);
|
||||||
return task;
|
|
||||||
}
|
|
||||||
|
|
||||||
async findTaskById(id: string) {
|
|
||||||
return await this.repository.findOneOrFail({ id });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async doNextTask(pipeline: Pipeline) {
|
async doNextTask(pipeline: Pipeline) {
|
||||||
|
Loading…
Reference in New Issue
Block a user