launcher.py 25.6 KB
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
Deshui Yu's avatar
Deshui Yu committed
3
4
5

import json
import os
6
from pathlib import Path
7
import sys
8
import string
chicm-ms's avatar
chicm-ms committed
9
10
import random
import time
Deshui Yu's avatar
Deshui Yu committed
11
import tempfile
12
from subprocess import Popen, check_call, CalledProcessError, PIPE, STDOUT
liuzhe-lz's avatar
liuzhe-lz committed
13
from nni.experiment.config import ExperimentConfig, convert
14
15
from nni.tools.annotation import expand_annotations, generate_search_space
from nni.tools.package_utils import get_builtin_module_class_name
16
import nni_node  # pylint: disable=import-error
Deshui Yu's avatar
Deshui Yu committed
17
from .launcher_utils import validate_all_content
chicm-ms's avatar
chicm-ms committed
18
from .rest_utils import rest_put, rest_post, check_rest_server, check_response
SparkSnail's avatar
SparkSnail committed
19
from .url_utils import cluster_metadata_url, experiment_url, get_local_urls
20
from .config_utils import Config, Experiments
21
from .common_utils import get_yml_content, get_json_content, print_error, print_normal, print_warning, \
chicm-ms's avatar
chicm-ms committed
22
23
                          detect_port, get_user

J-shang's avatar
J-shang committed
24
from .constants import NNI_HOME_DIR, ERROR_INFO, REST_TIME_OUT, EXPERIMENT_SUCCESS_INFO, LOG_HEADER
25
from .command_utils import check_output_command, kill_command
26
from .nnictl_utils import update_experiment
Gems Guo's avatar
Gems Guo committed
27

28
29
k8s_training_services = ['kubeflow', 'frameworkcontroller', 'adl']

30
def get_log_path(experiment_id):
31
    '''generate stdout and stderr log path'''
J-shang's avatar
J-shang committed
32
33
34
    os.makedirs(os.path.join(NNI_HOME_DIR, experiment_id, 'log'), exist_ok=True)
    stdout_full_path = os.path.join(NNI_HOME_DIR, experiment_id, 'log', 'nnictl_stdout.log')
    stderr_full_path = os.path.join(NNI_HOME_DIR, experiment_id, 'log', 'nnictl_stderr.log')
35
36
37
38
39
40
    return stdout_full_path, stderr_full_path

def print_log_content(config_file_name):
    '''print log information'''
    stdout_full_path, stderr_full_path = get_log_path(config_file_name)
    print_normal(' Stdout:')
41
    print(check_output_command(stdout_full_path))
42
43
    print('\n\n')
    print_normal(' Stderr:')
44
    print(check_output_command(stderr_full_path))
45

46
def start_rest_server(port, platform, mode, experiment_id, foreground=False, log_dir=None, log_level=None):
Deshui Yu's avatar
Deshui Yu committed
47
    '''Run nni manager process'''
SparkSnail's avatar
SparkSnail committed
48
    if detect_port(port):
49
        print_error('Port %s is used by another process, please reset the port!\n' \
SparkSnail's avatar
SparkSnail committed
50
        'You could use \'nnictl create --help\' to get help information' % port)
51
        exit(1)
52

53
54
    if (platform not in ['local', 'aml']) and detect_port(int(port) + 1):
        print_error('%s mode need an additional adjacent port %d, and the port %d is used by another process!\n' \
55
        'You could set another port to start experiment!\n' \
56
        'You could use \'nnictl create --help\' to get help information' % (platform, (int(port) + 1), (int(port) + 1)))
57
        exit(1)
Deshui Yu's avatar
Deshui Yu committed
58
59

    print_normal('Starting restful server...')
60

61
    entry_dir = nni_node.__path__[0]
chicm-ms's avatar
chicm-ms committed
62
63
64
    if (not entry_dir) or (not os.path.exists(entry_dir)):
        print_error('Fail to find nni under python library')
        exit(1)
