Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
975e5d52
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看板
提交
975e5d52
编写于
8月 07, 2020
作者:
B
barriery
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use PriorityQueue instead of Queue in Channel; add logid in ServingClient
上级
a3f9ab42
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
48 addition
and
23 deletion
+48
-23
python/pipeline/channel.py
python/pipeline/channel.py
+10
-2
python/pipeline/dag.py
python/pipeline/dag.py
+2
-2
python/pipeline/logger.py
python/pipeline/logger.py
+0
-7
python/pipeline/operator.py
python/pipeline/operator.py
+13
-12
python/pipeline/util.py
python/pipeline/util.py
+23
-0
未找到文件。
python/pipeline/channel.py
浏览文件 @
975e5d52
...
...
@@ -181,6 +181,14 @@ class ChannelData(object):
os
.
_exit
(
-
1
)
return
feed
def
__cmp__
(
self
,
other
):
if
self
.
id
<
other
.
id
:
return
-
1
elif
self
.
id
==
other
.
id
:
return
0
else
:
return
1
def
__str__
(
self
):
return
"type[{}], ecode[{}], id[{}]"
.
format
(
ChannelDataType
(
self
.
datatype
).
name
,
self
.
ecode
,
self
.
id
)
...
...
@@ -222,7 +230,7 @@ class ProcessChannel(object):
# see more:
# - https://bugs.python.org/issue18277
# - https://hg.python.org/cpython/rev/860fc6a2bd21
self
.
_que
=
manager
.
Queue
(
maxsize
=
maxsize
)
self
.
_que
=
manager
.
Priority
Queue
(
maxsize
=
maxsize
)
self
.
_maxsize
=
maxsize
self
.
name
=
name
self
.
_stop
=
manager
.
Value
(
'i'
,
0
)
...
...
@@ -489,7 +497,7 @@ class ProcessChannel(object):
self
.
_cv
.
notify_all
()
class
ThreadChannel
(
Queue
.
Queue
):
class
ThreadChannel
(
Queue
.
Priority
Queue
):
"""
(Thread version)The channel used for communication between Ops.
...
...
python/pipeline/dag.py
浏览文件 @
975e5d52
...
...
@@ -29,7 +29,7 @@ from .operator import Op, RequestOp, ResponseOp, VirtualOp
from
.channel
import
(
ThreadChannel
,
ProcessChannel
,
ChannelData
,
ChannelDataEcode
,
ChannelDataType
,
ChannelStopError
)
from
.profiler
import
TimeProfiler
,
PerformanceTracer
from
.util
import
NameGenerator
,
ThreadIdGenerator
from
.util
import
NameGenerator
,
ThreadIdGenerator
,
PipelineProcSyncManager
from
.proto
import
pipeline_service_pb2
_LOGGER
=
logging
.
getLogger
(
__name__
)
...
...
@@ -324,7 +324,7 @@ class DAG(object):
self
.
_build_dag_each_worker
=
build_dag_each_worker
self
.
_tracer
=
tracer
if
not
self
.
_is_thread_op
:
self
.
_manager
=
multiprocessing
.
Manager
()
self
.
_manager
=
PipelineProcSync
Manager
()
_LOGGER
.
info
(
"[DAG] Succ init"
)
def
get_use_ops
(
self
,
response_op
):
...
...
python/pipeline/logger.py
浏览文件 @
975e5d52
...
...
@@ -40,18 +40,11 @@ logger_config = {
"format"
:
"%(asctime)s %(message)s"
,
},
},
"filters"
:
{
"info_only_filter"
:
{
"()"
:
SectionLevelFilter
,
"levels"
:
[
logging
.
INFO
],
},
},
"handlers"
:
{
"f_pipeline.log"
:
{
"class"
:
"logging.FileHandler"
,
"level"
:
"INFO"
,
"formatter"
:
"normal_fmt"
,
"filters"
:
[
"info_only_filter"
],
"filename"
:
os
.
path
.
join
(
log_dir
,
"pipeline.log"
),
},
"f_pipeline.log.wf"
:
{
...
...
python/pipeline/operator.py
浏览文件 @
975e5d52
...
...
@@ -22,6 +22,7 @@ import logging
import
func_timeout
import
os
import
sys
import
collections
import
numpy
as
np
from
numpy
import
*
...
...
@@ -127,7 +128,7 @@ class Op(object):
fetch_names
):
if
self
.
with_serving
==
False
:
_LOGGER
.
info
(
"Op({}) has no client (and it also do not "
"run the process function"
.
format
(
self
.
name
))
"run the process function
)
"
.
format
(
self
.
name
))
return
None
if
client_type
==
'brpc'
:
client
=
Client
()
...
...
@@ -294,8 +295,8 @@ class Op(object):
def
_run_preprocess
(
self
,
parsed_data_dict
,
op_info_prefix
):
_LOGGER
.
debug
(
"{} Running preprocess"
.
format
(
op_info_prefix
))
preped_data_dict
=
{}
err_channeldata_dict
=
{}
preped_data_dict
=
collections
.
OrderedDict
()
err_channeldata_dict
=
collections
.
OrderedDict
()
for
data_id
,
parsed_data
in
parsed_data_dict
.
items
():
preped_data
,
error_channeldata
=
None
,
None
try
:
...
...
@@ -326,18 +327,18 @@ class Op(object):
def
_run_process
(
self
,
preped_data_dict
,
op_info_prefix
):
_LOGGER
.
debug
(
"{} Running process"
.
format
(
op_info_prefix
))
midped_data_dict
=
{}
err_channeldata_dict
=
{}
midped_data_dict
=
collections
.
OrderedDict
()
err_channeldata_dict
=
collections
.
OrderedDict
()
if
self
.
with_serving
:
data_ids
=
preped_data_dict
.
keys
()
typical_logid
=
data_ids
[
0
]
if
len
(
data_ids
)
!=
1
:
for
data_id
in
data_ids
:
_LOGGER
.
info
(
"(logid={}) During access to PaddleServingService,"
" we selected logid={} (
batch: {}) as a representative
"
"
for logging."
.
format
(
data_id
,
typical_logid
,
data_ids
))
"(logid={})
{}
During access to PaddleServingService,"
" we selected logid={} (
from batch: {}) as a
"
"
representative for logging."
.
format
(
data_id
,
op_info_prefix
,
typical_logid
,
data_ids
))
feed_batch
=
[
preped_data_dict
[
data_id
]
for
data_id
in
data_ids
]
midped_batch
=
None
ecode
=
ChannelDataEcode
.
OK
.
value
...
...
@@ -407,8 +408,8 @@ class Op(object):
def
_run_postprocess
(
self
,
parsed_data_dict
,
midped_data_dict
,
op_info_prefix
):
_LOGGER
.
debug
(
"{} Running postprocess"
.
format
(
op_info_prefix
))
postped_data_dict
=
{}
err_channeldata_dict
=
{}
postped_data_dict
=
collections
.
OrderedDict
()
err_channeldata_dict
=
collections
.
OrderedDict
()
for
data_id
,
midped_data
in
midped_data_dict
.
items
():
postped_data
,
err_channeldata
=
None
,
None
try
:
...
...
@@ -487,7 +488,7 @@ class Op(object):
yield
batch
def
_parse_channeldata_batch
(
self
,
batch
,
output_channels
):
parsed_data_dict
=
{}
parsed_data_dict
=
collections
.
OrderedDict
()
need_profile_dict
=
{}
profile_dict
=
{}
for
channeldata_dict
in
batch
:
...
...
python/pipeline/util.py
浏览文件 @
975e5d52
...
...
@@ -16,6 +16,14 @@ import sys
import
logging
import
threading
import
multiprocessing
if
sys
.
version_info
.
major
==
2
:
import
Queue
from
Queue
import
PriorityQueue
elif
sys
.
version_info
.
major
==
3
:
import
queue
as
Queue
from
queue
import
PriorityQueue
else
:
raise
Exception
(
"Error Python version"
)
_LOGGER
=
logging
.
getLogger
(
__name__
)
...
...
@@ -87,3 +95,18 @@ class ProcessIdGenerator(UnsafeIdGenerator):
next_id
=
self
.
_counter
.
value
self
.
_counter
.
value
+=
self
.
_step
return
next_id
def
PipelineProcSyncManager
():
"""
add PriorityQueue into SyncManager, see more:
https://stackoverflow.com/questions/25324560/strange-queue-priorityqueue-behaviour-with-multiprocessing-in-python-2-7-6?answertab=active#tab-top
"""
class
PipelineManager
(
multiprocessing
.
managers
.
SyncManager
):
pass
PipelineManager
.
register
(
"PriorityQueue"
,
PriorityQueue
)
m
=
PipelineManager
()
m
.
start
()
return
m
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录