paiJobRestServer.ts 2.43 KB
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
3

4
5
'use strict';

6
import { Request, Response, Router } from 'express';
7
import { Inject } from 'typescript-ioc';
8
9
import * as component from '../../common/component';
import { ClusterJobRestServer } from '../common/clusterJobRestServer';
10
11
import { PAITrainingService } from './paiTrainingService';

12
13
14
15
16
17
export interface ParameterFileMeta {
    readonly experimentId: string;
    readonly trialId: string;
    readonly filePath: string;
}

18
19
/**
 * PAI Training service Rest server, provides rest API to support pai job metrics update
20
 *
21
22
 */
@component.Singleton
23
export class PAIJobRestServer extends ClusterJobRestServer {
24
25
    private parameterFileMetaList: ParameterFileMeta[] = [];

26
    @Inject
chicm-ms's avatar
chicm-ms committed
27
    private readonly paiTrainingService: PAITrainingService;
28
29
30
31
32
33
34
35
36

    /**
     * constructor to provide NNIRestServer's own rest property, e.g. port
     */
    constructor() {
        super();
        this.paiTrainingService = component.get(PAITrainingService);
    }

chicm-ms's avatar
chicm-ms committed
37
    protected handleTrialMetrics(jobId: string, metrics: any[]): void {
38
39
40
41
42
43
44
        // Split metrics array into single metric, then emit
        // Warning: If not split metrics into single ones, the behavior will be UNKNOWN
        for (const singleMetric of metrics) {
            this.paiTrainingService.MetricsEmitter.emit('metric', {
                id : jobId,
                data : singleMetric
            });
45
        }
46
    }
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75

    protected createRestHandler(): Router {
        const router: Router = super.createRestHandler();

        router.post(`/parameter-file-meta`, (req: Request, res: Response) => {
            try {
                this.log.info(`POST /parameter-file-meta, body is ${JSON.stringify(req.body)}`);
                this.parameterFileMetaList.push(req.body);
                res.send();
            } catch (err) {
                this.log.error(`POST parameter-file-meta error: ${err}`);
                res.status(500);
                res.send(err.message);
            }
        });

        router.get(`/parameter-file-meta`, (req: Request, res: Response) => {
            try {
                this.log.info(`GET /parameter-file-meta`);
                res.send(this.parameterFileMetaList);
            } catch (err) {
                this.log.error(`GET parameter-file-meta error: ${err}`);
                res.status(500);
                res.send(err.message);
            }
        });

        return router;
    }
76
}