Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
8da6284a
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看板
提交
8da6284a
编写于
5月 28, 2020
作者:
B
barrierye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add timeout in op
上级
623091c7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
19 deletion
+30
-19
python/paddle_serving_server/pyserver.py
python/paddle_serving_server/pyserver.py
+30
-19
未找到文件。
python/paddle_serving_server/pyserver.py
浏览文件 @
8da6284a
...
...
@@ -267,7 +267,8 @@ class Op(object):
server_name
=
None
,
fetch_names
=
None
,
concurrency
=
1
,
timeout
=-
1
):
timeout
=-
1
,
retry
=
2
):
self
.
_run
=
False
# TODO: globally unique check
self
.
_name
=
name
# to identify the type of OP, it must be globally unique
...
...
@@ -285,6 +286,7 @@ class Op(object):
self
.
_server_port
=
server_port
self
.
_device
=
device
self
.
_timeout
=
timeout
self
.
_retry
=
retry
def
set_client
(
self
,
client_config
,
server_name
,
fetch_names
):
self
.
_client
=
Client
()
...
...
@@ -387,24 +389,33 @@ class Op(object):
error_info
=
None
if
self
.
with_serving
():
_profiler
.
record
(
"{}{}-midp_0"
.
format
(
self
.
_name
,
concurrency_idx
))
if
self
.
_time
>
0
:
try
:
data
=
func_timeout
.
func_timeout
(
self
.
_time
,
self
.
midprocess
,
args
=
(
data
,
))
except
func_timeout
.
FunctionTimedOut
:
logging
.
error
(
"error: timeout"
)
error_info
=
"{}({}): timeout"
.
format
(
self
.
_name
,
concurrency_idx
)
except
Exception
as
e
:
logging
.
error
(
"error: {}"
.
format
(
e
))
error_info
=
"{}({}): {}"
.
format
(
self
.
_name
,
concurrency_idx
,
e
)
else
:
data
=
self
.
midprocess
(
data
)
_profiler
.
record
(
"{}{}-midp_1"
.
format
(
self
.
_name
,
concurrency_idx
))
for
i
in
range
(
self
.
_retry
):
_profiler
.
record
(
"{}{}-midp_0"
.
format
(
self
.
_name
,
concurrency_idx
))
if
self
.
_time
>
0
:
try
:
middata
=
func_timeout
.
func_timeout
(
self
.
_time
,
self
.
midprocess
,
args
=
(
data
,
))
except
func_timeout
.
FunctionTimedOut
:
logging
.
error
(
"error: timeout"
)
error_info
=
"{}({}): timeout"
.
format
(
self
.
_name
,
concurrency_idx
)
except
Exception
as
e
:
logging
.
error
(
"error: {}"
.
format
(
e
))
error_info
=
"{}({}): {}"
.
format
(
self
.
_name
,
concurrency_idx
,
e
)
else
:
middata
=
self
.
midprocess
(
data
)
_profiler
.
record
(
"{}{}-midp_1"
.
format
(
self
.
_name
,
concurrency_idx
))
if
error_info
is
None
:
data
=
middata
break
if
i
+
1
<
self
.
_retry
:
error_info
=
None
logging
.
warn
(
self
.
_log
(
"warn: timeout, retry({})"
.
format
(
i
+
1
)))
_profiler
.
record
(
"{}{}-postp_0"
.
format
(
self
.
_name
,
concurrency_idx
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录