remote_constants.py 1.6 KB
Newer Older
H
Hongsheng Zeng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

F
fuyw 已提交
15
CPU_TAG = b'[CPU]'
H
Hongsheng Zeng 已提交
16 17
CONNECT_TAG = b'[CONNECT]'
HEARTBEAT_TAG = b'[HEARTBEAT]'
F
fuyw 已提交
18
KILLJOB_TAG = b'[KILLJOB]'
F
fuyw 已提交
19
MONITOR_TAG = b'[MONITOR]'
20
STATUS_TAG = b'[STATUS]'
F
fuyw 已提交
21 22 23 24 25 26 27 28 29

WORKER_CONNECT_TAG = b'[WORKER_CONNECT]'
WORKER_INITIALIZED_TAG = b'[WORKER_INITIALIZED]'
CLIENT_CONNECT_TAG = b'[CLIENT_CONNECT]'
CLIENT_SUBMIT_TAG = b'[CLIENT_SUBMIT]'
SEND_FILE_TAG = b'[SEND_FILE]'
SUBMIT_JOB_TAG = b'[SUBMIT_JOB]'
NEW_JOB_TAG = b'[NEW_JOB]'

30
CHECK_VERSION_TAG = b'[CHECK_VERSION]'
F
fuyw 已提交
31 32
INIT_OBJECT_TAG = b'[INIT_OBJECT]'
CALL_TAG = b'[CALL]'
33 34
GET_ATTRIBUTE_TAG = b'[GET_ATTRIBUTE]'
SET_ATTRIBUTE_TAG = b'[SET_ATTRIBUTE]'
H
Hongsheng Zeng 已提交
35 36 37 38 39 40 41

EXCEPTION_TAG = b'[EXCEPTION]'
ATTRIBUTE_EXCEPTION_TAG = b'[ATTRIBUTE_EXCEPTION]'
SERIALIZE_EXCEPTION_TAG = b'[SERIALIZE_EXCEPTION]'
DESERIALIZE_EXCEPTION_TAG = b'[DESERIALIZE_EXCEPTION]'

NORMAL_TAG = b'[NORMAL]'
H
Hongsheng Zeng 已提交
42 43 44

# interval of heartbeat mechanism in the unit of second
HEARTBEAT_INTERVAL_S = 10
F
fuyw 已提交
45 46
HEARTBEAT_TIMEOUT_S = 10
HEARTBEAT_RCVTIMEO_S = HEARTBEAT_INTERVAL_S + HEARTBEAT_TIMEOUT_S * 2