This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PAI Training Service implementation (#128)
* PAI Training service implementation **1. Implement PAITrainingService **2. Add trial-keeper python module, and modify setup.py to install the module **3. Add PAItrainingService rest server to collect metrics from PAI container.
- Loading branch information
Showing
35 changed files
with
2,104 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation | ||
* All rights reserved. | ||
* | ||
* MIT License | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
* to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING | ||
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
import { TrialJobStatus } from '../../common/trainingService'; | ||
|
||
// tslint:disable-next-line:max-classes-per-file | ||
export class JobMetrics { | ||
public readonly jobId: string; | ||
public readonly metrics: string[]; | ||
public readonly jobStatus: TrialJobStatus; | ||
public readonly endTimestamp: number; | ||
|
||
constructor(jobId : string, metrics : string[], jobStatus : TrialJobStatus, endTimestamp : number) { | ||
this.jobId = jobId; | ||
this.metrics = metrics; | ||
this.jobStatus = jobStatus; | ||
this.endTimestamp = endTimestamp; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
200 changes: 200 additions & 0 deletions
200
src/nni_manager/training_service/pai/hdfsClientUtility.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,200 @@ | ||
/** | ||
* Copyright (c) Microsoft Corporation | ||
* All rights reserved. | ||
* | ||
* MIT License | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and | ||
* to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING | ||
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
import * as path from 'path'; | ||
import * as fs from 'fs'; | ||
import { Deferred } from 'ts-deferred'; | ||
import { getLogger } from '../../common/log'; | ||
|
||
/** | ||
* HDFS client utility, including copy file/directory | ||
*/ | ||
export namespace HDFSClientUtility { | ||
/** | ||
* Copy a local file to hdfs directory | ||
* | ||
* @param localFilePath local file path(source) | ||
* @param hdfsFilePath hdfs file path(target) | ||
* @param hdfsClient hdfs client | ||
*/ | ||
export async function copyFileToHdfs(localFilePath : string, hdfsFilePath : string, hdfsClient : any) : Promise<void> { | ||
const deferred: Deferred<void> = new Deferred<void>(); | ||
fs.exists(localFilePath, (exists : boolean) => { | ||
// Detect if local file exist | ||
if (exists) { | ||
var localFileStream = fs.createReadStream(localFilePath); | ||
var hdfsFileStream = hdfsClient.createWriteStream(hdfsFilePath); | ||
localFileStream.pipe(hdfsFileStream); | ||
hdfsFileStream.on('finish', function onFinish () { | ||
deferred.resolve(); | ||
}); | ||
hdfsFileStream.on('error', (err : any) => { | ||
getLogger().error(`HDFSCientUtility:copyFileToHdfs, copy file failed, err is ${err.message}`); | ||
deferred.reject(err); | ||
}); | ||
} else { | ||
getLogger().error(`HDFSCientUtility:copyFileToHdfs, ${localFilePath} doesn't exist locally`); | ||
deferred.reject('file not exist!'); | ||
} | ||
}); | ||
return deferred.promise; | ||
} | ||
|
||
/** | ||
* Recursively copy local directory to hdfs directory | ||
* | ||
* @param localDirectory local directory | ||
* @param hdfsDirectory HDFS directory | ||
* @param hdfsClient HDFS client | ||
*/ | ||
export async function copyDirectoryToHdfs(localDirectory : string, hdfsDirectory : string, hdfsClient : any) : Promise<void>{ | ||
const deferred: Deferred<void> = new Deferred<void>(); | ||
// TODO: fs.readdirSync doesn't support ~($HOME) | ||
const fileNameArray: string[] = fs.readdirSync(localDirectory); | ||
|
||
for(var fileName of fileNameArray){ | ||
const fullFilePath: string = path.join(localDirectory, fileName); | ||
try { | ||
if (fs.lstatSync(fullFilePath).isFile()) { | ||
await copyFileToHdfs(fullFilePath, path.join(hdfsDirectory, fileName), hdfsClient); | ||
} else { | ||
// If filePath is a directory, recuisively copy it to remote directory | ||
await copyDirectoryToHdfs(fullFilePath, path.join(hdfsDirectory, fileName), hdfsClient); | ||
} | ||
} catch(error) { | ||
deferred.reject(error); | ||
} | ||
} | ||
// All files/directories are copied successfully, resolve | ||
deferred.resolve(); | ||
|
||
return deferred.promise; | ||
} | ||
|
||
/** | ||
* Read content from HDFS file | ||
* | ||
* @param hdfsPath HDFS file path | ||
* @param hdfsClient HDFS client | ||
*/ | ||
export async function readFileFromHDFS(hdfsPath : string, hdfsClient :any) : Promise<Buffer> { | ||
const deferred: Deferred<Buffer> = new Deferred<Buffer>(); | ||
let buffer : Buffer = Buffer.alloc(0); | ||
|
||
const exist : boolean = await pathExists(hdfsPath, hdfsClient); | ||
if(!exist) { | ||
deferred.reject(`${hdfsPath} doesn't exists`); | ||
} | ||
|
||
const remoteFileStream = hdfsClient.createReadStream(hdfsPath); | ||
remoteFileStream.on('error', (err : any) => { | ||
// Reject with the error | ||
deferred.reject(err); | ||
}); | ||
|
||
remoteFileStream.on('data', (chunk : any) => { | ||
// Concat the data chunk to buffer | ||
buffer = Buffer.concat([buffer, chunk]); | ||
}); | ||
|
||
remoteFileStream.on('finish', function onFinish () { | ||
// Upload is done, resolve | ||
deferred.resolve(buffer); | ||
}); | ||
|
||
return deferred.promise; | ||
} | ||
|
||
/** | ||
* Check if an HDFS path already exists | ||
* | ||
* @param hdfsPath target path need to check in HDFS | ||
* @param hdfsClient HDFS client | ||
*/ | ||
export async function pathExists(hdfsPath : string, hdfsClient : any) : Promise<boolean> { | ||
const deferred : Deferred<boolean> = new Deferred<boolean>(); | ||
hdfsClient.exists(hdfsPath, (exist : boolean ) => { | ||
deferred.resolve(exist); | ||
}) | ||
|
||
return deferred.promise; | ||
} | ||
|
||
/** | ||
* Mkdir in HDFS, use default permission 755 | ||
* | ||
* @param hdfsPath the path in HDFS. It could be either file or directory | ||
* @param hdfsClient | ||
*/ | ||
export function mkdir(hdfsPath : string, hdfsClient : any) : Promise<boolean> { | ||
const deferred : Deferred<boolean> = new Deferred<boolean>(); | ||
|
||
hdfsClient.mkdir(hdfsPath, (err : any)=> { | ||
if(!err) { | ||
deferred.resolve(true); | ||
} else { | ||
deferred.reject(err.message); | ||
} | ||
}); | ||
|
||
return deferred.promise; | ||
} | ||
|
||
/** | ||
* Read directory contents | ||
* | ||
* @param hdfsPath the path in HDFS. It could be either file or directory | ||
* @param hdfsClient | ||
*/ | ||
export async function readdir(hdfsPath : string, hdfsClient : any) : Promise<string[]> { | ||
const deferred : Deferred<string[]> = new Deferred<string[]>(); | ||
const exist : boolean = await pathExists(hdfsPath, hdfsClient); | ||
if(!exist) { | ||
deferred.reject(`${hdfsPath} doesn't exists`); | ||
} | ||
|
||
hdfsClient.readdir(hdfsPath, (err : any, files : any[] ) => { | ||
if(err) { | ||
deferred.reject(err); | ||
} | ||
|
||
deferred.resolve(files); | ||
}); | ||
|
||
return deferred.promise; | ||
} | ||
|
||
/** | ||
* Delete HDFS path | ||
* @param hdfsPath the path in HDFS. It could be either file or directory | ||
* @param hdfsClient | ||
* @param recursive Mark if need to delete recursively | ||
*/ | ||
export function deletePath(hdfsPath : string, hdfsClient : any, recursive : boolean = true) : Promise<boolean> { | ||
const deferred : Deferred<boolean> = new Deferred<boolean>(); | ||
hdfsClient.unlink(hdfsPath, recursive, (err : any)=> { | ||
if(!err) { | ||
deferred.resolve(true); | ||
} else { | ||
deferred.reject(err.message); | ||
} | ||
}); | ||
return deferred.promise; | ||
} | ||
} |
Oops, something went wrong.