Zejun Lin's avatar
Zejun Lin committed
65
    entry_file = os.path.join(entry_dir, 'main.js')
chicm-ms's avatar
chicm-ms committed
66

demianzhang's avatar
demianzhang committed
67
    if sys.platform == 'win32':
68
69
        node_command = os.path.join(entry_dir, 'node.exe')
    else:
liuzhe-lz's avatar
liuzhe-lz committed
70
        node_command = os.path.join(entry_dir, 'node')
71
72
    cmds = [node_command, '--max-old-space-size=4096', entry_file, '--port', str(port), '--mode', platform, \
            '--experiment_id', experiment_id]
SparkSnail's avatar
SparkSnail committed
73
74
75
76
77
    if mode == 'view':
        cmds += ['--start_mode', 'resume']
        cmds += ['--readonly', 'true']
    else:
        cmds += ['--start_mode', mode]
78
79
80
81
    if log_dir is not None:
        cmds += ['--log_dir', log_dir]
    if log_level is not None:
        cmds += ['--log_level', log_level]
SparkSnail's avatar
SparkSnail committed
82
    if foreground:
83
        cmds += ['--foreground', 'true']
84
    stdout_full_path, stderr_full_path = get_log_path(experiment_id)
85
    with open(stdout_full_path, 'a+') as stdout_file, open(stderr_full_path, 'a+') as stderr_file:
86
87
        start_time = time.time()
        time_now = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(start_time))
88
89
90
91
92
93
        #add time information in the header of log files
        log_header = LOG_HEADER % str(time_now)
        stdout_file.write(log_header)
        stderr_file.write(log_header)
        if sys.platform == 'win32':
            from subprocess import CREATE_NEW_PROCESS_GROUP
SparkSnail's avatar
SparkSnail committed
94
            if foreground:
95
96
97
                process = Popen(cmds, cwd=entry_dir, stdout=PIPE, stderr=STDOUT, creationflags=CREATE_NEW_PROCESS_GROUP)
            else:
                process = Popen(cmds, cwd=entry_dir, stdout=stdout_file, stderr=stderr_file, creationflags=CREATE_NEW_PROCESS_GROUP)
98
        else:
SparkSnail's avatar
SparkSnail committed
99
            if foreground:
100
101
102
                process = Popen(cmds, cwd=entry_dir, stdout=PIPE, stderr=PIPE)
            else:
                process = Popen(cmds, cwd=entry_dir, stdout=stdout_file, stderr=stderr_file)
103
    return process, int(start_time * 1000)
Deshui Yu's avatar
Deshui Yu committed
104

105
def set_trial_config(experiment_config, port, config_file_name):
106
    '''set trial configuration'''
Deshui Yu's avatar
Deshui Yu committed
107
    request_data = dict()
108
    request_data['trial_config'] = experiment_config['trial']
109
    response = rest_put(cluster_metadata_url(port), json.dumps(request_data), REST_TIME_OUT)
110
111
112
    if check_response(response):
        return True
    else:
113
        print('Error message is {}'.format(response.text))
114
        _, stderr_full_path = get_log_path(config_file_name)
SparkSnail's avatar
SparkSnail committed
115
116
117
        if response:
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(response.text), indent=4, sort_keys=True, separators=(',', ':')))
118
        return False
119

120
121
def set_adl_config(experiment_config, port, config_file_name):
    '''set adl configuration'''
122
123
124
125
126
127
128
129
130
131
132
133
    adl_config_data = dict()
    # hack for supporting v2 config, need refactor
    adl_config_data['adl_config'] = {}
    response = rest_put(cluster_metadata_url(port), json.dumps(adl_config_data), REST_TIME_OUT)
    err_message = None
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
            _, stderr_full_path = get_log_path(config_file_name)
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
        return False, err_message
134
135
136
137
138
139
    result, message = setNNIManagerIp(experiment_config, port, config_file_name)
    if not result:
        return result, message
    #set trial_config
    return set_trial_config(experiment_config, port, config_file_name), None

