[
https://issues.apache.org/jira/browse/HADOOP-14999?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Genmao Yu updated HADOOP-14999:
-------------------------------
Description:
This mechanism is designed for uploading file in parallel and asynchronously:
- improve the performance of uploading file to OSS server. Firstly, this
mechanism splits result to multiple small blocks and upload them in parallel.
Then, getting result and uploading blocks are asynchronous.
- avoid buffering too large result into local disk. To cite an extreme example,
there is a task which will output 100GB or even larger, we may need to output
this 100GB to local disk and then upload it. Sometimes, it is inefficient and
limited to disk space.
This patch reuse {{SemaphoredDelegatingExecutor}} as executor service and
depends on HADOOP-15039.
Attached {{asynchronous_file_uploading.pdf}} illustrated the difference between
previous {{AliyunOSSOutputStream}} and {{AliyunOSSBlockOutputStream}}, i.e.
this asynchronous multi-part based uploading mechanism.
- {{AliyunOSSOutputStream}}: we need to output the whole result to local disk
before we can upload it to OSS. This will poses two problems:
- if the output file is too large, it will run out of the local disk.
- if the output file is too large, task will wait long time to upload
result to OSS before finish, wasting much compute resource.
- {{AliyunOSSBlockOutputStream}}: we cut the task output into small blocks,
i.e. some small local file, and each block will be packaged into a uploading
task. These tasks will be submitted into {{SemaphoredDelegatingExecutor}}.
{{SemaphoredDelegatingExecutor}} will upload this blocks in in parallel, this
will improve performance greatly.
was:
This mechanism is designed for uploading file in parallel and asynchronously:
- improve the performance of uploading file to OSS server. Firstly, this
mechanism splits result to multiple small blocks and upload them in parallel.
Then, getting result and uploading blocks are asynchronous.
- avoid buffering too large result into local disk. To cite an extreme example,
there is a task which will output 100GB or even larger, we may need to output
this 100GB to local disk and then upload it. Sometimes, it is inefficient and
limited to disk space.
This patch reuse {{SemaphoredDelegatingExecutor}} as executor service and
depends on HADOOP-15039.
Attached {{asynchronous_file_uploading.pdf}} illustrated the difference between
previous {{AliyunOSSOutputStream}} and {{AliyunOSSBlockOutputStream}}, i.e.
this asynchronous multi-part based uploading mechanism.
> AliyunOSS: provide one asynchronous multi-part based uploading mechanism
> ------------------------------------------------------------------------
>
> Key: HADOOP-14999
> URL: https://issues.apache.org/jira/browse/HADOOP-14999
> Project: Hadoop Common
> Issue Type: Sub-task
> Components: fs/oss
> Affects Versions: 3.0.0-beta1
> Reporter: Genmao Yu
> Assignee: Genmao Yu
> Attachments: HADOOP-14999.001.patch, HADOOP-14999.002.patch,
> HADOOP-14999.003.patch, asynchronous_file_uploading.pdf
>
>
> This mechanism is designed for uploading file in parallel and asynchronously:
> - improve the performance of uploading file to OSS server. Firstly, this
> mechanism splits result to multiple small blocks and upload them in parallel.
> Then, getting result and uploading blocks are asynchronous.
> - avoid buffering too large result into local disk. To cite an extreme
> example, there is a task which will output 100GB or even larger, we may need
> to output this 100GB to local disk and then upload it. Sometimes, it is
> inefficient and limited to disk space.
> This patch reuse {{SemaphoredDelegatingExecutor}} as executor service and
> depends on HADOOP-15039.
> Attached {{asynchronous_file_uploading.pdf}} illustrated the difference
> between previous {{AliyunOSSOutputStream}} and
> {{AliyunOSSBlockOutputStream}}, i.e. this asynchronous multi-part based
> uploading mechanism.
> - {{AliyunOSSOutputStream}}: we need to output the whole result to local disk
> before we can upload it to OSS. This will poses two problems:
> - if the output file is too large, it will run out of the local disk.
> - if the output file is too large, task will wait long time to upload
> result to OSS before finish, wasting much compute resource.
> - {{AliyunOSSBlockOutputStream}}: we cut the task output into small blocks,
> i.e. some small local file, and each block will be packaged into a uploading
> task. These tasks will be submitted into {{SemaphoredDelegatingExecutor}}.
> {{SemaphoredDelegatingExecutor}} will upload this blocks in in parallel, this
> will improve performance greatly.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]