Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
d1014269
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
694
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d1014269
编写于
5月 10, 2017
作者:
G
gongweibao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify by comments
上级
1cc60626
变更
10
显示空白变更内容
内联
并排
Showing
10 changed file
with
64 addition
and
75 deletion
+64
-75
doc/design/file_mananger/README.md
doc/design/file_mananger/README.md
+42
-53
doc/design/file_mananger/pfs/cp.md
doc/design/file_mananger/pfs/cp.md
+4
-4
doc/design/file_mananger/pfs/ls.md
doc/design/file_mananger/pfs/ls.md
+2
-2
doc/design/file_mananger/pfs/mkdir.md
doc/design/file_mananger/pfs/mkdir.md
+2
-2
doc/design/file_mananger/pfs/mv.md
doc/design/file_mananger/pfs/mv.md
+2
-2
doc/design/file_mananger/pfs/pfs.md
doc/design/file_mananger/pfs/pfs.md
+1
-1
doc/design/file_mananger/pfs/rm.md
doc/design/file_mananger/pfs/rm.md
+5
-5
doc/design/file_mananger/pfs/sync.md
doc/design/file_mananger/pfs/sync.md
+6
-6
doc/design/file_mananger/src/filemanager.graffle
doc/design/file_mananger/src/filemanager.graffle
+0
-0
doc/design/file_mananger/src/filemanager.png
doc/design/file_mananger/src/filemanager.png
+0
-0
未找到文件。
doc/design/file_mananger/README.md
浏览文件 @
d1014269
# FileManager设计文档
## 名词解释
-
PFS:是Paddle cloud File System的简称。与之相对的是Local File System。
-
FileServer:接收用户管理文件命令的服务端
-
FileManger:用户管理自己自己在PFS文件上的系统称为FileManager
-
CephFS:是个POSIX 兼容的文件系统,它使用 Ceph 存储集群来存储数据.
-
Chunk:逻辑划分文件的一个单位,用于文件分块上传或者下载。
-
Ingress:Layer 7 Load Balancer
## 目标
在本文档中,我们设计说明了用户上传、下载、管理自己在PaddlePaddle Cloud上的文件所涉及到的模块和流程。架构图如下所示:
在本文档中,我们设计说明了名为FileManager系统,方便用户管理存放到PaddlePaddle Cloud上的文件。
主要功能包括:
<image
src=
./src/filemanager.png
width=
8900
>
-
提供常用的命令行文件管理命令管理文件
-
支持的命令在[Here] (./pfs/pfs.md)
-
支持大文件的断点上传、下载
## 名词解释
-
PFS:是Paddlepaddle cloud File System的简称,是对用户文件存储空间的抽象,与之相对的是Local File System。目前我们用CephFS来搭建。
-
[
CephFS
](
http://docs.ceph.com/docs/master/cephfs/
)
:一个POSIX兼容的文件系统。
-
Chunk:逻辑划上文件分块的单位。
-
[
Ingress
](
https://kubernetes.io/docs/concepts/services-networking/ingress/
)
:提供七层协议的反向代理、基于粘性会话的负载均衡。
-
CA:certificate authority
<sup>
[
tls
](
#tls
)
</sup>
-
CRT:CA signed certificate
<sup>
[
tls
](
#tls
)
</sup>
-
Key:用户私钥
<sup>
[
tls
](
#tls
)
</sup>
## 模块
## PFS Client
-
提供用户管理Cloud文件的命令
-
用Golang写,可以跨平台执行
### 架构图
<image
src=
./src/filemanager.png
width=
900
>
命令的详细内容看
[
Here
](
./pfs/pfs.md
)
### PFSClient
-
功能: 详细的内容看
[
Here
](
./pfs/pfs.md
)
-
提供用户管理文件的命令
-
用Golang写,可以跨平台执行
-
双向验证
PFSClient需要和Ingress之间做双向验证
<sup>
[
tls
](
#tls
)
</sup>
,所有用户需要首先在
`cloud.paddlepaddle.org`
上注册一下,申请用户空间,并且把系统生成的Key、CRT、CA下载到本地,然后才能使用PFSClient。
### Ingress
-
在kubernets中运行
-
做HTTP转发、负载均衡
-
注意配置session保持,以便来自一个用户的访问可以定向到一个固定的机器上,减少冲突写的机会。
-
功能:
提供七层协议的反向代理、基于粘性会话的负载均衡功能。
## FileServer
功能说明:
-
goRPC写的HTTPServer
-
响应外部的REST API的请求
-
在kubernetes中运行
-
[
RESTAPI
](
./RESTAPI.md
)
接口
-
透传用户身份的办法
Ingress需要把PFSClient的身份头传给FileServer,配置的方法参考
[
Here
](
http://www.integralist.co.uk/posts/clientcertauth.html#3
)
## 文件传输
### 文件权限
-
每一个用户在Cloud注册后可以申请分配用户空间,系统默认会在CephFS上分配一个固定大小(比如初始10G)的、有所有权限的volume,对用户而言就是自己的
`home`
目录。用户彼此之间的数据是隔离的、无法访问的。用户的空间大小第一期也不允许扩大。
-
公共数据集合放到一个单独的volume下,对所有外部用户只读。由于其被读取的可能比较频繁,需要提高其备份数,防止成为热点文件。
###
用户认证
身份的认证来自于用户或者程序是否有crt标识身份,以及是否有可信的CA确认这个身份证是否有效。我们这里描述的crt涉及到两个部分,一个是Client端程序访问FileServer的crt,不妨称之为Client crt;另外一个是FileServer访问CephFS的crt,不妨称之为CephFS crt
。
###
FileServer
FileServer是一个用GoRPC写的HTTPServer,提供
[
RESTful API
](
./RESTAPI.md
)
接口,接收处理PFSClient端的文件管理请求,并且把结果返回PFSClient端
。
-
Client和FileServer相互认证的办法
`cloud.paddlepaddle.org`
需要有自己的CA,FileServer和注册用户也要为其生成各自的私钥(key)、crt。这样用户把CA、自己的key和crt下载到本地后,Client程序可以用之和FileServer可以做相互的认证。
-
CephFS验证FileServer的身份的方法
CephFS crt只有一个,也就是admin crt,拥有所有volume的读写权限。 FileServer从Client crt提取Client的身份(username),限制其可以操作的volume。
## 大文件传输优化
### 分块文件上传
用户文件可能是比较大的,上传到Cloud或者下载到本地的时间可能比较长,而且在传输的过程中也可能出现网络不稳定的情况。为了应对以上的问题,我们提出了
chunk的概念,一个chunk由所在的文件偏移、数据、数据长度及校验值组成。文件数据内容的上传和下载都是都过chunk的操作来实现的。由于chunk比较小(默认256K),完成一个传输动作完成的时间也比较短,不容易出错
。
用户文件可能是比较大的,上传到Cloud或者下载到本地的时间可能比较长,而且在传输的过程中也可能出现网络不稳定的情况。为了应对以上的问题,我们提出了
Chunk的概念,一个Chunk由所在的文件偏移、数据、数据长度及校验值组成。文件数据内容的上传和下载都是都过Chunk的操作来实现的。由于Chunk比较小(默认256K),完成一个传输动作完成的时间也比较短,不容易出错。PFSClient在传输完毕最后一个Chunk的时候检查desttination文件的MD5值是否和source文件一致
。
一个典型的
c
hunk如下所示:
一个典型的
C
hunk如下所示:
```
type Chunk struct {
...
...
@@ -62,22 +56,17 @@ type Chunk struct {
}
```
### 文件传输的优化
文件传输的的关键在于需要Client端对比source和destination的文件chunks的checkSum是否保持一致,不一致的由Client Get或者Post chunk完成。藉由上述的方法完成断点的数据传输。 upload文件时,由于一个文件可以是多个FileServer可写的,存在冲突的机会,需要Client端在Post最后一个chunk的时候检查dest文件的MD5值是否和本地文件一致。
-
优化的方法:
- dst文件不存在时,可以没有Get的过程,只有Post。
-
小的技巧:
### 生成sparse文件
当destination文件不存在或者大小和source文件不一致时,可以用
[
Fallocate
](
https://golang.org/pkg/syscall/#Fallocate
)
生成sparse文件,然后就可以并发写入多个Chunk。
- 可以用[Fallocate](https://golang.org/pkg/syscall/#Fallocate)生成sparse文件,让dst和src文件保持相同的大小。不同位置的chunk可以同时写入。
### 覆盖不一致的部分
文件传输的的关键在于需要PFSClient端对比source和destination的文件Chunks的checksum是否保持一致,不一致的由PFSClient下载或者传输Chunk完成。这样已经传输成功的部分就不用重新传输了。
## 框架生成
用
[
swagger-api
](
https://github.com/swagger-api/swagger-codegen
)
生成Client和FileServer的框架部分,以便我们可以把更多的精力放到逻辑本身上。
## 参考文档
-
[
TLS complete guide
](
https://github.com/k8sp/tls/blob/master/README
.md
)
-
<a
name=
tls
></a>
[
TLS complete guide
](
https://github.com/k8sp/tls/blob/master/tls
.md
)
-
[
aws.s3
](
http://docs.aws.amazon.com/cli/latest/reference/s3/
)
-
[
linux man document
](
https://linux.die.net/man/
)
doc/design/file_mananger/pfs/cp.md
浏览文件 @
d1014269
...
...
@@ -19,23 +19,23 @@ cp - copy files and directories
-
The following command copies a single file to pfs
```
paddle pfs cp ./text1.txt
pfs:/
/mydir/text1.txt
paddle pfs cp ./text1.txt
/pfs
/mydir/text1.txt
```
Output
```
upload ./text1.txt to
pfs:/
/mydir/text1.txt
upload ./text1.txt to
/pfs
/mydir/text1.txt
```
-
The following command copies pfs file to a local file
```
paddle pfs cp
pfs:/
/mydir/text1.txt ./text1.txt
paddle pfs cp
/pfs
/mydir/text1.txt ./text1.txt
```
Output
```
download
pfs:/
/mydir/text1.txt to ./text1.txt
download
/pfs
/mydir/text1.txt to ./text1.txt
```
doc/design/file_mananger/pfs/ls.md
浏览文件 @
d1014269
...
...
@@ -18,7 +18,7 @@ ls - list directory contents or a file attributes
-
The following command lists a single file
```
paddle pfs ls
pfs:/
/mydir/text1.txt
paddle pfs ls
/pfs
/mydir/text1.txt
```
Output
...
...
@@ -30,7 +30,7 @@ Output
-
The following command lists directory contents
```
paddle pfs ls
pfs:/
/mydir
paddle pfs ls
/pfs
/mydir
```
Output
...
...
doc/design/file_mananger/pfs/mkdir.md
浏览文件 @
d1014269
...
...
@@ -9,11 +9,11 @@ Create the pfs directory(ies), if they do not already exist. And create intermed
# Examples
```
paddle pfs mkdir
pfs:/
/mydir1
paddle pfs mkdir
/pfs
/mydir1
```
Output
```
make directory
pfs:/
/mydir1
make directory
/pfs
/mydir1
```
doc/design/file_mananger/pfs/mv.md
浏览文件 @
d1014269
...
...
@@ -18,11 +18,11 @@ mv [OPTION]...
- The following command move a single file to pfs
```
paddle pfs mv ./text1.txt
pfs:/
/mydirectory/test1.txt
paddle pfs mv ./text1.txt
/pfs
/mydirectory/test1.txt
```
Output
```
move ./text1.txt
pfs:/
/mydirectory/test1.txt
move ./text1.txt
/pfs
/mydirectory/test1.txt
```
doc/design/file_mananger/pfs/pfs.md
浏览文件 @
d1014269
...
...
@@ -28,7 +28,7 @@ paddle [options] pfs <subcommand> [parameters]
## Path Arguments
When using a command, we need to specify path arguments. There are two path argument type:
`localpath`
and
`pfspath`
.
A
`pfspath`
begin with
`
pfs://`
, eg:
`pfs:/
/mydir/text1.txt`
.
A
`pfspath`
begin with
`
/pfs`
, eg:
`/pfs
/mydir/text1.txt`
.
## order of Path Arguments
Commonly, if there are two path arguments. The first is the source, and the second is the destination.
...
...
doc/design/file_mananger/pfs/rm.md
浏览文件 @
d1014269
...
...
@@ -20,26 +20,26 @@ rm [OPTION]... <PFSPath>...
-
The following command deletes a single files
```
paddle pfs rm
pfs:/
/mydirectory/test1.txt
paddle pfs rm
/pfs
/mydirectory/test1.txt
```
Output
```
delete
pfs:/
/mydirectory/test1.txt
delete
/pfs
/mydirectory/test1.txt
```
-
The following command deletes a directory recursively.
```
paddle pfs rm -r
pfs:/
/mydirectory
paddle pfs rm -r
/pfs
/mydirectory
```
Output
```
delete
pfs:/
/mydirectory/1.txt
delete
pfs:/
/mydirectory/2.txt
delete
/pfs
/mydirectory/1.txt
delete
/pfs
/mydirectory/2.txt
...
```
doc/design/file_mananger/pfs/sync.md
浏览文件 @
d1014269
...
...
@@ -16,27 +16,27 @@ sync - sync directories. Recursively copies new and updated files from the sourc
-
The following command sync locally directory to pfs
```
paddle pfs sync ./dir1
pfs:/
/mydir1
paddle pfs sync ./dir1
/pfs
/mydir1
```
Output
```
upload ./dir1/text1.txt to
pfs:/
/mydir1/text2.txt
upload ./dir1/text2.txt to
pfs:/
/mydir1/text2.txt
upload ./dir1/text1.txt to
/pfs
/mydir1/text2.txt
upload ./dir1/text2.txt to
/pfs
/mydir1/text2.txt
...
```
-
The following command sync pfs directory to local
```
paddle pfs sync
pfs:/
/mydir1 .
paddle pfs sync
/pfs
/mydir1 .
```
Output
```
download
pfs:/
/mydir1/text1.txt to ./text1.txt
download
pfs:/
/mydir1/text2.txt to ./text2.txt
download
/pfs
/mydir1/text1.txt to ./text1.txt
download
/pfs
/mydir1/text2.txt to ./text2.txt
...
```
doc/design/file_mananger/src/filemanager.graffle
浏览文件 @
d1014269
无法预览此类型文件
doc/design/file_mananger/src/filemanager.png
查看替换文件 @
1cc60626
浏览文件 @
d1014269
53.5 KB
|
W:
|
H:
61.2 KB
|
W:
|
H:
2-up
Swipe
Onion skin
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录