140
141
142
143
144
def setNNIManagerIp(experiment_config, port, config_file_name):
    '''set nniManagerIp'''
    if experiment_config.get('nniManagerIp') is None:
        return True, None
    ip_config_dict = dict()
chicm-ms's avatar
chicm-ms committed
145
    ip_config_dict['nni_manager_ip'] = {'nniManagerIp': experiment_config['nniManagerIp']}
146
    response = rest_put(cluster_metadata_url(port), json.dumps(ip_config_dict), REST_TIME_OUT)
147
148
149
150
151
152
153
154
155
156
    err_message = None
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
            _, stderr_full_path = get_log_path(config_file_name)
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
        return False, err_message
    return True, None

157
def set_kubeflow_config(experiment_config, port, config_file_name):
158
    '''set kubeflow configuration'''
159
160
    kubeflow_config_data = dict()
    kubeflow_config_data['kubeflow_config'] = experiment_config['kubeflowConfig']
161
    response = rest_put(cluster_metadata_url(port), json.dumps(kubeflow_config_data), REST_TIME_OUT)
162
163
164
165
166
167
168
169
    err_message = None
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
            _, stderr_full_path = get_log_path(config_file_name)
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
        return False, err_message
170
171
172
    result, message = setNNIManagerIp(experiment_config, port, config_file_name)
    if not result:
        return result, message
173
174
175
    #set trial_config
    return set_trial_config(experiment_config, port, config_file_name), err_message

176
def set_frameworkcontroller_config(experiment_config, port, config_file_name):
177
    '''set kubeflow configuration'''
178
179
    frameworkcontroller_config_data = dict()
    frameworkcontroller_config_data['frameworkcontroller_config'] = experiment_config['frameworkcontrollerConfig']
180
    response = rest_put(cluster_metadata_url(port), json.dumps(frameworkcontroller_config_data), REST_TIME_OUT)
181
182
183
184
185
186
187
188
189
190
191
192
193
194
    err_message = None
    if not response or not response.status_code == 200:
        if response is not None:
            err_message = response.text
            _, stderr_full_path = get_log_path(config_file_name)
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
        return False, err_message
    result, message = setNNIManagerIp(experiment_config, port, config_file_name)
    if not result:
        return result, message
    #set trial_config
    return set_trial_config(experiment_config, port, config_file_name), err_message

195
196
197
198
199
200
201
202
203
204
205
206
207
def set_shared_storage(experiment_config, port, config_file_name):
    if 'sharedStorage' in experiment_config:
        response = rest_put(cluster_metadata_url(port), json.dumps({'shared_storage_config': experiment_config['sharedStorage']}), REST_TIME_OUT)
        err_message = None
        if not response or not response.status_code == 200:
            if response is not None:
                err_message = response.text
                _, stderr_full_path = get_log_path(config_file_name)
                with open(stderr_full_path, 'a+') as fout:
                    fout.write(json.dumps(json.loads(err_message), indent=4, sort_keys=True, separators=(',', ':')))
            return False, err_message
    return True, None

208
def set_experiment_v1(experiment_config, mode, port, config_file_name):
Deshui Yu's avatar
Deshui Yu committed
209
210
211
212
213
214
    '''Call startExperiment (rest POST /experiment) with yaml file content'''
    request_data = dict()
    request_data['authorName'] = experiment_config['authorName']
    request_data['experimentName'] = experiment_config['experimentName']
    request_data['trialConcurrency'] = experiment_config['trialConcurrency']
    request_data['maxExecDuration'] = experiment_config['maxExecDuration']
liuzhe-lz's avatar
liuzhe-lz committed
215
    request_data['maxExperimentDuration'] = str(experiment_config['maxExecDuration']) + 's'
Deshui Yu's avatar
Deshui Yu committed
216
    request_data['maxTrialNum'] = experiment_config['maxTrialNum']
