-
Notifications
You must be signed in to change notification settings - Fork 25.7k
Add CompressibleBytesOutputStream for compression #27540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| /* | ||
| * Licensed to Elasticsearch under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch licenses this file to you under | ||
| * the Apache License, Version 2.0 (the "License"); you may | ||
| * not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| package org.elasticsearch.transport; | ||
|
|
||
| import org.apache.lucene.util.IOUtils; | ||
| import org.elasticsearch.common.bytes.BytesReference; | ||
| import org.elasticsearch.common.compress.CompressorFactory; | ||
| import org.elasticsearch.common.io.Streams; | ||
| import org.elasticsearch.common.io.stream.BytesStream; | ||
| import org.elasticsearch.common.io.stream.StreamOutput; | ||
| import org.elasticsearch.common.lease.Releasable; | ||
|
|
||
| import java.io.IOException; | ||
| import java.util.zip.DeflaterOutputStream; | ||
|
|
||
| /** | ||
| * This class exists to provide a stream with optional compression. This is useful as using compression | ||
| * requires that the underlying {@link DeflaterOutputStream} be closed to write EOS bytes. However, the | ||
| * {@link BytesStream} should not be closed yet, as we have not used the bytes. This class handles these | ||
| * intricacies. | ||
| * | ||
| * {@link CompressibleBytesOutputStream#materializeBytes()} should be called when all the bytes have been | ||
| * written to this stream. If compression is enabled, the proper EOS bytes will be written at that point. | ||
| * The underlying {@link BytesReference} will be returned. | ||
| * | ||
| * {@link CompressibleBytesOutputStream#close()} should be called when the bytes are no longer needed and | ||
| * can be safely released. | ||
| */ | ||
| final class CompressibleBytesOutputStream extends StreamOutput implements Releasable { | ||
|
|
||
| private final StreamOutput stream; | ||
| private final BytesStream bytesStreamOutput; | ||
| private final boolean shouldCompress; | ||
|
|
||
| CompressibleBytesOutputStream(BytesStream bytesStreamOutput, boolean shouldCompress) throws IOException { | ||
| this.bytesStreamOutput = bytesStreamOutput; | ||
| this.shouldCompress = shouldCompress; | ||
| if (shouldCompress) { | ||
| this.stream = CompressorFactory.COMPRESSOR.streamOutput(Streams.flushOnCloseStream(bytesStreamOutput)); | ||
| } else { | ||
| this.stream = bytesStreamOutput; | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * This method ensures that compression is complete and returns the underlying bytes. | ||
| * | ||
| * @return bytes underlying the stream | ||
| * @throws IOException if an exception occurs when writing or flushing | ||
| */ | ||
| BytesReference materializeBytes() throws IOException { | ||
| // If we are using compression the stream needs to be closed to ensure that EOS marker bytes are written. | ||
| // The actual ReleasableBytesStreamOutput will not be closed yet as it is wrapped in flushOnCloseStream when | ||
| // passed to the deflater stream. | ||
| if (shouldCompress) { | ||
| stream.close(); | ||
| } | ||
|
|
||
| return bytesStreamOutput.bytes(); | ||
| } | ||
|
|
||
| @Override | ||
| public void writeByte(byte b) throws IOException { | ||
| stream.write(b); | ||
| } | ||
|
|
||
| @Override | ||
| public void writeBytes(byte[] b, int offset, int length) throws IOException { | ||
| stream.writeBytes(b, offset, length); | ||
| } | ||
|
|
||
| @Override | ||
| public void flush() throws IOException { | ||
| stream.flush(); | ||
| } | ||
|
|
||
| @Override | ||
| public void close() { | ||
| if (stream == bytesStreamOutput) { | ||
| assert shouldCompress == false : "If the streams are the same we should not be compressing"; | ||
| IOUtils.closeWhileHandlingException(stream); | ||
| } else { | ||
| assert shouldCompress : "If the streams are different we should be compressing"; | ||
| IOUtils.closeWhileHandlingException(stream, bytesStreamOutput); | ||
| } | ||
| } | ||
|
|
||
| @Override | ||
| public void reset() throws IOException { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can't we just throw UOE?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In practice it probably does not matter, I think we will never call reset on these streams. If the stream is not compressed, then resetting is fine. If the stream is compressed, then we would already throw an unsupported operation exception (from
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it would be good to be consistent and always throw
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| stream.reset(); | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,116 @@ | ||
| /* | ||
| * Licensed to Elasticsearch under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch licenses this file to you under | ||
| * the Apache License, Version 2.0 (the "License"); you may | ||
| * not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| package org.elasticsearch.transport; | ||
|
|
||
| import org.elasticsearch.common.bytes.BytesReference; | ||
| import org.elasticsearch.common.compress.CompressorFactory; | ||
| import org.elasticsearch.common.io.stream.BytesStream; | ||
| import org.elasticsearch.common.io.stream.BytesStreamOutput; | ||
| import org.elasticsearch.common.io.stream.StreamInput; | ||
| import org.elasticsearch.test.ESTestCase; | ||
|
|
||
| import java.io.EOFException; | ||
| import java.io.IOException; | ||
|
|
||
| public class CompressibleBytesOutputStreamTests extends ESTestCase { | ||
|
|
||
| public void testStreamWithoutCompression() throws IOException { | ||
| BytesStream bStream = new ZeroOutOnCloseStream(); | ||
| CompressibleBytesOutputStream stream = new CompressibleBytesOutputStream(bStream, false); | ||
|
|
||
| byte[] expectedBytes = randomBytes(randomInt(30)); | ||
| stream.write(expectedBytes); | ||
|
|
||
| BytesReference bytesRef = stream.materializeBytes(); | ||
|
|
||
| assertFalse(CompressorFactory.COMPRESSOR.isCompressed(bytesRef)); | ||
|
|
||
| StreamInput streamInput = bytesRef.streamInput(); | ||
| byte[] actualBytes = new byte[expectedBytes.length]; | ||
| streamInput.readBytes(actualBytes, 0, expectedBytes.length); | ||
|
|
||
| assertEquals(-1, streamInput.read()); | ||
| assertArrayEquals(expectedBytes, actualBytes); | ||
| stream.close(); | ||
|
|
||
| // The bytes should be zeroed out on close | ||
| for (byte b : bytesRef.toBytesRef().bytes) { | ||
| assertEquals((byte) 0, b); | ||
| } | ||
| } | ||
|
|
||
| public void testStreamWithCompression() throws IOException { | ||
| BytesStream bStream = new ZeroOutOnCloseStream(); | ||
| CompressibleBytesOutputStream stream = new CompressibleBytesOutputStream(bStream, true); | ||
|
|
||
| byte[] expectedBytes = randomBytes(randomInt(30)); | ||
| stream.write(expectedBytes); | ||
|
|
||
| BytesReference bytesRef = stream.materializeBytes(); | ||
|
|
||
| assertTrue(CompressorFactory.COMPRESSOR.isCompressed(bytesRef)); | ||
|
|
||
| StreamInput streamInput = CompressorFactory.COMPRESSOR.streamInput(bytesRef.streamInput()); | ||
| byte[] actualBytes = new byte[expectedBytes.length]; | ||
| streamInput.readBytes(actualBytes, 0, expectedBytes.length); | ||
|
|
||
| assertEquals(-1, streamInput.read()); | ||
| assertArrayEquals(expectedBytes, actualBytes); | ||
| stream.close(); | ||
|
|
||
| // The bytes should be zeroed out on close | ||
| for (byte b : bytesRef.toBytesRef().bytes) { | ||
| assertEquals((byte) 0, b); | ||
| } | ||
| } | ||
|
|
||
| public void testCompressionWithCallingMaterializeFails() throws IOException { | ||
| BytesStream bStream = new ZeroOutOnCloseStream(); | ||
| CompressibleBytesOutputStream stream = new CompressibleBytesOutputStream(bStream, true); | ||
|
|
||
| byte[] expectedBytes = randomBytes(randomInt(30)); | ||
| stream.write(expectedBytes); | ||
|
|
||
|
|
||
| StreamInput streamInput = CompressorFactory.COMPRESSOR.streamInput(bStream.bytes().streamInput()); | ||
| byte[] actualBytes = new byte[expectedBytes.length]; | ||
| EOFException e = expectThrows(EOFException.class, () -> streamInput.readBytes(actualBytes, 0, expectedBytes.length)); | ||
| assertEquals("Unexpected end of ZLIB input stream", e.getMessage()); | ||
|
|
||
| stream.close(); | ||
| } | ||
|
|
||
| private static byte[] randomBytes(int length) { | ||
| byte[] bytes = new byte[length]; | ||
| for (int i = 0; i < bytes.length; ++i) { | ||
| bytes[i] = randomByte(); | ||
| } | ||
| return bytes; | ||
| } | ||
|
|
||
| private static class ZeroOutOnCloseStream extends BytesStreamOutput { | ||
|
|
||
| @Override | ||
| public void close() { | ||
| int size = (int) bytes.size(); | ||
| bytes.set(0, new byte[size], 0, size); | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we not bubble up the exception here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is an artifact of the compressible bytes output stream implementing releasable which does not declare any checked exceptions. I think we should remove this and let these bubble up as you say. I opened: #27542
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I integrated #27542, are you good with this PR now @s1monw?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this PR still doesn't bubble up exceptions?!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@s1monw I will pull #27542 in when I pull this PR in (I did it this way because this code already exists in 6.0/6.1/6.x/master and this PR is targeting 5.6 only). So: separate PRs to make the changes you are requesting to compressible bytes output stream in all branches.