1

我有如下路线。它适用于小文件,但对于大文件(大约 6GB 或更多),我的程序内存不足。如何流式传输内容而不存储在内存中?

public void configure() throws Exception {
    S3LastModifiedFilter lastModifiedFilter =
            new S3LastModifiedFilter(s3Properties.getLastModifiedWithinSeconds(), s3Properties.getPrefix());

    from(inboundS3Uri)
            .filter().method(lastModifiedFilter, "accept")
            .idempotentConsumer(header(S3Constants.KEY),
                    MemoryIdempotentRepository.memoryIdempotentRepository(inboundCacheSize))
            .convertBodyTo(byte[].class, UTF_8.name())
            .process(new ForHttpMessageProcessor(httpProperties))
            .to(outboundHttpUri);
}

错误

Caused by: org.apache.camel.TypeConversionException: Error during type conversion from type: java.lang.String to the required type: byte[] with value [Body is instance of java.io.InputStream] due java.lang.OutOfMemoryError: Java heap space
    at org.apache.camel.impl.converter.BaseTypeConverterRegistry.createTypeConversionException(BaseTypeConverterRegistry.java:629)
    at org.apache.camel.impl.converter.BaseTypeConverterRegistry.mandatoryConvertTo(BaseTypeConverterRegistry.java:190)
    at org.apache.camel.impl.MessageSupport.getMandatoryBody(MessageSupport.java:108)
    ... 23 common frames omitted
Caused by: org.apache.camel.RuntimeCamelException: java.lang.OutOfMemoryError: Java heap space
    at org.apache.camel.util.ObjectHelper.wrapRuntimeCamelException(ObjectHelper.java:1774)
4

1 回答 1

1

原来线路convertBodyTo(byte[].class, UTF_8.name())是问题所在。它试图缓冲内存中的内容并转换为字符串。我把它注释掉了,现在代码可以工作了。

于 2017-06-19T08:50:44.083 回答