liuzhe-lz's avatar
liuzhe-lz committed
217
    request_data['maxTrialNumber'] = experiment_config['maxTrialNum']
218
    request_data['searchSpace'] = experiment_config.get('searchSpace')
219
    request_data['trainingServicePlatform'] = experiment_config.get('trainingServicePlatform')
220
221
    # hack for hotfix, fix config.trainingService undefined error, need refactor
    request_data['trainingService'] = {'platform': experiment_config.get('trainingServicePlatform')}
222
223
    if experiment_config.get('description'):
        request_data['description'] = experiment_config['description']
chicm-ms's avatar
chicm-ms committed
224
225
    if experiment_config.get('multiPhase'):
        request_data['multiPhase'] = experiment_config.get('multiPhase')
226
227
    if experiment_config.get('multiThread'):
        request_data['multiThread'] = experiment_config.get('multiThread')
J-shang's avatar
J-shang committed
228
229
    if experiment_config.get('nniManagerIp'):
        request_data['nniManagerIp'] = experiment_config.get('nniManagerIp')
QuanluZhang's avatar
QuanluZhang committed
230
231
    if experiment_config.get('advisor'):
        request_data['advisor'] = experiment_config['advisor']
232
233
234
235
        if request_data['advisor'].get('gpuNum'):
            print_error('gpuNum is deprecated, please use gpuIndices instead.')
        if request_data['advisor'].get('gpuIndices') and isinstance(request_data['advisor'].get('gpuIndices'), int):
            request_data['advisor']['gpuIndices'] = str(request_data['advisor'].get('gpuIndices'))
QuanluZhang's avatar
QuanluZhang committed
236
237
    else:
        request_data['tuner'] = experiment_config['tuner']
238
239
240
241
        if request_data['tuner'].get('gpuNum'):
            print_error('gpuNum is deprecated, please use gpuIndices instead.')
        if request_data['tuner'].get('gpuIndices') and isinstance(request_data['tuner'].get('gpuIndices'), int):
            request_data['tuner']['gpuIndices'] = str(request_data['tuner'].get('gpuIndices'))
QuanluZhang's avatar
QuanluZhang committed
242
243
        if 'assessor' in experiment_config:
            request_data['assessor'] = experiment_config['assessor']
244
245
            if request_data['assessor'].get('gpuNum'):
                print_error('gpuNum is deprecated, please remove it from your config file.')
SparkSnail's avatar
SparkSnail committed
246
    #debug mode should disable version check
247
    if experiment_config.get('debug') is not None:
SparkSnail's avatar
SparkSnail committed
248
        request_data['versionCheck'] = not experiment_config.get('debug')
249
250
251
    #validate version check
    if experiment_config.get('versionCheck') is not None:
        request_data['versionCheck'] = experiment_config.get('versionCheck')
SparkSnail's avatar
SparkSnail committed
252
253
    if experiment_config.get('logCollection'):
        request_data['logCollection'] = experiment_config.get('logCollection')
Deshui Yu's avatar
Deshui Yu committed
254
    request_data['clusterMetaData'] = []
255
    if experiment_config['trainingServicePlatform'] == 'kubeflow':
256
257
258
259
        request_data['clusterMetaData'].append(
            {'key': 'kubeflow_config', 'value': experiment_config['kubeflowConfig']})
        request_data['clusterMetaData'].append(
            {'key': 'trial_config', 'value': experiment_config['trial']})
260
261
262
263
264
    elif experiment_config['trainingServicePlatform'] == 'frameworkcontroller':
        request_data['clusterMetaData'].append(
            {'key': 'frameworkcontroller_config', 'value': experiment_config['frameworkcontrollerConfig']})
        request_data['clusterMetaData'].append(
            {'key': 'trial_config', 'value': experiment_config['trial']})
J-shang's avatar
J-shang committed
265
266
267
    elif experiment_config['trainingServicePlatform'] == 'adl':
        request_data['clusterMetaData'].append(
            {'key': 'trial_config', 'value': experiment_config['trial']})
