Class SimpleRecordBatch
- All Implemented Interfaces:
Iterable<VectorWrapper<?>>
,RecordBatch
,VectorAccessible
- Direct Known Subclasses:
TopNBatch.SimpleSV4RecordBatch
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.drill.exec.record.RecordBatch
RecordBatch.IterOutcome
-
Field Summary
Fields inherited from interface org.apache.drill.exec.record.RecordBatch
MAX_BATCH_ROW_COUNT
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cancel()
Informs child operators that no more data is needed.void
dump()
Perform dump of this batch's state to logs.Return the internal vector containerGets the FragmentContext of the current query fragment.int
Get the number of records.Gets the current schema of this record batch.getValueAccessorById
(Class<?> clazz, int... ids) getValueVectorId
(SchemaPath path) Gets the value vector type and ID for the given schema path.Gets a writable version of this batch.iterator()
next()
Updates the data in each Field reading interface for the next range of records.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
SimpleRecordBatch
-
-
Method Details
-
getContext
Description copied from interface:RecordBatch
Gets the FragmentContext of the current query fragment. Useful for reporting failure information or other query-level information.- Specified by:
getContext
in interfaceRecordBatch
-
getSchema
Description copied from interface:RecordBatch
Gets the current schema of this record batch.May be called only when the most recent call to
RecordBatch.next()
, if any, returnedRecordBatch.IterOutcome.OK_NEW_SCHEMA
orRecordBatch.IterOutcome.OK
.The schema changes when and only when
RecordBatch.next()
returnsRecordBatch.IterOutcome.OK_NEW_SCHEMA
.- Specified by:
getSchema
in interfaceRecordBatch
- Specified by:
getSchema
in interfaceVectorAccessible
- Returns:
- schema of the current batch
-
getRecordCount
public int getRecordCount()Description copied from interface:VectorAccessible
Get the number of records.- Specified by:
getRecordCount
in interfaceVectorAccessible
- Returns:
- number of records
-
cancel
public void cancel()Description copied from interface:RecordBatch
Informs child operators that no more data is needed. Only called for "normal" cancellation to avoid unnecessary compute in any worker threads. For the error case, the fragment executor will call close() on each child automatically.The operator which triggers the cancel MUST send a
NONE
status downstream, or throw an exception. It is not legal to callnext()
on an operator after calling itscancel()
method.- Specified by:
cancel
in interfaceRecordBatch
-
getSelectionVector2
- Specified by:
getSelectionVector2
in interfaceVectorAccessible
-
getSelectionVector4
- Specified by:
getSelectionVector4
in interfaceVectorAccessible
-
getValueVectorId
Description copied from interface:RecordBatch
Gets the value vector type and ID for the given schema path. The TypedFieldId should store a fieldId which is the same as the ordinal position of the field within the Iterator provided this class's implementation ofIterable<ValueVector>
.- Specified by:
getValueVectorId
in interfaceRecordBatch
- Specified by:
getValueVectorId
in interfaceVectorAccessible
- Parameters:
path
- The path where the vector should be located.- Returns:
- The local field id associated with this vector. If no field matches this path, this will return a null TypedFieldId
-
getValueAccessorById
- Specified by:
getValueAccessorById
in interfaceRecordBatch
- Specified by:
getValueAccessorById
in interfaceVectorAccessible
-
next
Description copied from interface:RecordBatch
Updates the data in each Field reading interface for the next range of records.Once a RecordBatch's
next()
has returnedRecordBatch.IterOutcome.NONE
orIterOutcome#STOP
, the consumer should no longer callnext()
. Behavior at this point is undefined and likely to throw an exception.See
RecordBatch.IterOutcome
for the protocol (possible sequences of return values).- Specified by:
next
in interfaceRecordBatch
- Returns:
- An IterOutcome describing the result of the iteration.
-
getWritableBatch
Description copied from interface:RecordBatch
Gets a writable version of this batch. Takes over ownership of existing buffers.- Specified by:
getWritableBatch
in interfaceRecordBatch
-
iterator
- Specified by:
iterator
in interfaceIterable<VectorWrapper<?>>
-
getOutgoingContainer
- Specified by:
getOutgoingContainer
in interfaceRecordBatch
-
getContainer
Description copied from interface:RecordBatch
Return the internal vector container- Specified by:
getContainer
in interfaceRecordBatch
- Returns:
- The internal vector container
-
dump
public void dump()Description copied from interface:RecordBatch
Perform dump of this batch's state to logs.- Specified by:
dump
in interfaceRecordBatch
-