Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
0fb76c3f
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0fb76c3f
编写于
5月 16, 2017
作者:
G
gongweibao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix by yancey
上级
3c702059
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
7 addition
and
7 deletion
+7
-7
doc/design/file_manager/README.md
doc/design/file_manager/README.md
+6
-6
doc/design/file_manager/pfs/pfsclient.md
doc/design/file_manager/pfs/pfsclient.md
+1
-1
未找到文件。
doc/design/file_manager/README.md
浏览文件 @
0fb76c3f
...
@@ -34,16 +34,16 @@
...
@@ -34,16 +34,16 @@
### PFSServer
### PFSServer
PFSServer提供RESTful API接口,接收处理PFSClient端的文件管理请求,并且把结果返回PFSClient端。
PFSServer提供RESTful API接口,接收处理PFSClient端的文件管理请求,并且把结果返回PFSClient端。
```
RESTful API
RESTful API
-
/api/v1/files
-
/api/v1/files
- `GET /api/v1/files`: Get attributes of files or directories.
-
`GET /api/v1/files`
: Get metadata of files or directories.
- `POST /api/v1/files`: Update files or directories.
-
`POST /api/v1/files`
: Create files or directories.
-
`PATCH /api/v1/files`
: Update files or directories.
-
`DELETE /api/v1/files`
: Delete files or directories.
-
`DELETE /api/v1/files`
: Delete files or directories.
-
/api/v1/file/chunks
-
/api/v1/file/chunks
- `GET /api/v1/storage/file/chunks`: Get chunks's
attributes
of a file.
-
`GET /api/v1/storage/file/chunks`
: Get chunks's
metadata
of a file.
-
/api/v1/storage/files
-
/api/v1/storage/files
-
`GET /api/v1/storage/files`
: Download files or directories.
-
`GET /api/v1/storage/files`
: Download files or directories.
...
@@ -52,11 +52,11 @@ RESTful API
...
@@ -52,11 +52,11 @@ RESTful API
-
/api/v1/storage/file/chunks
-
/api/v1/storage/file/chunks
-
`GET /api/v1/storage/file/chunks`
: Download chunks's data.
-
`GET /api/v1/storage/file/chunks`
: Download chunks's data.
-
`POST /api/v1/storage/file/chunks`
: Upload chunks's data.
-
`POST /api/v1/storage/file/chunks`
: Upload chunks's data.
```
## 文件传输优化
## 文件传输优化
### 分块文件传输
### 分块文件传输
用户文件可能是比较大的,上传到Cloud或者下载到本地的时间可能比较长,而且在传输的过程中也可能出现网络不稳定的情况。为了应对以上的问题,我们提出了Chunk的概念,一个Chunk由所在的文件偏移、数据、数据长度及校验值组成。文件
数据内容的上传和下载都是都过
Chunk的操作来实现的。由于Chunk比较小(默认256K),完成一个传输动作完成的时间也比较短,不容易出错。PFSClient需要在传输完毕最后一个Chunk的时候检查destination文件的MD5值是否和source文件一致。
用户文件可能是比较大的,上传到Cloud或者下载到本地的时间可能比较长,而且在传输的过程中也可能出现网络不稳定的情况。为了应对以上的问题,我们提出了Chunk的概念,一个Chunk由所在的文件偏移、数据、数据长度及校验值组成。文件
的上传和下载都是通过对
Chunk的操作来实现的。由于Chunk比较小(默认256K),完成一个传输动作完成的时间也比较短,不容易出错。PFSClient需要在传输完毕最后一个Chunk的时候检查destination文件的MD5值是否和source文件一致。
一个典型的Chunk如下所示:
一个典型的Chunk如下所示:
...
...
doc/design/file_manager/pfs/pfsclient.md
浏览文件 @
0fb76c3f
...
@@ -109,7 +109,7 @@ Synopsis:
...
@@ -109,7 +109,7 @@ Synopsis:
ls [-r] <PFSPath> ...
ls [-r] <PFSPath> ...
Options:
Options:
-
r
-
R
List directory(ies) recursively
List directory(ies) recursively
Examples:
Examples:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录