268
    response = rest_post(experiment_url(port), json.dumps(request_data), REST_TIME_OUT, show_error=True)
269
270
271
    if check_response(response):
        return response
    else:
272
        _, stderr_full_path = get_log_path(config_file_name)
273
        if response is not None:
SparkSnail's avatar
SparkSnail committed
274
275
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(response.text), indent=4, sort_keys=True, separators=(',', ':')))
SparkSnail's avatar
SparkSnail committed
276
            print_error('Setting experiment error, error message is {}'.format(response.text))
277
        return None
Deshui Yu's avatar
Deshui Yu committed
278

279
280
281
282
283
284
285
286
287
288
289
290
291
def set_experiment_v2(experiment_config, mode, port, config_file_name):
    '''Call startExperiment (rest POST /experiment) with yaml file content'''
    response = rest_post(experiment_url(port), json.dumps(experiment_config), REST_TIME_OUT, show_error=True)
    if check_response(response):
        return response
    else:
        _, stderr_full_path = get_log_path(config_file_name)
        if response is not None:
            with open(stderr_full_path, 'a+') as fout:
                fout.write(json.dumps(json.loads(response.text), indent=4, sort_keys=True, separators=(',', ':')))
            print_error('Setting experiment error, error message is {}'.format(response.text))
        return None

SparkSnail's avatar
SparkSnail committed
292
293
294
295
def set_platform_config(platform, experiment_config, port, config_file_name, rest_process):
    '''call set_cluster_metadata for specific platform'''
    print_normal('Setting {0} config...'.format(platform))
    config_result, err_msg = None, None
296
297
    if platform == 'adl':
        config_result, err_msg = set_adl_config(experiment_config, port, config_file_name)
SparkSnail's avatar
SparkSnail committed
298
299
300
301
302
303
304
    elif platform == 'kubeflow':
        config_result, err_msg = set_kubeflow_config(experiment_config, port, config_file_name)
    elif platform == 'frameworkcontroller':
        config_result, err_msg = set_frameworkcontroller_config(experiment_config, port, config_file_name)
    else:
        raise Exception(ERROR_INFO % 'Unsupported platform!')
        exit(1)
305
306
    if config_result:
        config_result, err_msg = set_shared_storage(experiment_config, port, config_file_name)
SparkSnail's avatar
SparkSnail committed
307
308
309
310
311
312
313
314
315
316
    if config_result:
        print_normal('Successfully set {0} config!'.format(platform))
    else:
        print_error('Failed! Error is: {}'.format(err_msg))
        try:
            kill_command(rest_process.pid)
        except Exception:
            raise Exception(ERROR_INFO % 'Rest server stopped!')
        exit(1)

317
def launch_experiment(args, experiment_config, mode, experiment_id, config_version):
Deshui Yu's avatar
Deshui Yu committed
318
    '''follow steps to start rest server and start experiment'''
319
    # check packages for tuner
320
    package_name, module_name = None, None
321
    if experiment_config.get('tuner') and experiment_config['tuner'].get('builtinTunerName'):
322
        package_name = experiment_config['tuner']['builtinTunerName']
chicm-ms's avatar
chicm-ms committed
323
        module_name, _ = get_builtin_module_class_name('tuners', package_name)
324
325
    elif experiment_config.get('advisor') and experiment_config['advisor'].get('builtinAdvisorName'):
        package_name = experiment_config['advisor']['builtinAdvisorName']
chicm-ms's avatar
chicm-ms committed
326
        module_name, _ = get_builtin_module_class_name('advisors', package_name)
327
    if package_name and module_name:
328
        try:
329
            stdout_full_path, stderr_full_path = get_log_path(experiment_id)
330
331
            with open(stdout_full_path, 'a+') as stdout_file, open(stderr_full_path, 'a+') as stderr_file:
                check_call([sys.executable, '-c', 'import %s'%(module_name)], stdout=stdout_file, stderr=stderr_file)
