Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
9c58c6f9
S
Serving
项目概览
PaddlePaddle
/
Serving
1 年多 前同步成功
通知
186
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9c58c6f9
编写于
4月 22, 2020
作者:
B
barriery
提交者:
GitHub
4月 22, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #466 from barrierye/fix-monitor
fix bug: local_path in monitor not used
上级
a3f85163
b3c1beb6
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
544 addition
and
22 deletion
+544
-22
python/paddle_serving_server/monitor.py
python/paddle_serving_server/monitor.py
+40
-22
python/paddle_serving_server_gpu/monitor.py
python/paddle_serving_server_gpu/monitor.py
+504
-0
未找到文件。
python/paddle_serving_server/monitor.py
浏览文件 @
9c58c6f9
...
...
@@ -91,6 +91,7 @@ class Monitor(object):
model_name
))
return
model_name
tar_model_path
=
os
.
path
.
join
(
local_tmp_path
,
model_name
)
_LOGGER
.
info
(
"try to unpack remote file({})"
.
format
(
tar_model_path
))
if
not
tarfile
.
is_tarfile
(
tar_model_path
):
raise
Exception
(
'not a tar packaged file type. {}'
.
format
(
self
.
_check_param_help
(
'remote_model_name'
,
model_name
)))
...
...
@@ -105,10 +106,11 @@ class Monitor(object):
self
.
_check_param_help
(
'local_tmp_path'
,
local_tmp_path
)))
finally
:
os
.
remove
(
tar_model_path
)
_LOGGER
.
debug
(
'remove packed file({}).'
.
format
(
model_name
))
_LOGGER
.
debug
(
'remove packed file({}).'
.
format
(
tar_model_path
))
_LOGGER
.
info
(
'using unpacked filename: {}.'
.
format
(
unpacked_filename
))
if
not
os
.
path
.
exists
(
unpacked_filename
):
if
not
os
.
path
.
exists
(
os
.
path
.
join
(
local_tmp_path
,
unpacked_filename
)):
raise
Exception
(
'file not exist. {}'
.
format
(
self
.
_check_param_help
(
'unpacked_filename'
,
unpacked_filename
)))
...
...
@@ -124,13 +126,14 @@ class Monitor(object):
'_local_tmp_path'
,
'_interval'
]
self
.
_print_params
(
params
)
if
not
os
.
path
.
exists
(
self
.
_local_tmp_path
):
_LOGGER
.
info
(
'mkdir: {}'
.
format
(
self
.
_local_tmp_path
))
os
.
makedirs
(
self
.
_local_tmp_path
)
local_tmp_path
=
os
.
path
.
join
(
self
.
_local_path
,
self
.
_local_tmp_path
)
_LOGGER
.
info
(
'local_tmp_path: {}'
.
format
(
local_tmp_path
))
if
not
os
.
path
.
exists
(
local_tmp_path
):
_LOGGER
.
info
(
'mkdir: {}'
.
format
(
local_tmp_path
))
os
.
makedirs
(
local_tmp_path
)
while
True
:
[
flag
,
timestamp
]
=
self
.
_exist_remote_file
(
self
.
_remote_path
,
self
.
_remote_donefile_name
,
self
.
_local_tmp_path
)
self
.
_remote_path
,
self
.
_remote_donefile_name
,
local_tmp_path
)
if
flag
:
if
self
.
_remote_donefile_timestamp
is
None
or
\
timestamp
!=
self
.
_remote_donefile_timestamp
:
...
...
@@ -139,15 +142,15 @@ class Monitor(object):
self
.
_remote_donefile_timestamp
=
timestamp
self
.
_pull_remote_dir
(
self
.
_remote_path
,
self
.
_remote_model_name
,
self
.
_
local_tmp_path
)
local_tmp_path
)
_LOGGER
.
info
(
'pull remote model({}).'
.
format
(
self
.
_remote_model_name
))
unpacked_filename
=
self
.
_decompress_model_file
(
self
.
_
local_tmp_path
,
self
.
_remote_model_name
,
local_tmp_path
,
self
.
_remote_model_name
,
self
.
_unpacked_filename
)
self
.
_update_local_model
(
self
.
_local_tmp_path
,
unpacked_filename
,
self
.
_local_path
,
self
.
_local_model_name
)
self
.
_update_local_model
(
local_tmp_path
,
unpacked_filename
,
self
.
_local_path
,
self
.
_local_model_name
)
_LOGGER
.
info
(
'update local model({}).'
.
format
(
self
.
_local_model_name
))
self
.
_update_local_donefile
(
self
.
_local_path
,
...
...
@@ -220,7 +223,12 @@ class HadoopMonitor(Monitor):
local_dirpath
=
os
.
path
.
join
(
local_tmp_path
,
dirname
)
if
os
.
path
.
exists
(
local_dirpath
):
_LOGGER
.
info
(
'remove old temporary model file({}).'
.
format
(
dirname
))
shutil
.
rmtree
(
local_dirpath
)
if
self
.
_unpacked_filename
is
None
:
# the remote file is model folder.
shutil
.
rmtree
(
local_dirpath
)
else
:
# the remote file is a packed model file
os
.
remove
(
local_dirpath
)
remote_dirpath
=
os
.
path
.
join
(
remote_path
,
dirname
)
cmd
=
'{} -get {} {} 2>/dev/null'
.
format
(
self
.
_cmd_prefix
,
remote_dirpath
,
local_dirpath
)
...
...
@@ -301,8 +309,8 @@ class FTPMonitor(Monitor):
os
.
path
.
join
(
remote_path
,
remote_dirname
),
name
,
os
.
path
.
join
(
local_tmp_path
,
remote_dirname
),
overwrite
)
else
:
self
.
_download_remote_file
(
remote_dir
name
,
name
,
local_
tmp_
path
,
overwrite
)
self
.
_download_remote_file
(
remote_dir
path
,
name
,
local_
dir
path
,
overwrite
)
except
ftplib
.
error_perm
:
_LOGGER
.
debug
(
'{} is file.'
.
format
(
remote_dirname
))
self
.
_download_remote_file
(
remote_path
,
remote_dirname
,
...
...
@@ -325,17 +333,17 @@ class GeneralMonitor(Monitor):
def
_get_local_file_timestamp
(
self
,
filename
):
return
os
.
path
.
getmtime
(
filename
)
def
_exist_remote_file
(
self
,
path
,
filename
,
local_tmp_path
):
remote_filepath
=
os
.
path
.
join
(
path
,
filename
)
def
_exist_remote_file
(
self
,
remote_
path
,
filename
,
local_tmp_path
):
remote_filepath
=
os
.
path
.
join
(
remote_
path
,
filename
)
url
=
'{}/{}'
.
format
(
self
.
_general_host
,
remote_filepath
)
_LOGGER
.
debug
(
'remote file url: {}'
.
format
(
url
))
cmd
=
'wget -N -P {} {} &>/dev/null'
.
format
(
local_tmp_path
,
url
)
# only for check donefile, which is not a folder.
cmd
=
'wget -nd -N -P {} {} &>/dev/null'
.
format
(
local_tmp_path
,
url
)
_LOGGER
.
debug
(
'wget cmd: {}'
.
format
(
cmd
))
if
os
.
system
(
cmd
)
!=
0
:
_LOGGER
.
debug
(
'remote file({}) not exist.'
.
format
(
filename
))
_LOGGER
.
debug
(
'remote file({}) not exist.'
.
format
(
remote_filepath
))
return
[
False
,
None
]
else
:
_LOGGER
.
debug
(
'download remote file({}).'
.
format
(
filename
))
timestamp
=
self
.
_get_local_file_timestamp
(
os
.
path
.
join
(
local_tmp_path
,
filename
))
return
[
True
,
timestamp
]
...
...
@@ -344,7 +352,13 @@ class GeneralMonitor(Monitor):
remote_dirpath
=
os
.
path
.
join
(
remote_path
,
dirname
)
url
=
'{}/{}'
.
format
(
self
.
_general_host
,
remote_dirpath
)
_LOGGER
.
debug
(
'remote file url: {}'
.
format
(
url
))
cmd
=
'wget -nH -r -P {} {} &>/dev/null'
.
format
(
local_tmp_path
,
url
)
if
self
.
_unpacked_filename
is
None
:
# the remote file is model folder.
cmd
=
'wget -nH -r -P {} {} &>/dev/null'
.
format
(
os
.
path
.
join
(
local_tmp_path
,
dirname
),
url
)
else
:
# the remote file is a packed model file
cmd
=
'wget -nd -N -P {} {} &>/dev/null'
.
format
(
local_tmp_path
,
url
)
_LOGGER
.
debug
(
'wget cmd: {}'
.
format
(
cmd
))
if
os
.
system
(
cmd
)
!=
0
:
raise
Exception
(
'pull remote dir failed. {}'
.
format
(
...
...
@@ -352,7 +366,11 @@ class GeneralMonitor(Monitor):
def
parse_args
():
''' parse args. '''
""" parse args.
Returns:
parser.parse_args().
"""
parser
=
argparse
.
ArgumentParser
(
description
=
"Monitor"
)
parser
.
add_argument
(
"--type"
,
type
=
str
,
default
=
'general'
,
help
=
"Type of remote server"
)
...
...
python/paddle_serving_server_gpu/monitor.py
0 → 100644
浏览文件 @
9c58c6f9
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录