paiJobRestServer.ts 2.33 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 { ClusterJobRestServer } from '../common/clusterJobRestServer';
8
9
import { PAITrainingService } from './paiTrainingService';

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

16
17
/**
 * PAI Training service Rest server, provides rest API to support pai job metrics update
18
 *
19
 */
20
export class PAIJobRestServer extends ClusterJobRestServer {
21
    protected parameterFileMetaList: ParameterFileMeta[] = [];
22

23
    protected readonly paiTrainingService: PAITrainingService;
24
25
26
27

    /**
     * constructor to provide NNIRestServer's own rest property, e.g. port
     */
28
    constructor (paiTrainingService: PAITrainingService) {
29
        super();
30
        this.paiTrainingService = paiTrainingService;
31
32
    }

chicm-ms's avatar
chicm-ms committed
33
    protected handleTrialMetrics(jobId: string, metrics: any[]): void {
34
35
36
37
38
39
40
        // 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
            });
41
        }
42
    }
43
44
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

    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;
    }
72
}