[
https://issues.apache.org/jira/browse/BEAM-3572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Luke Cwik resolved BEAM-3572.
-----------------------------
Resolution: Fixed
Fix Version/s: 2.4.0
> Reduce inefficient allocations in coders
> ----------------------------------------
>
> Key: BEAM-3572
> URL: https://issues.apache.org/jira/browse/BEAM-3572
> Project: Beam
> Issue Type: Improvement
> Components: sdk-java-core
> Reporter: Bill Neubauer
> Assignee: Bill Neubauer
> Priority: Minor
> Fix For: 2.4.0
>
> Original Estimate: 24h
> Time Spent: 10m
> Remaining Estimate: 23h 50m
>
> BufferedElementCountingOutputStream's constructor allocates a new buffer to
> wrap the input OutputStream. This gets called on each invocation of encode()
> from IterableLikeCoder. Since Coder is designed to be stateless, but thisĀ
> buffer holds state and isn't threadsafe, we can't just have the caller manage
> the buffer. Modifying the constructor to use a pool of buffers to reduce the
> number of allocations will help performance.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)