-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[VL] Fix Arrow ColumnarBatch cannnot revoke rowIterator correctly (#…
- Loading branch information
1 parent
a038e93
commit 745f1f3
Showing
3 changed files
with
110 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
gluten-data/src/main/java/org/apache/spark/sql/vectorized/ColumnarBatchUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF 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.apache.spark.sql.vectorized; | ||
|
||
import org.apache.gluten.columnarbatch.ColumnarBatches; | ||
import org.apache.gluten.exception.GlutenException; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
public class ColumnarBatchUtil { | ||
|
||
private static final Field FIELD_COLUMNS; | ||
private static final Field FIELD_COLUMNAR_BATCH_ROW; | ||
|
||
static { | ||
try { | ||
Field f = ColumnarBatch.class.getDeclaredField("columns"); | ||
f.setAccessible(true); | ||
FIELD_COLUMNS = f; | ||
Field row = ColumnarBatch.class.getDeclaredField("row"); | ||
row.setAccessible(true); | ||
FIELD_COLUMNAR_BATCH_ROW = row; | ||
} catch (NoSuchFieldException e) { | ||
throw new GlutenException(e); | ||
} | ||
} | ||
|
||
private static void setColumnarBatchRow( | ||
ColumnarBatch from, ColumnVector[] columns, ColumnarBatch target) { | ||
ColumnarBatchRow newRow = new ColumnarBatchRow(columns); | ||
try { | ||
ColumnarBatchRow row = (ColumnarBatchRow) FIELD_COLUMNAR_BATCH_ROW.get(from); | ||
newRow.rowId = row.rowId; | ||
FIELD_COLUMNAR_BATCH_ROW.set(target, newRow); | ||
} catch (IllegalAccessException e) { | ||
throw new GlutenException(e); | ||
} | ||
} | ||
|
||
public static void transferVectors(ColumnarBatch from, ColumnarBatch target) { | ||
try { | ||
if (target.numCols() != from.numCols()) { | ||
throw new IllegalStateException(); | ||
} | ||
final ColumnVector[] newVectors = new ColumnVector[from.numCols()]; | ||
for (int i = 0; i < target.numCols(); i++) { | ||
newVectors[i] = from.column(i); | ||
} | ||
FIELD_COLUMNS.set(target, newVectors); | ||
// Light batch does not need the row. | ||
if (ColumnarBatches.isHeavyBatch(target)) { | ||
setColumnarBatchRow(from, newVectors, target); | ||
} | ||
} catch (IllegalAccessException e) { | ||
throw new GlutenException(e); | ||
} | ||
} | ||
} |