milleruntime opened a new issue #2165: URL: https://github.com/apache/accumulo/issues/2165
The java classes for dealing with byte streams are synchronized so might not perform well for certain situations that don't require thread safe guarantees. Explore the use of `org.apache.commons.io.input.UnsynchronizedByteArrayInputStream` and `org.apache.commons.io.output.UnsynchronizedByteArrayOutputStream`. A lot of Accumulo modules already include these classes with the Apache commons-io dependency so their use may not require an additional dependency. These classes would replace the java classes `ByteArrayInputStream` and `ByteArrayOutputStream`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
