-
Notifications
You must be signed in to change notification settings - Fork 4.2k
ARROW-4532: [Java] fix bug causing very large varchar value buffers #3613
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 1 commit
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 |
|---|---|---|
|
|
@@ -1394,6 +1394,35 @@ public void testFillEmptiesNotOverfill() { | |
| } | ||
| } | ||
|
|
||
| @Test | ||
| public void testSetSafeWithArrowBuf() { | ||
| final int numValues = BaseFixedWidthVector.INITIAL_VALUE_ALLOCATION * 2; | ||
|
|
||
| try ( | ||
| final VarCharVector fromVector = newVector(VarCharVector.class, EMPTY_SCHEMA_PATH, | ||
| MinorType.VARCHAR, allocator); | ||
| final VarCharVector toVector = newVector(VarCharVector.class, EMPTY_SCHEMA_PATH, | ||
| MinorType.VARCHAR, allocator)) { | ||
| fromVector.setInitialCapacity(numValues); | ||
|
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. it might make the unit test easier to read if you separated each section by a comment. // Execute // Verify
Contributor
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. i've added comments. |
||
| fromVector.allocateNew(); | ||
| for (int i = 0; i < numValues; ++i) { | ||
| fromVector.setSafe(i, "hello world".getBytes(), 0, 11); | ||
|
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. it might make the test easier to read if 0 and 11 where constants or had comments next to them.
Contributor
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. fixed. |
||
| } | ||
| fromVector.setValueCount(numValues); | ||
| ArrowBuf fromDataBuffer = fromVector.getDataBuffer(); | ||
| assertEquals(BaseAllocator.nextPowerOfTwo(numValues * 11), fromDataBuffer.capacity()); | ||
|
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. this test seems like it is potentially brittle if the allocator expansion algorithm was changed. Is this an intrinsic property of this method? Maybe make this an inequality?
Contributor
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. fixed. |
||
|
|
||
| toVector.setInitialCapacity(numValues); | ||
| toVector.allocateNew(); | ||
| for (int i = 0; i < numValues; i++) { | ||
| int start = fromVector.getstartOffset(i); | ||
| int end = fromVector.getstartOffset(i + 1); | ||
| toVector.setSafe(i, 1, start, end, fromDataBuffer); | ||
|
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. making this a named constant or putting in comments what the value represents might make the test easier to read.
Contributor
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. done |
||
| } | ||
| assertEquals(fromDataBuffer.capacity(), toVector.getDataBuffer().capacity()); | ||
|
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. it might pay to add a comment why the capacity is expected to be equal
Contributor
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. done.
Contributor
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. added. |
||
| } | ||
| } | ||
|
|
||
| @Test | ||
| public void testCopyFromWithNulls() { | ||
| try (final VarCharVector vector = newVector(VarCharVector.class, EMPTY_SCHEMA_PATH, MinorType.VARCHAR, allocator); | ||
|
|
||
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.
maybe add to the title doesntAllocateExcessiveMemory
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.
done