Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
ac66194e
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看板
提交
ac66194e
编写于
6月 28, 2020
作者:
B
barrierye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add comment for channel
上级
934dcac6
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
159 addition
and
107 deletion
+159
-107
python/pipeline/channel.py
python/pipeline/channel.py
+144
-97
python/pipeline/operator.py
python/pipeline/operator.py
+0
-3
python/pipeline/pipeline_server.py
python/pipeline/pipeline_server.py
+15
-7
未找到文件。
python/pipeline/channel.py
浏览文件 @
ac66194e
...
@@ -143,6 +143,17 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -143,6 +143,17 @@ class ProcessChannel(multiprocessing.queues.Queue):
1. The ID of the data in the channel must be different.
1. The ID of the data in the channel must be different.
2. The function add_producer() and add_consumer() are not thread safe,
2. The function add_producer() and add_consumer() are not thread safe,
and can only be called during initialization.
and can only be called during initialization.
There are two buffers and one queue in Channel:
op_A \ / op_D
op_B - a. input_buf -> b. queue -> c. output_buf - op_E
op_C / \ op_F
a. In input_buf, the input of multiple predecessor Ops is packed by data ID.
b. The packed data will be stored in queue.
c. In order to support multiple successor Ops to retrieve data, output_buf
maintains the data obtained from queue.
"""
"""
def
__init__
(
self
,
manager
,
name
=
None
,
maxsize
=
0
,
timeout
=
None
):
def
__init__
(
self
,
manager
,
name
=
None
,
maxsize
=
0
,
timeout
=
None
):
...
@@ -162,19 +173,19 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -162,19 +173,19 @@ class ProcessChannel(multiprocessing.queues.Queue):
self
.
_cv
=
multiprocessing
.
Condition
()
self
.
_cv
=
multiprocessing
.
Condition
()
self
.
_producers
=
[]
self
.
_producers
=
[]
self
.
_producer_res
_count
=
manager
.
dict
()
# {data_id: count}
self
.
pushed_producer
_count
=
manager
.
dict
()
# {data_id: count}
self
.
_
push_res
=
manager
.
dict
()
# {data_id: {op_name: data}}
self
.
_
input_buf
=
manager
.
dict
()
# {data_id: {op_name: data}}
self
.
_consumer
s
=
manager
.
dict
()
# {op_name: idx
}
self
.
_consumer
_cursors
=
manager
.
dict
()
# {op_name: cursor
}
self
.
_
idx_consumer_num
=
manager
.
dict
()
# {idx: num
}
self
.
_
cursor_count
=
manager
.
dict
()
# {cursor: count
}
self
.
_
consumer_base_idx
=
manager
.
Value
(
'i'
,
0
)
self
.
_
base_cursor
=
manager
.
Value
(
'i'
,
0
)
self
.
_
front_res
=
manager
.
list
()
self
.
_
output_buf
=
manager
.
list
()
def
get_producers
(
self
):
def
get_producers
(
self
):
return
self
.
_producers
return
self
.
_producers
def
get_consumers
(
self
):
def
get_consumers
(
self
):
return
self
.
_consumers
.
keys
()
return
self
.
_consumer
_cursor
s
.
keys
()
def
_log
(
self
,
info_str
):
def
_log
(
self
,
info_str
):
return
"[{}] {}"
.
format
(
self
.
name
,
info_str
)
return
"[{}] {}"
.
format
(
self
.
name
,
info_str
)
...
@@ -192,14 +203,14 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -192,14 +203,14 @@ class ProcessChannel(multiprocessing.queues.Queue):
def
add_consumer
(
self
,
op_name
):
def
add_consumer
(
self
,
op_name
):
""" not thread safe, and can only be called during initialization. """
""" not thread safe, and can only be called during initialization. """
if
op_name
in
self
.
_consumers
:
if
op_name
in
self
.
_consumer
_cursor
s
:
raise
ValueError
(
raise
ValueError
(
self
.
_log
(
"consumer({}) is already in channel"
.
format
(
op_name
)))
self
.
_log
(
"consumer({}) is already in channel"
.
format
(
op_name
)))
self
.
_consumers
[
op_name
]
=
0
self
.
_consumer
_cursor
s
[
op_name
]
=
0
if
self
.
_
idx_consumer_num
.
get
(
0
)
is
None
:
if
self
.
_
cursor_count
.
get
(
0
)
is
None
:
self
.
_
idx_consumer_num
[
0
]
=
0
self
.
_
cursor_count
[
0
]
=
0
self
.
_
idx_consumer_num
[
0
]
+=
1
self
.
_
cursor_count
[
0
]
+=
1
def
push
(
self
,
channeldata
,
op_name
=
None
):
def
push
(
self
,
channeldata
,
op_name
=
None
):
_LOGGER
.
debug
(
_LOGGER
.
debug
(
...
@@ -235,24 +246,24 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -235,24 +246,24 @@ class ProcessChannel(multiprocessing.queues.Queue):
put_data
=
None
put_data
=
None
with
self
.
_cv
:
with
self
.
_cv
:
_LOGGER
.
debug
(
self
.
_log
(
"{} get lock"
.
format
(
op_name
)))
_LOGGER
.
debug
(
self
.
_log
(
"{} get lock"
.
format
(
op_name
)))
if
data_id
not
in
self
.
_
push_res
:
if
data_id
not
in
self
.
_
input_buf
:
self
.
_
push_res
[
data_id
]
=
{
self
.
_
input_buf
[
data_id
]
=
{
name
:
None
name
:
None
for
name
in
self
.
_producers
for
name
in
self
.
_producers
}
}
self
.
_producer_res
_count
[
data_id
]
=
0
self
.
pushed_producer
_count
[
data_id
]
=
0
# see: https://docs.python.org/3.6/library/multiprocessing.html?highlight=multiprocess#proxy-objects
# see: https://docs.python.org/3.6/library/multiprocessing.html?highlight=multiprocess#proxy-objects
# self._
push_res
[data_id][op_name] = channeldata
# self._
input_buf
[data_id][op_name] = channeldata
tmp_
push_res
=
self
.
_push_res
[
data_id
]
tmp_
input_buf
=
self
.
_input_buf
[
data_id
]
tmp_
push_res
[
op_name
]
=
channeldata
tmp_
input_buf
[
op_name
]
=
channeldata
self
.
_
push_res
[
data_id
]
=
tmp_push_res
self
.
_
input_buf
[
data_id
]
=
tmp_input_buf
if
self
.
_producer_res
_count
[
data_id
]
+
1
==
producer_num
:
if
self
.
pushed_producer
_count
[
data_id
]
+
1
==
producer_num
:
put_data
=
self
.
_
push_res
[
data_id
]
put_data
=
self
.
_
input_buf
[
data_id
]
self
.
_
push_res
.
pop
(
data_id
)
self
.
_
input_buf
.
pop
(
data_id
)
self
.
_producer_res
_count
.
pop
(
data_id
)
self
.
pushed_producer
_count
.
pop
(
data_id
)
else
:
else
:
self
.
_producer_res
_count
[
data_id
]
+=
1
self
.
pushed_producer
_count
[
data_id
]
+=
1
if
put_data
is
None
:
if
put_data
is
None
:
_LOGGER
.
debug
(
_LOGGER
.
debug
(
...
@@ -276,12 +287,12 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -276,12 +287,12 @@ class ProcessChannel(multiprocessing.queues.Queue):
def
front
(
self
,
op_name
=
None
):
def
front
(
self
,
op_name
=
None
):
_LOGGER
.
debug
(
self
.
_log
(
"{} try to get data..."
.
format
(
op_name
)))
_LOGGER
.
debug
(
self
.
_log
(
"{} try to get data..."
.
format
(
op_name
)))
if
len
(
self
.
_consumers
)
==
0
:
if
len
(
self
.
_consumer
_cursor
s
)
==
0
:
raise
Exception
(
raise
Exception
(
self
.
_log
(
self
.
_log
(
"expected number of consumers to be greater than 0, but the it is 0."
"expected number of consumers to be greater than 0, but the it is 0."
))
))
elif
len
(
self
.
_consumers
)
==
1
:
elif
len
(
self
.
_consumer
_cursor
s
)
==
1
:
resp
=
None
resp
=
None
with
self
.
_cv
:
with
self
.
_cv
:
while
self
.
_stop
is
False
and
resp
is
None
:
while
self
.
_stop
is
False
and
resp
is
None
:
...
@@ -312,16 +323,26 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -312,16 +323,26 @@ class ProcessChannel(multiprocessing.queues.Queue):
self
.
_log
(
self
.
_log
(
"There are multiple consumers, so op_name cannot be None."
))
"There are multiple consumers, so op_name cannot be None."
))
# In output_buf, different Ops (according to op_name) have different
# cursors. In addition, there is a base_cursor. Their difference is
# the data_idx to be taken by the corresponding Op at the current
# time: data_idx = consumer_cursor - base_cursor
#
# base_cursor consumer_B_cursor (data_idx: 3)
# | |
# output_buf: | data0 | data1 | data2 | data3 |
# |
# consumer_A_cursor (data_idx: 0)
with
self
.
_cv
:
with
self
.
_cv
:
#
data_idx = consumer_idx - base_idx
#
When the data required by the current Op is not in output_buf,
while
self
.
_stop
is
False
and
self
.
_consumers
[
# it is necessary to obtain a data from queue and add it to output_buf.
op_name
]
-
self
.
_consumer_base_idx
.
value
>=
len
(
while
self
.
_stop
is
False
and
self
.
_consumer_cursors
[
self
.
_front_res
):
op_name
]
-
self
.
_base_cursor
.
value
>=
len
(
self
.
_output_buf
):
_LOGGER
.
debug
(
_LOGGER
.
debug
(
self
.
_log
(
self
.
_log
(
"({}) B self._consumer
s: {}, self._consumer_base_idx: {}, len(self._front_res
): {}"
.
"({}) B self._consumer
_cursors: {}, self._base_cursor: {}, len(self._output_buf
): {}"
.
format
(
op_name
,
self
.
_consumer
s
,
self
.
format
(
op_name
,
self
.
_consumer
_cursors
,
_consumer_base_idx
.
value
,
len
(
self
.
_front_res
))))
self
.
_base_cursor
.
value
,
len
(
self
.
_output_buf
))))
try
:
try
:
_LOGGER
.
debug
(
_LOGGER
.
debug
(
self
.
_log
(
"{} try to get(with channel size: {})"
.
format
(
self
.
_log
(
"{} try to get(with channel size: {})"
.
format
(
...
@@ -333,7 +354,7 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -333,7 +354,7 @@ class ProcessChannel(multiprocessing.queues.Queue):
# - https://bugs.python.org/issue18277
# - https://bugs.python.org/issue18277
# - https://hg.python.org/cpython/rev/860fc6a2bd21
# - https://hg.python.org/cpython/rev/860fc6a2bd21
channeldata
=
self
.
get
(
timeout
=
1e-3
)
channeldata
=
self
.
get
(
timeout
=
1e-3
)
self
.
_
front_res
.
append
(
channeldata
)
self
.
_
output_buf
.
append
(
channeldata
)
break
break
except
Queue
.
Empty
:
except
Queue
.
Empty
:
_LOGGER
.
debug
(
_LOGGER
.
debug
(
...
@@ -342,29 +363,31 @@ class ProcessChannel(multiprocessing.queues.Queue):
...
@@ -342,29 +363,31 @@ class ProcessChannel(multiprocessing.queues.Queue):
format
(
op_name
,
self
.
qsize
())))
format
(
op_name
,
self
.
qsize
())))
self
.
_cv
.
wait
()
self
.
_cv
.
wait
()
consumer_
idx
=
self
.
_consume
rs
[
op_name
]
consumer_
cursor
=
self
.
_consumer_curso
rs
[
op_name
]
base_
idx
=
self
.
_consumer_base_idx
.
value
base_
cursor
=
self
.
_base_cursor
.
value
data_idx
=
consumer_
idx
-
base_idx
data_idx
=
consumer_
cursor
-
base_cursor
resp
=
self
.
_
front_res
[
data_idx
]
resp
=
self
.
_
output_buf
[
data_idx
]
_LOGGER
.
debug
(
self
.
_log
(
"{} get data: {}"
.
format
(
op_name
,
resp
)))
_LOGGER
.
debug
(
self
.
_log
(
"{} get data: {}"
.
format
(
op_name
,
resp
)))
self
.
_idx_consumer_num
[
consumer_idx
]
-=
1
self
.
_cursor_count
[
consumer_cursor
]
-=
1
if
consumer_idx
==
base_idx
and
self
.
_idx_consumer_num
[
if
consumer_cursor
==
base_cursor
and
self
.
_cursor_count
[
consumer_idx
]
==
0
:
consumer_cursor
]
==
0
:
self
.
_idx_consumer_num
.
pop
(
consumer_idx
)
# When all the different Ops get the data that data_idx points
self
.
_front_res
.
pop
(
0
)
# to, pop the data from output_buf.
self
.
_consumer_base_idx
.
value
+=
1
self
.
_cursor_count
.
pop
(
consumer_cursor
)
self
.
_output_buf
.
pop
(
0
)
self
.
_consumers
[
op_name
]
+=
1
self
.
_base_cursor
.
value
+=
1
new_consumer_idx
=
self
.
_consumers
[
op_name
]
if
self
.
_idx_consumer_num
.
get
(
new_consumer_idx
)
is
None
:
self
.
_consumer_cursors
[
op_name
]
+=
1
self
.
_idx_consumer_num
[
new_consumer_idx
]
=
0
new_consumer_cursor
=
self
.
_consumer_cursors
[
op_name
]
self
.
_idx_consumer_num
[
new_consumer_idx
]
+=
1
if
self
.
_cursor_count
.
get
(
new_consumer_cursor
)
is
None
:
self
.
_cursor_count
[
new_consumer_cursor
]
=
0
self
.
_cursor_count
[
new_consumer_cursor
]
+=
1
_LOGGER
.
debug
(
_LOGGER
.
debug
(
self
.
_log
(
self
.
_log
(
"({}) A self._consumer
s: {}, self._consumer_base_idx: {}, len(self._front_res
): {}"
.
"({}) A self._consumer
_cursors: {}, self._base_cursor: {}, len(self._output_buf
): {}"
.
format
(
op_name
,
self
.
_consumer
s
,
self
.
_consumer_base_idx
.
format
(
op_name
,
self
.
_consumer
_cursors
,
value
,
len
(
self
.
_front_res
))))
self
.
_base_cursor
.
value
,
len
(
self
.
_output_buf
))))
_LOGGER
.
debug
(
self
.
_log
(
"{} notify all"
.
format
(
op_name
)))
_LOGGER
.
debug
(
self
.
_log
(
"{} notify all"
.
format
(
op_name
)))
self
.
_cv
.
notify_all
()
self
.
_cv
.
notify_all
()
...
@@ -394,6 +417,17 @@ class ThreadChannel(Queue.Queue):
...
@@ -394,6 +417,17 @@ class ThreadChannel(Queue.Queue):
1. The ID of the data in the channel must be different.
1. The ID of the data in the channel must be different.
2. The function add_producer() and add_consumer() are not thread safe,
2. The function add_producer() and add_consumer() are not thread safe,
and can only be called during initialization.
and can only be called during initialization.
There are two buffers and one queue in Channel:
op_A \ / op_D
op_B - a. input_buf -> b. queue -> c. output_buf - op_E
op_C / \ op_F
a. In input_buf, the input of multiple predecessor Ops is packed by data ID.
b. The packed data will be stored in queue.
c. In order to support multiple successor Ops to retrieve data, output_buf
maintains the data obtained from queue.
"""
"""
def
__init__
(
self
,
name
=
None
,
maxsize
=-
1
,
timeout
=
None
):
def
__init__
(
self
,
name
=
None
,
maxsize
=-
1
,
timeout
=
None
):
...
@@ -406,19 +440,19 @@ class ThreadChannel(Queue.Queue):
...
@@ -406,19 +440,19 @@ class ThreadChannel(Queue.Queue):
self
.
_cv
=
threading
.
Condition
()
self
.
_cv
=
threading
.
Condition
()
self
.
_producers
=
[]
self
.
_producers
=
[]
self
.
_producer_res
_count
=
{}
# {data_id: count}
self
.
pushed_producer
_count
=
{}
# {data_id: count}
self
.
_
push_res
=
{}
# {data_id: {op_name: data}}
self
.
_
input_buf
=
{}
# {data_id: {op_name: data}}
self
.
_consumers
=
{}
# {op_name: idx}
self
.
_consumer
_cursor
s
=
{}
# {op_name: idx}
self
.
_
idx_consumer_num
=
{}
# {idx: num
}
self
.
_
cursor_count
=
{}
# {cursor: count
}
self
.
_
consumer_base_idx
=
0
self
.
_
base_cursor
=
0
self
.
_
front_res
=
[]
self
.
_
output_buf
=
[]
def
get_producers
(
self
):
def
get_producers
(
self
):
return
self
.
_producers
return
self
.
_producers
def
get_consumers
(
self
):
def
get_consumers
(
self
):
return
self
.
_consumers
.
keys
()
return
self
.
_consumer
_cursor
s
.
keys
()
def
_log
(
self
,
info_str
):
def
_log
(
self
,
info_str
):
return
"[{}] {}"
.
format
(
self
.
name
,
info_str
)
return
"[{}] {}"
.
format
(
self
.
name
,
info_str
)
...
@@ -436,14 +470,14 @@ class ThreadChannel(Queue.Queue):
...
@@ -436,14 +470,14 @@ class ThreadChannel(Queue.Queue):
def
add_consumer
(
self
,
op_name
):
def
add_consumer
(
self
,
op_name
):
""" not thread safe, and can only be called during initialization. """
""" not thread safe, and can only be called during initialization. """
if
op_name
in
self
.
_consumers
:
if
op_name
in
self
.
_consumer
_cursor
s
:
raise
ValueError
(
raise
ValueError
(
self
.
_log
(
"consumer({}) is already in channel"
.
format
(
op_name
)))
self
.
_log
(
"consumer({}) is already in channel"
.
format
(
op_name
)))
self
.
_consumers
[
op_name
]
=
0
self
.
_consumer
_cursor
s
[
op_name
]
=
0
if
self
.
_
idx_consumer_num
.
get
(
0
)
is
None
:
if
self
.
_
cursor_count
.
get
(
0
)
is
None
:
self
.
_
idx_consumer_num
[
0
]
=
0
self
.
_
cursor_count
[
0
]
=
0
self
.
_
idx_consumer_num
[
0
]
+=
1
self
.
_
cursor_count
[
0
]
+=
1
def
push
(
self
,
channeldata
,
op_name
=
None
):
def
push
(
self
,
channeldata
,
op_name
=
None
):
_LOGGER
.
debug
(
_LOGGER
.
debug
(
...
@@ -475,19 +509,19 @@ class ThreadChannel(Queue.Queue):
...
@@ -475,19 +509,19 @@ class ThreadChannel(Queue.Queue):
put_data
=
None
put_data
=
None
with
self
.
_cv
:
with
self
.
_cv
:
_LOGGER
.
debug
(
self
.
_log
(
"{} get lock"
.
format
(
op_name
)))
_LOGGER
.
debug
(
self
.
_log
(
"{} get lock"
.
format
(
op_name
)))
if
data_id
not
in
self
.
_
push_res
:
if
data_id
not
in
self
.
_
input_buf
:
self
.
_
push_res
[
data_id
]
=
{
self
.
_
input_buf
[
data_id
]
=
{
name
:
None
name
:
None
for
name
in
self
.
_producers
for
name
in
self
.
_producers
}
}
self
.
_producer_res
_count
[
data_id
]
=
0
self
.
pushed_producer
_count
[
data_id
]
=
0
self
.
_
push_res
[
data_id
][
op_name
]
=
channeldata
self
.
_
input_buf
[
data_id
][
op_name
]
=
channeldata
if
self
.
_producer_res
_count
[
data_id
]
+
1
==
producer_num
:
if
self
.
pushed_producer
_count
[
data_id
]
+
1
==
producer_num
:
put_data
=
self
.
_
push_res
[
data_id
]
put_data
=
self
.
_
input_buf
[
data_id
]
self
.
_
push_res
.
pop
(
data_id
)
self
.
_
input_buf
.
pop
(
data_id
)
self
.
_producer_res
_count
.
pop
(
data_id
)
self
.
pushed_producer
_count
.
pop
(
data_id
)
else
:
else
:
self
.
_producer_res
_count
[
data_id
]
+=
1
self
.
pushed_producer
_count
[
data_id
]
+=
1
if
put_data
is
None
:
if
put_data
is
None
:
_LOGGER
.
debug
(
_LOGGER
.
debug
(
...
@@ -508,12 +542,12 @@ class ThreadChannel(Queue.Queue):
...
@@ -508,12 +542,12 @@ class ThreadChannel(Queue.Queue):
def
front
(
self
,
op_name
=
None
):
def
front
(
self
,
op_name
=
None
):
_LOGGER
.
debug
(
self
.
_log
(
"{} try to get data"
.
format
(
op_name
)))
_LOGGER
.
debug
(
self
.
_log
(
"{} try to get data"
.
format
(
op_name
)))
if
len
(
self
.
_consumers
)
==
0
:
if
len
(
self
.
_consumer
_cursor
s
)
==
0
:
raise
Exception
(
raise
Exception
(
self
.
_log
(
self
.
_log
(
"expected number of consumers to be greater than 0, but the it is 0."
"expected number of consumers to be greater than 0, but the it is 0."
))
))
elif
len
(
self
.
_consumers
)
==
1
:
elif
len
(
self
.
_consumer
_cursor
s
)
==
1
:
resp
=
None
resp
=
None
with
self
.
_cv
:
with
self
.
_cv
:
while
self
.
_stop
is
False
and
resp
is
None
:
while
self
.
_stop
is
False
and
resp
is
None
:
...
@@ -531,35 +565,48 @@ class ThreadChannel(Queue.Queue):
...
@@ -531,35 +565,48 @@ class ThreadChannel(Queue.Queue):
self
.
_log
(
self
.
_log
(
"There are multiple consumers, so op_name cannot be None."
))
"There are multiple consumers, so op_name cannot be None."
))
# In output_buf, different Ops (according to op_name) have different
# cursors. In addition, there is a base_cursor. Their difference is
# the data_idx to be taken by the corresponding Op at the current
# time: data_idx = consumer_cursor - base_cursor
#
# base_cursor consumer_B_cursor (data_idx: 3)
# | |
# output_buf: | data0 | data1 | data2 | data3 |
# |
# consumer_A_cursor (data_idx: 0)
with
self
.
_cv
:
with
self
.
_cv
:
# data_idx = consumer_idx - base_idx
# When the data required by the current Op is not in output_buf,
while
self
.
_stop
is
False
and
self
.
_consumers
[
# it is necessary to obtain a data from queue and add it to output_buf.
op_name
]
-
self
.
_consumer_base_idx
>=
len
(
self
.
_front_res
):
while
self
.
_stop
is
False
and
self
.
_consumer_cursors
[
op_name
]
-
self
.
_base_cursor
>=
len
(
self
.
_output_buf
):
try
:
try
:
channeldata
=
self
.
get
(
timeout
=
0
)
channeldata
=
self
.
get
(
timeout
=
0
)
self
.
_
front_res
.
append
(
channeldata
)
self
.
_
output_buf
.
append
(
channeldata
)
break
break
except
Queue
.
Empty
:
except
Queue
.
Empty
:
self
.
_cv
.
wait
()
self
.
_cv
.
wait
()
consumer_
idx
=
self
.
_consume
rs
[
op_name
]
consumer_
cursor
=
self
.
_consumer_curso
rs
[
op_name
]
base_
idx
=
self
.
_consumer_base_idx
base_
cursor
=
self
.
_base_cursor
data_idx
=
consumer_
idx
-
base_idx
data_idx
=
consumer_
cursor
-
base_cursor
resp
=
self
.
_
front_res
[
data_idx
]
resp
=
self
.
_
output_buf
[
data_idx
]
_LOGGER
.
debug
(
self
.
_log
(
"{} get data: {}"
.
format
(
op_name
,
resp
)))
_LOGGER
.
debug
(
self
.
_log
(
"{} get data: {}"
.
format
(
op_name
,
resp
)))
self
.
_idx_consumer_num
[
consumer_idx
]
-=
1
self
.
_cursor_count
[
consumer_cursor
]
-=
1
if
consumer_idx
==
base_idx
and
self
.
_idx_consumer_num
[
if
consumer_cursor
==
base_cursor
and
self
.
_cursor_count
[
consumer_idx
]
==
0
:
consumer_cursor
]
==
0
:
self
.
_idx_consumer_num
.
pop
(
consumer_idx
)
# When all the different Ops get the data that data_idx points
self
.
_front_res
.
pop
(
0
)
# to, pop the data from output_buf.
self
.
_consumer_base_idx
+=
1
self
.
_cursor_count
.
pop
(
consumer_cursor
)
self
.
_output_buf
.
pop
(
0
)
self
.
_consumers
[
op_name
]
+=
1
self
.
_base_cursor
+=
1
new_consumer_idx
=
self
.
_consumers
[
op_name
]
if
self
.
_idx_consumer_num
.
get
(
new_consumer_idx
)
is
None
:
self
.
_consumer_cursors
[
op_name
]
+=
1
self
.
_idx_consumer_num
[
new_consumer_idx
]
=
0
new_consumer_cursor
=
self
.
_consumer_cursors
[
op_name
]
self
.
_idx_consumer_num
[
new_consumer_idx
]
+=
1
if
self
.
_cursor_count
.
get
(
new_consumer_cursor
)
is
None
:
self
.
_cursor_count
[
new_consumer_cursor
]
=
0
self
.
_cursor_count
[
new_consumer_cursor
]
+=
1
self
.
_cv
.
notify_all
()
self
.
_cv
.
notify_all
()
...
...
python/pipeline/operator.py
浏览文件 @
ac66194e
...
@@ -146,9 +146,6 @@ class Op(object):
...
@@ -146,9 +146,6 @@ class Op(object):
return
fetch_dict
return
fetch_dict
def
stop
(
self
):
def
stop
(
self
):
self
.
_input
.
stop
()
for
channel
in
self
.
_outputs
:
channel
.
stop
()
self
.
_is_run
=
False
self
.
_is_run
=
False
def
_parse_channeldata
(
self
,
channeldata_dict
):
def
_parse_channeldata
(
self
,
channeldata_dict
):
...
...
python/pipeline/pipeline_server.py
浏览文件 @
ac66194e
...
@@ -66,6 +66,7 @@ class PipelineService(pipeline_service_pb2_grpc.PipelineServiceServicer):
...
@@ -66,6 +66,7 @@ class PipelineService(pipeline_service_pb2_grpc.PipelineServiceServicer):
self
.
_globel_resp_dict
=
{}
self
.
_globel_resp_dict
=
{}
self
.
_id_counter
=
0
self
.
_id_counter
=
0
self
.
_retry
=
retry
self
.
_retry
=
retry
self
.
_is_run
=
True
self
.
_pack_func
=
pack_func
self
.
_pack_func
=
pack_func
self
.
_unpack_func
=
unpack_func
self
.
_unpack_func
=
unpack_func
self
.
_recive_func
=
threading
.
Thread
(
self
.
_recive_func
=
threading
.
Thread
(
...
@@ -91,8 +92,11 @@ class PipelineService(pipeline_service_pb2_grpc.PipelineServiceServicer):
...
@@ -91,8 +92,11 @@ class PipelineService(pipeline_service_pb2_grpc.PipelineServiceServicer):
out_channel
.
add_consumer
(
self
.
name
)
out_channel
.
add_consumer
(
self
.
name
)
self
.
_out_channel
=
out_channel
self
.
_out_channel
=
out_channel
def
stop
(
self
):
self
.
_is_run
=
False
def
_recive_out_channel_func
(
self
):
def
_recive_out_channel_func
(
self
):
while
True
:
while
self
.
_is_run
:
channeldata_dict
=
self
.
_out_channel
.
front
(
self
.
name
)
channeldata_dict
=
self
.
_out_channel
.
front
(
self
.
name
)
if
len
(
channeldata_dict
)
!=
1
:
if
len
(
channeldata_dict
)
!=
1
:
raise
Exception
(
"out_channel cannot have multiple input ops"
)
raise
Exception
(
"out_channel cannot have multiple input ops"
)
...
@@ -416,22 +420,26 @@ class PipelineServer(object):
...
@@ -416,22 +420,26 @@ class PipelineServer(object):
op
.
start_with_process
(
self
.
_client_type
))
op
.
start_with_process
(
self
.
_client_type
))
return
threads_or_proces
return
threads_or_proces
def
_stop_ops
(
self
):
def
_stop_all
(
self
,
service
):
service
.
stop
()
for
op
in
self
.
_actual_ops
:
for
op
in
self
.
_actual_ops
:
op
.
stop
()
op
.
stop
()
for
chl
in
self
.
_channels
:
chl
.
stop
()
def
run_server
(
self
):
def
run_server
(
self
):
op_threads_or_proces
=
self
.
_run_ops
()
op_threads_or_proces
=
self
.
_run_ops
()
service
=
PipelineService
(
self
.
_in_channel
,
self
.
_out_channel
,
self
.
_unpack_func
,
self
.
_pack_func
,
self
.
_retry
)
server
=
grpc
.
server
(
server
=
grpc
.
server
(
futures
.
ThreadPoolExecutor
(
max_workers
=
self
.
_worker_num
))
futures
.
ThreadPoolExecutor
(
max_workers
=
self
.
_worker_num
))
pipeline_service_pb2_grpc
.
add_PipelineServiceServicer_to_server
(
pipeline_service_pb2_grpc
.
add_PipelineServiceServicer_to_server
(
service
,
PipelineService
(
self
.
_in_channel
,
self
.
_out_channel
,
server
)
self
.
_unpack_func
,
self
.
_pack_func
,
self
.
_retry
),
server
)
server
.
add_insecure_port
(
'[::]:{}'
.
format
(
self
.
_port
))
server
.
add_insecure_port
(
'[::]:{}'
.
format
(
self
.
_port
))
server
.
start
()
server
.
start
()
server
.
wait_for_termination
()
server
.
wait_for_termination
()
self
.
_stop_
ops
()
# TODO
self
.
_stop_
all
()
# TODO
for
x
in
op_threads_or_proces
:
for
x
in
op_threads_or_proces
:
x
.
join
()
x
.
join
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录