Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
7d254e2e
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看板
提交
7d254e2e
编写于
4月 02, 2020
作者:
B
barrierye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update doc
上级
d58f8092
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
41 addition
and
21 deletion
+41
-21
doc/HOT_LOADING_IN_SERVING_CN.md
doc/HOT_LOADING_IN_SERVING_CN.md
+41
-21
未找到文件。
doc/HOT_LOADING_IN_SERVING_CN.md
浏览文件 @
7d254e2e
...
...
@@ -13,17 +13,18 @@ Paddle Serving目前支持下面几种类型的远端监控Monitor:
| FTP | 远端为FTP,可以通过用户名、密码访问 |
`ftp_host`
FTP host
<br>
`ftp_port`
FTP port
<br>
`ftp_username`
FTP username,默认为空
<br>
`ftp_password`
FTP password,默认为空 |
| AFS | 远端为AFS,通过Hadoop-client执行相关命令 |
`hadoop_bin`
Hadoop二进制的路径
<br>
`hadoop_host`
AFS host,默认为空
<br>
`hadoop_ugi`
AFS ugi,默认为空 |
| Monitor通用选项 | 描述 |
| :--------------------: | :----------------------------------------------------------: |
|
`type`
| 指定Monitor类型 |
|
`remote_path`
| 指定远端的基础路径 |
|
`remote_model_name`
| 指定远端需要拉取的模型名 |
|
`remote_donefile_name`
| 指定远端标志模型更新完毕的donefile文件名 |
|
`local_path`
| 指定本地工作路径 |
|
`local_model_name`
| 指定本地模型名 |
|
`local_timestamp_file`
| 指定本地用于热加载的时间戳文件,该文件被认为在
`local_path/local_model_name`
下。默认为
`fluid_time_file`
|
|
`local_tmp_path`
| 指定本地存放临时文件的文件夹路径。默认为
`_serving_monitor_tmp`
,若不存在则自动创建 |
|
`interval`
| 指定轮询间隔时间 |
| Monitor通用选项 | 描述 | 默认值 |
| :--------------------: | :----------------------------------------------------------: | :------------------------------------------: |
|
`type`
| 指定Monitor类型 | 无 |
|
`remote_path`
| 指定远端的基础路径 | 无 |
|
`remote_model_name`
| 指定远端需要拉取的模型名 | 无 |
|
`remote_donefile_name`
| 指定远端标志模型更新完毕的donefile文件名 | 无 |
|
`local_path`
| 指定本地工作路径 | 无 |
|
`local_model_name`
| 指定本地模型名 | 无 |
|
`local_timestamp_file`
| 指定本地用于热加载的时间戳文件,该文件被认为在
`local_path/local_model_name`
下。 |
`fluid_time_file`
|
|
`local_tmp_path`
| 指定本地存放临时文件的文件夹路径。 |
`_serving_monitor_tmp`
(若不存在则自动创建) |
|
`interval`
| 指定轮询间隔时间。 | 10(秒) |
|
`unpacked_filename`
| Monitor支持tarfile打包的远程模型。如果远程模型是打包格式,则需要设置该选项来告知Monitor解压后的文件名。 | None |
下面通过HDFSMonitor示例来展示Paddle Serving的模型热加载功能。
...
...
@@ -43,7 +44,9 @@ Paddle Serving目前支持下面几种类型的远端监控Monitor:
```
python
import
os
import
sys
import
time
import
tarfile
import
paddle
import
paddle.fluid
as
fluid
import
paddle_serving_client.io
as
serving_io
...
...
@@ -73,22 +76,38 @@ exe = fluid.Executor(place)
exe
.
run
(
fluid
.
default_startup_program
())
def
push_to_hdfs
(
local_file_path
,
remote_path
):
hdfs_bin
=
'hdfs'
hdfs_bin
=
'
/hadoop-3.1.2/bin/
hdfs'
os
.
system
(
'{} dfs -put -f {} {}'
.
format
(
hdfs_bin
,
local_file_path
,
remote_path
))
name
=
"uci_housing"
for
pass_id
in
range
(
30
):
for
data_train
in
train_reader
():
avg_loss_value
,
=
exe
.
run
(
fluid
.
default_main_program
(),
feed
=
feeder
.
feed
(
data_train
),
fetch_list
=
[
avg_loss
])
time
.
sleep
(
60
)
# Simulate the production model every other period of time
serving_io
.
save_model
(
"uci_housing_model"
,
"uci_housing_client"
,
# Simulate the production model every other period of time
time
.
sleep
(
60
)
model_name
=
"{}_model"
.
format
(
name
)
client_name
=
"{}_client"
.
format
(
name
)
serving_io
.
save_model
(
model_name
,
client_name
,
{
"x"
:
x
},
{
"price"
:
y_predict
},
fluid
.
default_main_program
())
push_to_hdfs
(
'uci_housing_model'
,
'/'
)
os
.
system
(
'touch donefile'
)
push_to_hdfs
(
'donefile'
,
'/'
)
# Package model
tar_name
=
"{}.tar.gz"
.
format
(
name
)
tar
=
tarfile
.
open
(
tar_name
,
'w:gz'
)
tar
.
add
(
model_name
)
tar
.
close
()
# Push packaged model file to hdfs
push_to_hdfs
(
tar_name
,
'/'
)
# Generate donefile
donefile_name
=
'donefile'
os
.
system
(
'touch {}'
.
format
(
donefile_name
))
# Push donefile to hdfs
push_to_hdfs
(
donefile_name
,
'/'
)
```
hdfs上的文件如下列所示:
...
...
@@ -96,8 +115,8 @@ hdfs上的文件如下列所示:
```
bash
# hdfs dfs -ls /
Found 2 items
-rw-r--r--
1 root supergroup 0 2020-0
3-30 09:27
/donefile
drwxr-xr-x - root supergroup 0 2020-03-30 09:27 /uci_housing_model
-rw-r--r--
1 root supergroup 0 2020-0
4-02 02:54
/donefile
-rw-r--r--
1 root supergroup 2101 2020-04-02 02:54 /uci_housing.tar.gz
```
### 服务端加载模型
...
...
@@ -126,9 +145,10 @@ python -m paddle_serving_server.serve --model uci_housing_model --thread 10 --po
```
shell
python
-m
paddle_serving_server.monitor
\
--type
=
'hdfs'
--hdfs_bin
=
'/hadoop-3.1.2/bin/hdfs'
--remote_path
=
'/'
\
--remote_model_name
=
'uci_housing
_model
'
--remote_donefile_name
=
'donefile'
\
--remote_model_name
=
'uci_housing
.tar.gz
'
--remote_donefile_name
=
'donefile'
\
--local_path
=
'.'
--local_model_name
=
'uci_housing_model'
\
--local_timestamp_file
=
'fluid_time_file'
--local_tmp_path
=
'_tmp'
--local_timestamp_file
=
'fluid_time_file'
--local_tmp_path
=
'_tmp'
\
--unpacked_filename
=
'uci_housing_model'
```
上面代码通过轮询方式监控远程HDFS地址
`/`
的时间戳文件
`/donefile`
,当时间戳变更则认为远程模型已经更新,将远程模型
`/uci_housing_model`
拉取到本地临时路径
`./_tmp/uci_housing_model`
下,更新本地模型
`./uci_housing_model`
以及Paddle Serving的时间戳文件
`./uci_housing_model/fluid_time_file`
。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录