-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-27675][SQL] do not use MutableColumnarRow in ColumnarBatch #24581
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,10 @@ | |
|
||
import org.apache.spark.annotation.Evolving; | ||
import org.apache.spark.sql.catalyst.InternalRow; | ||
import org.apache.spark.sql.execution.vectorized.MutableColumnarRow; | ||
import org.apache.spark.sql.catalyst.expressions.GenericInternalRow; | ||
import org.apache.spark.sql.types.*; | ||
import org.apache.spark.unsafe.types.CalendarInterval; | ||
import org.apache.spark.unsafe.types.UTF8String; | ||
|
||
/** | ||
* This class wraps multiple ColumnVectors as a row-wise table. It provides a row view of this | ||
|
@@ -33,7 +36,7 @@ public final class ColumnarBatch { | |
private final ColumnVector[] columns; | ||
|
||
// Staging row returned from `getRow`. | ||
private final MutableColumnarRow row; | ||
private final ColumnarBatchRow row; | ||
|
||
/** | ||
* Called to close all the columns in this batch. It is not valid to access the data after | ||
|
@@ -50,7 +53,7 @@ public void close() { | |
*/ | ||
public Iterator<InternalRow> rowIterator() { | ||
final int maxRows = numRows; | ||
final MutableColumnarRow row = new MutableColumnarRow(columns); | ||
final ColumnarBatchRow row = new ColumnarBatchRow(columns); | ||
return new Iterator<InternalRow>() { | ||
int rowId = 0; | ||
|
||
|
@@ -108,6 +111,170 @@ public InternalRow getRow(int rowId) { | |
|
||
public ColumnarBatch(ColumnVector[] columns) { | ||
this.columns = columns; | ||
this.row = new MutableColumnarRow(columns); | ||
this.row = new ColumnarBatchRow(columns); | ||
} | ||
} | ||
|
||
/** | ||
* An internal class, which wraps an array of {@link ColumnVector} and provides a row view. | ||
*/ | ||
class ColumnarBatchRow extends InternalRow { | ||
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. Make it 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. yes we can add a final. I'll do it when I touch code here next time. |
||
public int rowId; | ||
private final ColumnVector[] columns; | ||
|
||
ColumnarBatchRow(ColumnVector[] columns) { | ||
this.columns = columns; | ||
} | ||
|
||
@Override | ||
public int numFields() { return columns.length; } | ||
|
||
@Override | ||
public InternalRow copy() { | ||
GenericInternalRow row = new GenericInternalRow(columns.length); | ||
for (int i = 0; i < numFields(); i++) { | ||
if (isNullAt(i)) { | ||
row.setNullAt(i); | ||
} else { | ||
DataType dt = columns[i].dataType(); | ||
if (dt instanceof BooleanType) { | ||
row.setBoolean(i, getBoolean(i)); | ||
} else if (dt instanceof ByteType) { | ||
row.setByte(i, getByte(i)); | ||
} else if (dt instanceof ShortType) { | ||
row.setShort(i, getShort(i)); | ||
} else if (dt instanceof IntegerType) { | ||
row.setInt(i, getInt(i)); | ||
} else if (dt instanceof LongType) { | ||
row.setLong(i, getLong(i)); | ||
} else if (dt instanceof FloatType) { | ||
row.setFloat(i, getFloat(i)); | ||
} else if (dt instanceof DoubleType) { | ||
row.setDouble(i, getDouble(i)); | ||
} else if (dt instanceof StringType) { | ||
row.update(i, getUTF8String(i).copy()); | ||
} else if (dt instanceof BinaryType) { | ||
row.update(i, getBinary(i)); | ||
} else if (dt instanceof DecimalType) { | ||
DecimalType t = (DecimalType)dt; | ||
row.setDecimal(i, getDecimal(i, t.precision(), t.scale()), t.precision()); | ||
} else if (dt instanceof DateType) { | ||
row.setInt(i, getInt(i)); | ||
} else if (dt instanceof TimestampType) { | ||
row.setLong(i, getLong(i)); | ||
} else { | ||
throw new RuntimeException("Not implemented. " + dt); | ||
} | ||
} | ||
} | ||
return row; | ||
} | ||
|
||
@Override | ||
public boolean anyNull() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isNullAt(int ordinal) { return columns[ordinal].isNullAt(rowId); } | ||
|
||
@Override | ||
public boolean getBoolean(int ordinal) { return columns[ordinal].getBoolean(rowId); } | ||
|
||
@Override | ||
public byte getByte(int ordinal) { return columns[ordinal].getByte(rowId); } | ||
|
||
@Override | ||
public short getShort(int ordinal) { return columns[ordinal].getShort(rowId); } | ||
|
||
@Override | ||
public int getInt(int ordinal) { return columns[ordinal].getInt(rowId); } | ||
|
||
@Override | ||
public long getLong(int ordinal) { return columns[ordinal].getLong(rowId); } | ||
|
||
@Override | ||
public float getFloat(int ordinal) { return columns[ordinal].getFloat(rowId); } | ||
|
||
@Override | ||
public double getDouble(int ordinal) { return columns[ordinal].getDouble(rowId); } | ||
|
||
@Override | ||
public Decimal getDecimal(int ordinal, int precision, int scale) { | ||
return columns[ordinal].getDecimal(rowId, precision, scale); | ||
} | ||
|
||
@Override | ||
public UTF8String getUTF8String(int ordinal) { | ||
return columns[ordinal].getUTF8String(rowId); | ||
} | ||
|
||
@Override | ||
public byte[] getBinary(int ordinal) { | ||
return columns[ordinal].getBinary(rowId); | ||
} | ||
|
||
@Override | ||
public CalendarInterval getInterval(int ordinal) { | ||
return columns[ordinal].getInterval(rowId); | ||
} | ||
|
||
@Override | ||
public ColumnarRow getStruct(int ordinal, int numFields) { | ||
return columns[ordinal].getStruct(rowId); | ||
} | ||
|
||
@Override | ||
public ColumnarArray getArray(int ordinal) { | ||
return columns[ordinal].getArray(rowId); | ||
} | ||
|
||
@Override | ||
public ColumnarMap getMap(int ordinal) { | ||
return columns[ordinal].getMap(rowId); | ||
} | ||
|
||
@Override | ||
public Object get(int ordinal, DataType dataType) { | ||
if (dataType instanceof BooleanType) { | ||
return getBoolean(ordinal); | ||
} else if (dataType instanceof ByteType) { | ||
return getByte(ordinal); | ||
} else if (dataType instanceof ShortType) { | ||
return getShort(ordinal); | ||
} else if (dataType instanceof IntegerType) { | ||
return getInt(ordinal); | ||
} else if (dataType instanceof LongType) { | ||
return getLong(ordinal); | ||
} else if (dataType instanceof FloatType) { | ||
return getFloat(ordinal); | ||
} else if (dataType instanceof DoubleType) { | ||
return getDouble(ordinal); | ||
} else if (dataType instanceof StringType) { | ||
return getUTF8String(ordinal); | ||
} else if (dataType instanceof BinaryType) { | ||
return getBinary(ordinal); | ||
} else if (dataType instanceof DecimalType) { | ||
DecimalType t = (DecimalType) dataType; | ||
return getDecimal(ordinal, t.precision(), t.scale()); | ||
} else if (dataType instanceof DateType) { | ||
return getInt(ordinal); | ||
} else if (dataType instanceof TimestampType) { | ||
return getLong(ordinal); | ||
} else if (dataType instanceof ArrayType) { | ||
return getArray(ordinal); | ||
} else if (dataType instanceof StructType) { | ||
return getStruct(ordinal, ((StructType)dataType).fields().length); | ||
} else if (dataType instanceof MapType) { | ||
return getMap(ordinal); | ||
} else { | ||
throw new UnsupportedOperationException("Datatype not supported " + dataType); | ||
} | ||
} | ||
|
||
@Override | ||
public void update(int ordinal, Object value) { throw new UnsupportedOperationException(); } | ||
|
||
@Override | ||
public void setNullAt(int ordinal) { throw new UnsupportedOperationException(); } | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Could this extend
ColumnarBatchRow
to avoid duplication?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 thought about it too.
MutableColumnarRow
is used in performance critical path (hash aggregate), and I'm a little hesitant to add class Hierarchy here, which may hurt performance. cc @kiszk