Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
a6610a10
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看板
提交
a6610a10
编写于
3月 31, 2020
作者:
B
barrierye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update doc
上级
ea5586a8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
17 deletion
+12
-17
doc/HOT_LOADING_IN_SERVING_CN.md
doc/HOT_LOADING_IN_SERVING_CN.md
+12
-17
未找到文件。
doc/HOT_LOADING_IN_SERVING_CN.md
浏览文件 @
a6610a10
...
...
@@ -6,12 +6,12 @@
Paddle Serving目前支持下面几种类型的远端监控Monitor:
| Monitor类型 |
描述
| 特殊选项 |
| :---------: | :----------------------------------------: | :----------------------------------------------------------: |
| General | 远端无认证,可以通过
`wget`
直接访问下载文件 |
`general_host`
通用远端host |
| HDFS |
远端为HDFS,通过HDFS二进制执行相关命令
|
`hdfs_bin`
HDFS二进制的路径 |
| 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类型 |
描述
| 特殊选项 |
| :---------: | :----------------------------------------
------------------
: | :----------------------------------------------------------: |
| General | 远端无认证,可以通过
`wget`
直接访问下载文件
(如无需认证的FTP,OBS等)
|
`general_host`
通用远端host |
| HDFS |
远端为HDFS,通过HDFS二进制执行相关命令
|
`hdfs_bin`
HDFS二进制的路径 |
| 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通用选项 | 描述 |
| :--------------------: | :----------------------------------------------------------: |
...
...
@@ -33,8 +33,8 @@ Paddle Serving目前支持下面几种类型的远端监控Monitor:
```
shell
.
├──
server
_path
└──
product
_path
├──
product
_path
└──
server
_path
```
### 生产模型
...
...
@@ -125,15 +125,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
=
'hdfs'
\
--remote_path
=
'/'
\
--remote_model_name
=
'uci_housing_model'
\
--remote_donefile_name
=
'donefile'
\
--local_path
=
'.'
\
--local_model_name
=
'uci_housing_model'
\
--local_timestamp_file
=
'fluid_time_file'
\
--local_tmp_path
=
'_tmp'
--type
=
'hdfs'
--hdfs_bin
=
'/hadoop-3.1.2/bin/hdfs'
--remote_path
=
'/'
\
--remote_model_name
=
'uci_housing_model'
--remote_donefile_name
=
'donefile'
\
--local_path
=
'.'
--local_model_name
=
'uci_housing_model'
\
--local_timestamp_file
=
'fluid_time_file'
--local_tmp_path
=
'_tmp'
```
上面代码通过轮询方式监控远程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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录