Skip to content

Commit 8bde467

Browse files
jiangxb1987gatorsmile
authored andcommitted
[SPARK-25114][CORE] Fix RecordBinaryComparator when subtraction between two words is divisible by Integer.MAX_VALUE.
#22079 (comment) It is possible for two objects to be unequal and yet we consider them as equal with this code, if the long values are separated by Int.MaxValue. This PR fixes the issue. Add new test cases in `RecordBinaryComparatorSuite`. Closes #22101 from jiangxb1987/fix-rbc. Authored-by: Xingbo Jiang <xingbo.jiang@databricks.com> Signed-off-by: Xiao Li <gatorsmile@gmail.com> (cherry picked from commit 4fb96e5) Signed-off-by: Xiao Li <gatorsmile@gmail.com>
1 parent 9702bb6 commit 8bde467

File tree

2 files changed

+337
-11
lines changed

2 files changed

+337
-11
lines changed

sql/catalyst/src/main/java/org/apache/spark/sql/execution/RecordBinaryComparator.java

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@
2222

2323
public final class RecordBinaryComparator extends RecordComparator {
2424

25-
// TODO(jiangxb) Add test suite for this.
2625
@Override
2726
public int compare(
2827
Object leftObj, long leftOff, int leftLen, Object rightObj, long rightOff, int rightLen) {
2928
int i = 0;
30-
int res = 0;
3129

3230
// If the arrays have different length, the longer one is larger.
3331
if (leftLen != rightLen) {
@@ -40,27 +38,33 @@ public int compare(
4038
// check if stars align and we can get both offsets to be aligned
4139
if ((leftOff % 8) == (rightOff % 8)) {
4240
while ((leftOff + i) % 8 != 0 && i < leftLen) {
43-
res = (Platform.getByte(leftObj, leftOff + i) & 0xff) -
44-
(Platform.getByte(rightObj, rightOff + i) & 0xff);
45-
if (res != 0) return res;
41+
final int v1 = Platform.getByte(leftObj, leftOff + i) & 0xff;
42+
final int v2 = Platform.getByte(rightObj, rightOff + i) & 0xff;
43+
if (v1 != v2) {
44+
return v1 > v2 ? 1 : -1;
45+
}
4646
i += 1;
4747
}
4848
}
4949
// for architectures that support unaligned accesses, chew it up 8 bytes at a time
5050
if (Platform.unaligned() || (((leftOff + i) % 8 == 0) && ((rightOff + i) % 8 == 0))) {
5151
while (i <= leftLen - 8) {
52-
res = (int) ((Platform.getLong(leftObj, leftOff + i) -
53-
Platform.getLong(rightObj, rightOff + i)) % Integer.MAX_VALUE);
54-
if (res != 0) return res;
52+
final long v1 = Platform.getLong(leftObj, leftOff + i);
53+
final long v2 = Platform.getLong(rightObj, rightOff + i);
54+
if (v1 != v2) {
55+
return v1 > v2 ? 1 : -1;
56+
}
5557
i += 8;
5658
}
5759
}
5860
// this will finish off the unaligned comparisons, or do the entire aligned comparison
5961
// whichever is needed.
6062
while (i < leftLen) {
61-
res = (Platform.getByte(leftObj, leftOff + i) & 0xff) -
62-
(Platform.getByte(rightObj, rightOff + i) & 0xff);
63-
if (res != 0) return res;
63+
final int v1 = Platform.getByte(leftObj, leftOff + i) & 0xff;
64+
final int v2 = Platform.getByte(rightObj, rightOff + i) & 0xff;
65+
if (v1 != v2) {
66+
return v1 > v2 ? 1 : -1;
67+
}
6468
i += 1;
6569
}
6670

Lines changed: 322 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,322 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
package test.org.apache.spark.sql.execution.sort;
19+
20+
import org.apache.spark.SparkConf;
21+
import org.apache.spark.memory.TaskMemoryManager;
22+
import org.apache.spark.memory.TestMemoryConsumer;
23+
import org.apache.spark.memory.TestMemoryManager;
24+
import org.apache.spark.sql.catalyst.expressions.UnsafeArrayData;
25+
import org.apache.spark.sql.catalyst.expressions.UnsafeRow;
26+
import org.apache.spark.sql.execution.RecordBinaryComparator;
27+
import org.apache.spark.unsafe.Platform;
28+
import org.apache.spark.unsafe.UnsafeAlignedOffset;
29+
import org.apache.spark.unsafe.array.LongArray;
30+
import org.apache.spark.unsafe.memory.MemoryBlock;
31+
import org.apache.spark.unsafe.types.UTF8String;
32+
import org.apache.spark.util.collection.unsafe.sort.*;
33+
34+
import org.junit.After;
35+
import org.junit.Before;
36+
import org.junit.Test;
37+
38+
/**
39+
* Test the RecordBinaryComparator, which compares two UnsafeRows by their binary form.
40+
*/
41+
public class RecordBinaryComparatorSuite {
42+
43+
private final TaskMemoryManager memoryManager = new TaskMemoryManager(
44+
new TestMemoryManager(new SparkConf().set("spark.memory.offHeap.enabled", "false")), 0);
45+
private final TestMemoryConsumer consumer = new TestMemoryConsumer(memoryManager);
46+
47+
private final int uaoSize = UnsafeAlignedOffset.getUaoSize();
48+
49+
private MemoryBlock dataPage;
50+
private long pageCursor;
51+
52+
private LongArray array;
53+
private int pos;
54+
55+
@Before
56+
public void beforeEach() {
57+
// Only compare between two input rows.
58+
array = consumer.allocateArray(2);
59+
pos = 0;
60+
61+
dataPage = memoryManager.allocatePage(4096, consumer);
62+
pageCursor = dataPage.getBaseOffset();
63+
}
64+
65+
@After
66+
public void afterEach() {
67+
consumer.freePage(dataPage);
68+
dataPage = null;
69+
pageCursor = 0;
70+
71+
consumer.freeArray(array);
72+
array = null;
73+
pos = 0;
74+
}
75+
76+
private void insertRow(UnsafeRow row) {
77+
Object recordBase = row.getBaseObject();
78+
long recordOffset = row.getBaseOffset();
79+
int recordLength = row.getSizeInBytes();
80+
81+
Object baseObject = dataPage.getBaseObject();
82+
assert(pageCursor + recordLength <= dataPage.getBaseOffset() + dataPage.size());
83+
long recordAddress = memoryManager.encodePageNumberAndOffset(dataPage, pageCursor);
84+
UnsafeAlignedOffset.putSize(baseObject, pageCursor, recordLength);
85+
pageCursor += uaoSize;
86+
Platform.copyMemory(recordBase, recordOffset, baseObject, pageCursor, recordLength);
87+
pageCursor += recordLength;
88+
89+
assert(pos < 2);
90+
array.set(pos, recordAddress);
91+
pos++;
92+
}
93+
94+
private int compare(int index1, int index2) {
95+
Object baseObject = dataPage.getBaseObject();
96+
97+
long recordAddress1 = array.get(index1);
98+
long baseOffset1 = memoryManager.getOffsetInPage(recordAddress1) + uaoSize;
99+
int recordLength1 = UnsafeAlignedOffset.getSize(baseObject, baseOffset1 - uaoSize);
100+
101+
long recordAddress2 = array.get(index2);
102+
long baseOffset2 = memoryManager.getOffsetInPage(recordAddress2) + uaoSize;
103+
int recordLength2 = UnsafeAlignedOffset.getSize(baseObject, baseOffset2 - uaoSize);
104+
105+
return binaryComparator.compare(baseObject, baseOffset1, recordLength1, baseObject,
106+
baseOffset2, recordLength2);
107+
}
108+
109+
private final RecordComparator binaryComparator = new RecordBinaryComparator();
110+
111+
// Compute the most compact size for UnsafeRow's backing data.
112+
private int computeSizeInBytes(int originalSize) {
113+
// All the UnsafeRows in this suite contains less than 64 columns, so the bitSetSize shall
114+
// always be 8.
115+
return 8 + (originalSize + 7) / 8 * 8;
116+
}
117+
118+
// Compute the relative offset of variable-length values.
119+
private long relativeOffset(int numFields) {
120+
// All the UnsafeRows in this suite contains less than 64 columns, so the bitSetSize shall
121+
// always be 8.
122+
return 8 + numFields * 8L;
123+
}
124+
125+
@Test
126+
public void testBinaryComparatorForSingleColumnRow() throws Exception {
127+
int numFields = 1;
128+
129+
UnsafeRow row1 = new UnsafeRow(numFields);
130+
byte[] data1 = new byte[100];
131+
row1.pointTo(data1, computeSizeInBytes(numFields * 8));
132+
row1.setInt(0, 11);
133+
134+
UnsafeRow row2 = new UnsafeRow(numFields);
135+
byte[] data2 = new byte[100];
136+
row2.pointTo(data2, computeSizeInBytes(numFields * 8));
137+
row2.setInt(0, 42);
138+
139+
insertRow(row1);
140+
insertRow(row2);
141+
142+
assert(compare(0, 0) == 0);
143+
assert(compare(0, 1) < 0);
144+
}
145+
146+
@Test
147+
public void testBinaryComparatorForMultipleColumnRow() throws Exception {
148+
int numFields = 5;
149+
150+
UnsafeRow row1 = new UnsafeRow(numFields);
151+
byte[] data1 = new byte[100];
152+
row1.pointTo(data1, computeSizeInBytes(numFields * 8));
153+
for (int i = 0; i < numFields; i++) {
154+
row1.setDouble(i, i * 3.14);
155+
}
156+
157+
UnsafeRow row2 = new UnsafeRow(numFields);
158+
byte[] data2 = new byte[100];
159+
row2.pointTo(data2, computeSizeInBytes(numFields * 8));
160+
for (int i = 0; i < numFields; i++) {
161+
row2.setDouble(i, 198.7 / (i + 1));
162+
}
163+
164+
insertRow(row1);
165+
insertRow(row2);
166+
167+
assert(compare(0, 0) == 0);
168+
assert(compare(0, 1) < 0);
169+
}
170+
171+
@Test
172+
public void testBinaryComparatorForArrayColumn() throws Exception {
173+
int numFields = 1;
174+
175+
UnsafeRow row1 = new UnsafeRow(numFields);
176+
byte[] data1 = new byte[100];
177+
UnsafeArrayData arrayData1 = UnsafeArrayData.fromPrimitiveArray(new int[]{11, 42, -1});
178+
row1.pointTo(data1, computeSizeInBytes(numFields * 8 + arrayData1.getSizeInBytes()));
179+
row1.setLong(0, (relativeOffset(numFields) << 32) | (long) arrayData1.getSizeInBytes());
180+
Platform.copyMemory(arrayData1.getBaseObject(), arrayData1.getBaseOffset(), data1,
181+
row1.getBaseOffset() + relativeOffset(numFields), arrayData1.getSizeInBytes());
182+
183+
UnsafeRow row2 = new UnsafeRow(numFields);
184+
byte[] data2 = new byte[100];
185+
UnsafeArrayData arrayData2 = UnsafeArrayData.fromPrimitiveArray(new int[]{22});
186+
row2.pointTo(data2, computeSizeInBytes(numFields * 8 + arrayData2.getSizeInBytes()));
187+
row2.setLong(0, (relativeOffset(numFields) << 32) | (long) arrayData2.getSizeInBytes());
188+
Platform.copyMemory(arrayData2.getBaseObject(), arrayData2.getBaseOffset(), data2,
189+
row2.getBaseOffset() + relativeOffset(numFields), arrayData2.getSizeInBytes());
190+
191+
insertRow(row1);
192+
insertRow(row2);
193+
194+
assert(compare(0, 0) == 0);
195+
assert(compare(0, 1) > 0);
196+
}
197+
198+
@Test
199+
public void testBinaryComparatorForMixedColumns() throws Exception {
200+
int numFields = 4;
201+
202+
UnsafeRow row1 = new UnsafeRow(numFields);
203+
byte[] data1 = new byte[100];
204+
UTF8String str1 = UTF8String.fromString("Milk tea");
205+
row1.pointTo(data1, computeSizeInBytes(numFields * 8 + str1.numBytes()));
206+
row1.setInt(0, 11);
207+
row1.setDouble(1, 3.14);
208+
row1.setInt(2, -1);
209+
row1.setLong(3, (relativeOffset(numFields) << 32) | (long) str1.numBytes());
210+
Platform.copyMemory(str1.getBaseObject(), str1.getBaseOffset(), data1,
211+
row1.getBaseOffset() + relativeOffset(numFields), str1.numBytes());
212+
213+
UnsafeRow row2 = new UnsafeRow(numFields);
214+
byte[] data2 = new byte[100];
215+
UTF8String str2 = UTF8String.fromString("Java");
216+
row2.pointTo(data2, computeSizeInBytes(numFields * 8 + str2.numBytes()));
217+
row2.setInt(0, 11);
218+
row2.setDouble(1, 3.14);
219+
row2.setInt(2, -1);
220+
row2.setLong(3, (relativeOffset(numFields) << 32) | (long) str2.numBytes());
221+
Platform.copyMemory(str2.getBaseObject(), str2.getBaseOffset(), data2,
222+
row2.getBaseOffset() + relativeOffset(numFields), str2.numBytes());
223+
224+
insertRow(row1);
225+
insertRow(row2);
226+
227+
assert(compare(0, 0) == 0);
228+
assert(compare(0, 1) > 0);
229+
}
230+
231+
@Test
232+
public void testBinaryComparatorForNullColumns() throws Exception {
233+
int numFields = 3;
234+
235+
UnsafeRow row1 = new UnsafeRow(numFields);
236+
byte[] data1 = new byte[100];
237+
row1.pointTo(data1, computeSizeInBytes(numFields * 8));
238+
for (int i = 0; i < numFields; i++) {
239+
row1.setNullAt(i);
240+
}
241+
242+
UnsafeRow row2 = new UnsafeRow(numFields);
243+
byte[] data2 = new byte[100];
244+
row2.pointTo(data2, computeSizeInBytes(numFields * 8));
245+
for (int i = 0; i < numFields - 1; i++) {
246+
row2.setNullAt(i);
247+
}
248+
row2.setDouble(numFields - 1, 3.14);
249+
250+
insertRow(row1);
251+
insertRow(row2);
252+
253+
assert(compare(0, 0) == 0);
254+
assert(compare(0, 1) > 0);
255+
}
256+
257+
@Test
258+
public void testBinaryComparatorWhenSubtractionIsDivisibleByMaxIntValue() throws Exception {
259+
int numFields = 1;
260+
261+
UnsafeRow row1 = new UnsafeRow(numFields);
262+
byte[] data1 = new byte[100];
263+
row1.pointTo(data1, computeSizeInBytes(numFields * 8));
264+
row1.setLong(0, 11);
265+
266+
UnsafeRow row2 = new UnsafeRow(numFields);
267+
byte[] data2 = new byte[100];
268+
row2.pointTo(data2, computeSizeInBytes(numFields * 8));
269+
row2.setLong(0, 11L + Integer.MAX_VALUE);
270+
271+
insertRow(row1);
272+
insertRow(row2);
273+
274+
assert(compare(0, 1) < 0);
275+
}
276+
277+
@Test
278+
public void testBinaryComparatorWhenSubtractionCanOverflowLongValue() throws Exception {
279+
int numFields = 1;
280+
281+
UnsafeRow row1 = new UnsafeRow(numFields);
282+
byte[] data1 = new byte[100];
283+
row1.pointTo(data1, computeSizeInBytes(numFields * 8));
284+
row1.setLong(0, Long.MIN_VALUE);
285+
286+
UnsafeRow row2 = new UnsafeRow(numFields);
287+
byte[] data2 = new byte[100];
288+
row2.pointTo(data2, computeSizeInBytes(numFields * 8));
289+
row2.setLong(0, 1);
290+
291+
insertRow(row1);
292+
insertRow(row2);
293+
294+
assert(compare(0, 1) < 0);
295+
}
296+
297+
@Test
298+
public void testBinaryComparatorWhenOnlyTheLastColumnDiffers() throws Exception {
299+
int numFields = 4;
300+
301+
UnsafeRow row1 = new UnsafeRow(numFields);
302+
byte[] data1 = new byte[100];
303+
row1.pointTo(data1, computeSizeInBytes(numFields * 8));
304+
row1.setInt(0, 11);
305+
row1.setDouble(1, 3.14);
306+
row1.setInt(2, -1);
307+
row1.setLong(3, 0);
308+
309+
UnsafeRow row2 = new UnsafeRow(numFields);
310+
byte[] data2 = new byte[100];
311+
row2.pointTo(data2, computeSizeInBytes(numFields * 8));
312+
row2.setInt(0, 11);
313+
row2.setDouble(1, 3.14);
314+
row2.setInt(2, -1);
315+
row2.setLong(3, 1);
316+
317+
insertRow(row1);
318+
insertRow(row2);
319+
320+
assert(compare(0, 1) < 0);
321+
}
322+
}

0 commit comments

Comments
 (0)