chicm-ms's avatar
chicm-ms committed
332
        except CalledProcessError:
333
            print_error('some errors happen when import package %s.' %(package_name))
334
            print_log_content(experiment_id)
335
336
337
            if package_name in ['SMAC', 'BOHB', 'PPOTuner']:
                print_error(f'The dependencies for {package_name} can be installed through pip install nni[{package_name}]')
            raise
338
339
340
341
    if config_version == 1:
        log_dir = experiment_config['logDir'] if experiment_config.get('logDir') else NNI_HOME_DIR
    else:
        log_dir = experiment_config['experimentWorkingDirectory'] if experiment_config.get('experimentWorkingDirectory') else NNI_HOME_DIR
342
    log_level = experiment_config['logLevel'] if experiment_config.get('logLevel') else None
SparkSnail's avatar
SparkSnail committed
343
    #view experiment mode do not need debug function, when view an experiment, there will be no new logs created
SparkSnail's avatar
SparkSnail committed
344
    foreground = False
SparkSnail's avatar
SparkSnail committed
345
    if mode != 'view':
SparkSnail's avatar
SparkSnail committed
346
        foreground = args.foreground
SparkSnail's avatar
SparkSnail committed
347
348
        if log_level not in ['trace', 'debug'] and (args.debug or experiment_config.get('debug') is True):
            log_level = 'debug'
Deshui Yu's avatar
Deshui Yu committed
349
    # start rest server
350
351
    if config_version == 1:
        platform = experiment_config['trainingServicePlatform']
liuzhe-lz's avatar
liuzhe-lz committed
352
353
    elif isinstance(experiment_config['trainingService'], list):
        platform = 'hybrid'
354
355
356
357
    else:
        platform = experiment_config['trainingService']['platform']

    rest_process, start_time = start_rest_server(args.port, platform, \
358
                                                 mode, experiment_id, foreground, log_dir, log_level)
359
    # save experiment information
J-shang's avatar
J-shang committed
360
    Experiments().add_experiment(experiment_id, args.port, start_time,
361
362
                                 platform,
                                 experiment_config.get('experimentName', 'N/A'), pid=rest_process.pid, logDir=log_dir)
Deshui Yu's avatar
Deshui Yu committed
363
364
    # Deal with annotation
    if experiment_config.get('useAnnotation'):
365
        path = os.path.join(tempfile.gettempdir(), get_user(), 'nni', 'annotation')
QuanluZhang's avatar
QuanluZhang committed
366
367
        if not os.path.isdir(path):
            os.makedirs(path)
liuzhe-lz's avatar
liuzhe-lz committed
368
        path = tempfile.mkdtemp(dir=path)
369
370
        nas_mode = experiment_config['trial'].get('nasMode', 'classic_mode')
        code_dir = expand_annotations(experiment_config['trial']['codeDir'], path, nas_mode=nas_mode)
liuzhe-lz's avatar
liuzhe-lz committed
371
372
        experiment_config['trial']['codeDir'] = code_dir
        search_space = generate_search_space(code_dir)
liuzhe-lz's avatar
liuzhe-lz committed
373
        experiment_config['searchSpace'] = search_space
Deshui Yu's avatar
Deshui Yu committed
374
        assert search_space, ERROR_INFO % 'Generated search space is empty'
375
376
377
    elif config_version == 1:
        if experiment_config.get('searchSpacePath'):
            search_space = get_json_content(experiment_config.get('searchSpacePath'))
liuzhe-lz's avatar
liuzhe-lz committed
378
            experiment_config['searchSpace'] = search_space
379
        else:
liuzhe-lz's avatar
liuzhe-lz committed
380
            experiment_config['searchSpace'] = ''
Deshui Yu's avatar
Deshui Yu committed
381
382

    # check rest server
goooxu's avatar
goooxu committed
383
    running, _ = check_rest_server(args.port)
384
    if running:
385
        print_normal('Successfully started Restful server!')
