Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
1d4fc409
S
Serving
项目概览
PaddlePaddle
/
Serving
接近 2 年 前同步成功
通知
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看板
提交
1d4fc409
编写于
9月 24, 2021
作者:
Z
zhangqingshan01
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加python http方式请求cube数据样例
上级
eb16b33f
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
123 addition
and
0 deletion
+123
-0
core/cube/cube-api/python-api/conf/cube.conf
core/cube/cube-api/python-api/conf/cube.conf
+11
-0
core/cube/cube-api/python-api/demo.py
core/cube/cube-api/python-api/demo.py
+76
-0
core/cube/cube-api/python-api/input.json
core/cube/cube-api/python-api/input.json
+2
-0
core/cube/cube-api/python-api/ptyhon_api.md
core/cube/cube-api/python-api/ptyhon_api.md
+32
-0
core/cube/cube-api/python-api/result.json
core/cube/cube-api/python-api/result.json
+2
-0
未找到文件。
core/cube/cube-api/python-api/conf/cube.conf
0 → 100644
浏览文件 @
1d4fc409
[{
"dict_name"
:
"test"
,
"shard"
:
2
,
"nodes"
: [{
"ip"
:
"127.0.0.1"
,
"port"
:
8731
},{
"ip"
:
"127.0.0.1"
,
"port"
:
8730
}]
}]
core/cube/cube-api/python-api/demo.py
0 → 100644
浏览文件 @
1d4fc409
#coding=utf-8
import
requests
import
sys
import
json
class
Meta
(
object
):
"""记录cube分片server路由"""
def
__init__
(
self
,
conf_path
):
"""根据配置文件初始化路由"""
self
.
server_api
=
"/DictService/seek"
self
.
server_meta
=
{}
with
open
(
conf_path
,
"r"
,
encoding
=
"utf8"
)
as
fp
:
cube_servcers
=
json
.
load
(
fp
)
for
server
in
cube_servcers
:
self
.
server_meta
[
server
[
"dict_name"
]]
=
server
fp
.
close
()
def
seek
(
self
,
dict_name
,
keys_path
,
save_path
):
"""查询"""
save_file
=
open
(
save_path
,
'w'
)
with
open
(
keys_path
,
"r"
,
encoding
=
"utf8"
)
as
fp
:
lines
=
fp
.
readlines
()
for
line
in
lines
:
json_line
=
json
.
loads
(
line
)
values
=
[{}
for
i
in
range
(
len
(
json_line
[
"keys"
]))]
splited_keys
,
offset
=
self
.
split_keys
(
json_line
)
for
shard_id
,
keys
in
splited_keys
.
items
():
results
=
self
.
post
(
dict_name
,
shard_id
,
keys
)
for
i
,
result
in
enumerate
(
results
[
"values"
]):
values
[
offset
[
shard_id
][
i
]]
=
result
cur_line_results
=
{}
cur_line_results
[
"values"
]
=
values
json
.
dump
(
cur_line_results
,
save_file
)
save_file
.
write
(
"
\n
"
)
fp
.
close
()
save_file
.
close
()
def
split_keys
(
self
,
json_line
):
"""根据key值及分片数判断去哪一个分片上查询"""
keys_split
=
{}
offset
=
{}
i
=
0
for
key
in
json_line
[
"keys"
]:
shard_id
=
key
%
self
.
server_meta
[
dict_name
][
"shard"
]
if
shard_id
not
in
keys_split
:
keys_split
[
shard_id
]
=
[]
keys_split
[
shard_id
].
append
(
key
)
if
shard_id
not
in
offset
:
offset
[
shard_id
]
=
[]
offset
[
shard_id
].
append
(
i
)
i
+=
1
return
keys_split
,
offset
def
post
(
self
,
dict_name
,
shard_id
,
keys
):
"""向分片server发送post请求"""
api
=
"http://%s:%s%s"
%
(
self
.
server_meta
[
dict_name
][
"nodes"
][
shard_id
][
"ip"
],
self
.
server_meta
[
dict_name
][
"nodes"
][
shard_id
][
"port"
],
self
.
server_api
)
data
=
{
"keys"
:
keys
}
response
=
requests
.
post
(
api
,
json
.
dumps
(
data
))
return
response
.
json
()
if
__name__
==
'__main__'
:
if
len
(
sys
.
argv
)
!=
5
:
print
(
'please usage: python demo.py conf_path dict_name keys_path save_path'
)
exit
(
0
)
conf_path
=
sys
.
argv
[
1
]
dict_name
=
sys
.
argv
[
2
]
keys_path
=
sys
.
argv
[
3
]
save_path
=
sys
.
argv
[
4
]
meta
=
Meta
(
conf_path
)
meta
.
seek
(
dict_name
,
keys_path
,
save_path
)
core/cube/cube-api/python-api/input.json
0 → 100644
浏览文件 @
1d4fc409
{
"keys"
:
[
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
]}
{
"keys"
:
[
1
]}
\ No newline at end of file
core/cube/cube-api/python-api/ptyhon_api.md
0 → 100644
浏览文件 @
1d4fc409
# cube python api说明文档
参考
[
大规模稀疏参数服务Cube的部署和使用
](
https://github.com/PaddlePaddle/Serving/blob/master/doc/DEPLOY.md#2-大规模稀疏参数服务cube的部署和使用
)
文档进行cube的部署。
使用python api,可替代上述文档中第3节预测服务的部署、使用
## 配置说明
conf/cube.conf 以json格式,设置各个分片cube server的ip以及port,shard与分片数一致,示例:
```
bash
[{
"dict_name"
:
"test"
,
"shard"
: 2,
"nodes"
:
[{
"ip"
:
"127.0.0.1"
,
"port"
: 8731
}
,
{
"ip"
:
"127.0.0.1"
,
"port"
: 8730
}]
}]
```
## 数据格式
```
bash
{
"keys"
:
[
0,1,2,3,4,5,6,7]
}
{
"keys"
:
[
1]
}
```
支持批量查询,每次查询一行
## 使用
```
bash
cd
./python-api
python3 demo.py conf/cube.conf
test
input.json result.json
```
\ No newline at end of file
core/cube/cube-api/python-api/result.json
0 → 100644
浏览文件 @
1d4fc409
{
"values"
:
[{
"status"
:
4294967295
,
"value"
:
""
},
{
"status"
:
4294967295
,
"value"
:
""
},
{
"status"
:
4294967295
,
"value"
:
""
},
{
"status"
:
4294967295
,
"value"
:
""
},
{
"status"
:
4294967295
,
"value"
:
""
},
{
"status"
:
4294967295
,
"value"
:
""
},
{
"status"
:
4294967295
,
"value"
:
""
},
{
"status"
:
4294967295
,
"value"
:
""
}]}
{
"values"
:
[{
"status"
:
4294967295
,
"value"
:
""
}]}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录