如何使用Hadoop WebHDFS读取和传输文件块?

时间:2015-11-28 18:17:22

标签: hadoop httpclient fiware webhdfs fiware-cosmos

我需要将大文件(至少14MB)从FIWARE Lab的Cosmos实例传输到我的后端。

我使用Spring RestTemplate作为描述here的Hadoop WebHDFS REST API的客户端接口,但我遇到了IO异常:

Exception in thread "main" org.springframework.web.client.ResourceAccessException: I/O error on GET request for "http://cosmos.lab.fiware.org:14000/webhdfs/v1/user/<user.name>/<path>?op=open&user.name=<user.name>":Truncated chunk ( expected size: 14744230; actual size: 11285103); nested exception is org.apache.http.TruncatedChunkException: Truncated chunk ( expected size: 14744230; actual size: 11285103)
    at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:580)
    at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:545)
    at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:466)

这是生成异常的实际代码:

RestTemplate restTemplate = new RestTemplate();
restTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory());
restTemplate.getMessageConverters().add(new ByteArrayHttpMessageConverter()); 
HttpEntity<?> entity = new HttpEntity<>(headers);

UriComponentsBuilder builder = 
    UriComponentsBuilder.fromHttpUrl(hdfs_path)
        .queryParam("op", "OPEN")
        .queryParam("user.name", user_name);

ResponseEntity<byte[]> response =
    restTemplate
        .exchange(builder.build().encode().toUri(), HttpMethod.GET, entity, byte[].class);

FileOutputStream output = new FileOutputStream(new File(local_path));
IOUtils.write(response.getBody(), output);
output.close();

我认为这是由于Cosmos实例上的传输超时,所以我尝试了 通过指定curl参数在路径上发送offset, buffer and length,但它们似乎被忽略了:我收到了整个文件。

提前致谢。

1 个答案:

答案 0 :(得分:4)

好的,我找到了一个解决方案。我不明白为什么,但如果我使用Jetty HttpClient而不是RestTemplate(以及Apache HttpClient),转移就成功了。这现在有效:

ContentExchange exchange = new ContentExchange(true){
            ByteArrayOutputStream bos = new ByteArrayOutputStream();

            protected void onResponseContent(Buffer content) throws IOException {
                bos.write(content.asArray(), 0, content.length());
            }

            protected void onResponseComplete() throws IOException {
                if (getResponseStatus()== HttpStatus.OK_200) {
                    FileOutputStream output = new FileOutputStream(new File(<local_path>));
                    IOUtils.write(bos.toByteArray(), output);
                    output.close();
                }
            }

        };

UriComponentsBuilder builder = UriComponentsBuilder.fromHttpUrl(<hdfs_path>)
                .queryParam("op", "OPEN")
                .queryParam("user.name", <user_name>);

exchange.setURL(builder.build().encode().toUriString());
exchange.setMethod("GET");
exchange.setRequestHeader("X-Auth-Token", <token>);

HttpClient client = new HttpClient();
client.setConnectorType(HttpClient.CONNECTOR_SELECT_CHANNEL);
client.setMaxConnectionsPerAddress(200);
client.setThreadPool(new QueuedThreadPool(250)); 
client.start();
client.send(exchange);
exchange.waitForDone();

Apache Http Client上是否存在任何已知的错误文件传输错误?

我在RestTemplate请求中做错了吗?

更新:我仍然没有解决方案

经过几次测试后,我发现我没有解决我的问题。 我发现Cosmos实例上安装的hadoop版本很旧 Hadoop 0.20.2-cdh3u6 我读到WebHDFS不支持使用length参数进行部分文件传输({{ 3}})。 这些是我使用curl发送GET请求时从服务器收到的标头:

Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: HEAD, POST, GET, OPTIONS, DELETE
Access-Control-Allow-Headers: origin, content-type, X-Auth-Token, Tenant-ID, Authorization
server: Apache-Coyote/1.1
set-cookie: hadoop.auth="u=<user>&p=<user>&t=simple&e=1448999699735&s=rhxMPyR1teP/bIJLfjOLWvW2pIQ="; Version=1; Path=/
Content-Type: application/octet-stream; charset=utf-8
content-length: 172934567
date: Tue, 01 Dec 2015 09:54:59 GMT
connection: close

如您所见,Connection标头设置为关闭。实际上,每次GET请求持续超过120秒时,连接通常都会关闭,即使文件传输尚未完成。

总之,如果它不支持大文件传输,我可以说Cosmos完全没用。

如果我错了,或者你知道解决方法,请纠正我。