Deshui Yu's avatar
Deshui Yu committed
386
387
    else:
        print_error('Restful server start failed!')
388
        print_log_content(experiment_id)
Deshui Yu's avatar
Deshui Yu committed
389
        try:
390
            kill_command(rest_process.pid)
Deshui Yu's avatar
Deshui Yu committed
391
392
        except Exception:
            raise Exception(ERROR_INFO % 'Rest server stopped!')
goooxu's avatar
goooxu committed
393
        exit(1)
394
395
396
397
    if config_version == 1 and mode != 'view':
        # set platform configuration
        set_platform_config(experiment_config['trainingServicePlatform'], experiment_config, args.port,\
                            experiment_id, rest_process)
chicm-ms's avatar
chicm-ms committed
398

Deshui Yu's avatar
Deshui Yu committed
399
400
    # start a new experiment
    print_normal('Starting experiment...')
401
    # set debug configuration
SparkSnail's avatar
SparkSnail committed
402
    if mode != 'view' and experiment_config.get('debug') is None:
403
        experiment_config['debug'] = args.debug
404
405
406
407
    if config_version == 1:
        response = set_experiment_v1(experiment_config, mode, args.port, experiment_id)
    else:
        response = set_experiment_v2(experiment_config, mode, args.port, experiment_id)
Deshui Yu's avatar
Deshui Yu committed
408
409
410
411
    if response:
        if experiment_id is None:
            experiment_id = json.loads(response.text).get('experiment_id')
    else:
412
        print_error('Start experiment failed!')
413
        print_log_content(experiment_id)
Deshui Yu's avatar
Deshui Yu committed
414
        try:
415
            kill_command(rest_process.pid)
Deshui Yu's avatar
Deshui Yu committed
416
        except Exception:
417
            raise Exception(ERROR_INFO % 'Restful server stopped!')
goooxu's avatar
goooxu committed
418
        exit(1)
419
    if experiment_config.get('nniManagerIp'):
420
        web_ui_url_list = ['http://{0}:{1}'.format(experiment_config['nniManagerIp'], str(args.port))]
421
422
    else:
        web_ui_url_list = get_local_urls(args.port)
J-shang's avatar
J-shang committed
423
    Experiments().update_experiment(experiment_id, 'webuiUrl', web_ui_url_list)
424

425
    print_normal(EXPERIMENT_SUCCESS_INFO % (experiment_id, '   '.join(web_ui_url_list)))
SparkSnail's avatar
SparkSnail committed
426
    if mode != 'view' and args.foreground:
427
428
429
430
431
432
433
        try:
            while True:
                log_content = rest_process.stdout.readline().strip().decode('utf-8')
                print(log_content)
        except KeyboardInterrupt:
            kill_command(rest_process.pid)
            print_normal('Stopping experiment...')
Deshui Yu's avatar
Deshui Yu committed
434

liuzhe-lz's avatar
liuzhe-lz committed
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
def _validate_v1(config, path):
    try:
        validate_all_content(config, path)
    except Exception as e:
        print_error(f'Config V1 validation failed: {repr(e)}')
        exit(1)

def _validate_v2(config, path):
    base_path = Path(path).parent
    try:
        conf = ExperimentConfig(_base_path=base_path, **config)
        return conf.json()
    except Exception as e:
        print_error(f'Config V2 validation failed: {repr(e)}')

SparkSnail's avatar
SparkSnail committed
450
451
def create_experiment(args):
    '''start a new experiment'''
452
    experiment_id = ''.join(random.sample(string.ascii_letters + string.digits, 8))
SparkSnail's avatar
SparkSnail committed
453
454
455
456
    config_path = os.path.abspath(args.config)
    if not os.path.exists(config_path):
        print_error('Please set correct config path!')
        exit(1)
457
    config_yml = get_yml_content(config_path)
458

