Class AbstractRecordBatch<T extends PhysicalOperator>
- All Implemented Interfaces:
AutoCloseable,Iterable<VectorWrapper<?>>,CloseableRecordBatch,RecordBatch,VectorAccessible
- Direct Known Subclasses:
AbstractBinaryRecordBatch,AbstractUnaryRecordBatch,ExternalSortBatch,HashAggBatch,MergingRecordBatch,OrderedPartitionRecordBatch,ProducerConsumerBatch,RowKeyJoinBatch,SortBatch,StatisticsWriterRecordBatch,StreamingAggBatch,TopNBatch,WindowFrameRecordBatch,WriterRecordBatch
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.apache.drill.exec.record.RecordBatch
RecordBatch.IterOutcome -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final RecordBatchStats.RecordBatchStatsContextprotected final VectorContainerprotected final FragmentContextprotected final OperatorContextprotected final Tprotected AbstractRecordBatch.BatchStateprotected final OperatorStatsprotected final booleanFields inherited from interface org.apache.drill.exec.record.RecordBatch
MAX_BATCH_ROW_COUNT -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractRecordBatch(T popConfig, FragmentContext context) protectedAbstractRecordBatch(T popConfig, FragmentContext context, boolean buildSchema) protectedAbstractRecordBatch(T popConfig, FragmentContext context, boolean buildSchema, OperatorContext oContext) -
Method Summary
Modifier and TypeMethodDescriptionprotected voidvoidcancel()Informs child operators that no more data is needed.protected abstract voidvoidChecks if the query should continue.voidclose()Return the internal vector containerGets the FragmentContext of the current query fragment.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.abstract RecordBatch.IterOutcomebooleaniterator()final RecordBatch.IterOutcomenext()Updates the data in each Field reading interface for the next range of records.final RecordBatch.IterOutcomenext(int inputIndex, RecordBatch b) final RecordBatch.IterOutcomenext(RecordBatch b) static UserExceptionschemaChangeException(SchemaChangeException e, String operator, org.slf4j.Logger logger) protected UserExceptionschemaChangeException(SchemaChangeException e, org.slf4j.Logger logger) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliteratorMethods inherited from interface org.apache.drill.exec.record.RecordBatch
dumpMethods inherited from interface org.apache.drill.exec.record.VectorAccessible
getRecordCount
-
Field Details
-
container
-
popConfig
-
context
-
oContext
-
batchStatsContext
-
stats
-
unionTypeEnabled
protected final boolean unionTypeEnabled -
state
-
-
Constructor Details
-
AbstractRecordBatch
- Throws:
OutOfMemoryException
-
AbstractRecordBatch
protected AbstractRecordBatch(T popConfig, FragmentContext context, boolean buildSchema) throws OutOfMemoryException - Throws:
OutOfMemoryException
-
AbstractRecordBatch
protected AbstractRecordBatch(T popConfig, FragmentContext context, boolean buildSchema, OperatorContext oContext)
-
-
Method Details
-
iterator
- Specified by:
iteratorin interfaceIterable<T extends PhysicalOperator>
-
getContext
Description copied from interface:RecordBatchGets the FragmentContext of the current query fragment. Useful for reporting failure information or other query-level information.- Specified by:
getContextin interfaceRecordBatch
-
getPopConfig
-
next
-
next
-
next
Description copied from interface:RecordBatchUpdates the data in each Field reading interface for the next range of records.Once a RecordBatch's
next()has returnedRecordBatch.IterOutcome.NONEor, the consumer should no longer callinvalid reference
IterOutcome#STOPnext(). Behavior at this point is undefined and likely to throw an exception.See
RecordBatch.IterOutcomefor the protocol (possible sequences of return values).- Specified by:
nextin interfaceRecordBatch- Returns:
- An IterOutcome describing the result of the iteration.
-
innerNext
-
getSchema
Description copied from interface:RecordBatchGets 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_SCHEMAorRecordBatch.IterOutcome.OK.The schema changes when and only when
RecordBatch.next()returnsRecordBatch.IterOutcome.OK_NEW_SCHEMA.- Specified by:
getSchemain interfaceRecordBatch- Specified by:
getSchemain interfaceVectorAccessible- Returns:
- schema of the current batch
-
buildSchema
protected void buildSchema() -
cancel
public void cancel()Description copied from interface:RecordBatchInforms 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
NONEstatus downstream, or throw an exception. It is not legal to callnext()on an operator after calling itscancel()method.- Specified by:
cancelin interfaceRecordBatch
-
cancelIncoming
protected abstract void cancelIncoming() -
close
public void close()- Specified by:
closein interfaceAutoCloseable
-
getSelectionVector2
- Specified by:
getSelectionVector2in interfaceVectorAccessible
-
getSelectionVector4
- Specified by:
getSelectionVector4in interfaceVectorAccessible
-
getValueVectorId
Description copied from interface:RecordBatchGets 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:
getValueVectorIdin interfaceRecordBatch- Specified by:
getValueVectorIdin 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:
getValueAccessorByIdin interfaceRecordBatch- Specified by:
getValueAccessorByIdin interfaceVectorAccessible
-
getWritableBatch
Description copied from interface:RecordBatchGets a writable version of this batch. Takes over ownership of existing buffers.- Specified by:
getWritableBatchin interfaceRecordBatch
-
getOutgoingContainer
- Specified by:
getOutgoingContainerin interfaceRecordBatch
-
getContainer
Description copied from interface:RecordBatchReturn the internal vector container- Specified by:
getContainerin interfaceRecordBatch- Returns:
- The internal vector container
-
getRecordBatchStatsContext
-
isRecordBatchStatsLoggingEnabled
public boolean isRecordBatchStatsLoggingEnabled() -
checkContinue
public void checkContinue()Checks if the query should continue. Throws a UserException if not. Operators should call this periodically to detect cancellation requests. The operator need not catch the exception: it will bubble up the operator tree and be handled like any other fatal error. -
schemaChangeException
-
schemaChangeException
public static UserException schemaChangeException(SchemaChangeException e, String operator, org.slf4j.Logger logger)
-