liuzhe-lz's avatar
liuzhe-lz committed
459
460
461
462
463
464
465
466
467
468
469
470
471
    if 'trainingServicePlatform' in config_yml:
        _validate_v1(config_yml, config_path)
        platform = config_yml['trainingServicePlatform']
        if platform in k8s_training_services:
            schema = 1
            config_v1 = config_yml
        else:
            schema = 2
            from nni.experiment.config import convert
            config_v2 = convert.to_v2(config_yml).json()
    else:
        config_v2 = _validate_v2(config_yml, config_path)
        schema = 2
SparkSnail's avatar
SparkSnail committed
472

473
    try:
liuzhe-lz's avatar
liuzhe-lz committed
474
475
        if schema == 1:
            launch_experiment(args, config_v1, 'new', experiment_id, 1)
476
477
        else:
            launch_experiment(args, config_v2, 'new', experiment_id, 2)
478
    except Exception as exception:
479
        restServerPid = Experiments().get_all_experiments().get(experiment_id, {}).get('pid')
480
481
482
483
        if restServerPid:
            kill_command(restServerPid)
        print_error(exception)
        exit(1)
SparkSnail's avatar
SparkSnail committed
484
485
486

def manage_stopped_experiment(args, mode):
    '''view a stopped experiment'''
SparkSnail's avatar
SparkSnail committed
487
    update_experiment()
J-shang's avatar
J-shang committed
488
489
    experiments_config = Experiments()
    experiments_dict = experiments_config.get_all_experiments()
490
491
492
    experiment_id = None
    #find the latest stopped experiment
    if not args.id:
493
        print_error('Please set experiment id! \nYou could use \'nnictl {0} id\' to {0} a stopped experiment!\n' \
SparkSnail's avatar
SparkSnail committed
494
        'You could use \'nnictl experiment list --all\' to show all experiments!'.format(mode))
SparkSnail's avatar
SparkSnail committed
495
        exit(1)
496
    else:
J-shang's avatar
J-shang committed
497
        if experiments_dict.get(args.id) is None:
498
499
            print_error('Id %s not exist!' % args.id)
            exit(1)
J-shang's avatar
J-shang committed
500
        if experiments_dict[args.id]['status'] != 'STOPPED':
SparkSnail's avatar
SparkSnail committed
501
            print_error('Only stopped experiments can be {0}ed!'.format(mode))
502
503
            exit(1)
        experiment_id = args.id
SparkSnail's avatar
SparkSnail committed
504
    print_normal('{0} experiment {1}...'.format(mode, experiment_id))
J-shang's avatar
J-shang committed
505
506
    experiment_config = Config(experiment_id, experiments_dict[args.id]['logDir']).get_config()
    experiments_config.update_experiment(args.id, 'port', args.port)
507
    assert 'trainingService' in experiment_config or 'trainingServicePlatform' in experiment_config
508
    try:
509
        if 'trainingService' in experiment_config:
510
            experiment_config['experimentWorkingDirectory'] = experiments_dict[args.id]['logDir']
511
512
            launch_experiment(args, experiment_config, mode, experiment_id, 2)
        else:
513
            experiment_config['logDir'] = experiments_dict[args.id]['logDir']
514
            launch_experiment(args, experiment_config, mode, experiment_id, 1)
515
    except Exception as exception:
516
        restServerPid = Experiments().get_all_experiments().get(experiment_id, {}).get('pid')
517
518
519
520
        if restServerPid:
            kill_command(restServerPid)
        print_error(exception)
        exit(1)
Deshui Yu's avatar
Deshui Yu committed
521

SparkSnail's avatar
SparkSnail committed
522
523
524
def view_experiment(args):
    '''view a stopped experiment'''
    manage_stopped_experiment(args, 'view')
Deshui Yu's avatar
Deshui Yu committed
525

SparkSnail's avatar
SparkSnail committed
526
527
def resume_experiment(args):
    '''resume an experiment'''
liuzhe-lz's avatar
liuzhe-lz committed
528
    manage_stopped_experiment(args, 'resume')