Package org.apache.druid.segment.vector
Class QueryableIndexVectorColumnSelectorFactory
java.lang.Object
org.apache.druid.segment.vector.QueryableIndexVectorColumnSelectorFactory
- All Implemented Interfaces:
Expr.InputBindingInspector,ColumnInspector,VectorColumnSelectorFactory
public class QueryableIndexVectorColumnSelectorFactory
extends Object
implements VectorColumnSelectorFactory
-
Constructor Summary
ConstructorsConstructorDescriptionQueryableIndexVectorColumnSelectorFactory(ReadableVectorOffset offset, ColumnSelector columnSelector, VirtualColumns virtualColumns) -
Method Summary
Modifier and TypeMethodDescriptiongetColumnCapabilities(String columnName) Returns capabilities of a particular column, or null if the column doesn't exist.Returns aReadableVectorInspectorfor theVectorCursorthat generated this object.makeGroupByVectorColumnSelector(String column, DeferExpressionDimensions deferExpressionDimensions) Returns a group-by selector.makeMultiValueDimensionSelector(DimensionSpec dimensionSpec) Returns a dictionary encoded, string-typed, multi-value-per-row column selector.makeObjectSelector(String columnName) Returns an object selector.makeSingleValueDimensionSelector(DimensionSpec dimensionSpec) Returns a dictionary encoded, string-typed, single-value-per-row column selector.makeValueSelector(String columnName) Returns a primitive column selector.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.druid.segment.ColumnInspector
getTypeMethods inherited from interface org.apache.druid.math.expr.Expr.InputBindingInspector
areNumeric, areNumeric, areSameTypes, areSameTypes, areScalar, areScalar, canVectorize, canVectorizeMethods inherited from interface org.apache.druid.segment.vector.VectorColumnSelectorFactory
getMaxVectorSize
-
Constructor Details
-
QueryableIndexVectorColumnSelectorFactory
public QueryableIndexVectorColumnSelectorFactory(ReadableVectorOffset offset, ColumnSelector columnSelector, VirtualColumns virtualColumns)
-
-
Method Details
-
getReadableVectorInspector
Description copied from interface:VectorColumnSelectorFactoryReturns aReadableVectorInspectorfor theVectorCursorthat generated this object.- Specified by:
getReadableVectorInspectorin interfaceVectorColumnSelectorFactory
-
makeMultiValueDimensionSelector
public MultiValueDimensionVectorSelector makeMultiValueDimensionSelector(DimensionSpec dimensionSpec) Description copied from interface:VectorColumnSelectorFactoryReturns a dictionary encoded, string-typed, multi-value-per-row column selector. Should only be called on columns whereVectorColumnSelectorFactory.getColumnCapabilities(java.lang.String)indicates they return STRING. UnlikeVectorColumnSelectorFactory.makeSingleValueDimensionSelector(org.apache.druid.query.dimension.DimensionSpec), this should not be called on nonexistent columns. If you need to write code that adapts to different input types, you should write aVectorColumnProcessorFactoryand use one of theColumnProcessors.makeVectorProcessor(java.lang.String, org.apache.druid.segment.VectorColumnProcessorFactory<T>, org.apache.druid.segment.vector.VectorColumnSelectorFactory)functions instead of using this method.- Specified by:
makeMultiValueDimensionSelectorin interfaceVectorColumnSelectorFactory
-
makeSingleValueDimensionSelector
public SingleValueDimensionVectorSelector makeSingleValueDimensionSelector(DimensionSpec dimensionSpec) Description copied from interface:VectorColumnSelectorFactoryReturns a dictionary encoded, string-typed, single-value-per-row column selector. Should only be called on columns whereVectorColumnSelectorFactory.getColumnCapabilities(java.lang.String)indicates they return STRING, or on nonexistent columns. Since the selector created with this method operates directly on the dictionary encoded input, STRING values must be translated from the dictionary id for a given row value usingDimensionDictionarySelector.lookupName(int), but this selector can prove optimal for operations which can be done directly on the underlying dictionary ids, such as grouping within a segment. If you need to write code that adapts to different input types, you should write aVectorColumnProcessorFactoryand use one of theColumnProcessors.makeVectorProcessor(java.lang.String, org.apache.druid.segment.VectorColumnProcessorFactory<T>, org.apache.druid.segment.vector.VectorColumnSelectorFactory)functions instead of using this method.- Specified by:
makeSingleValueDimensionSelectorin interfaceVectorColumnSelectorFactory
-
makeValueSelector
Description copied from interface:VectorColumnSelectorFactoryReturns a primitive column selector. Should only be called on columns whereVectorColumnSelectorFactory.getColumnCapabilities(java.lang.String)indicates they return DOUBLE, FLOAT, or LONG, or on nonexistent columns. If you need to write code that adapts to different input types, you should write aVectorColumnProcessorFactoryand use one of theColumnProcessors.makeVectorProcessor(java.lang.String, org.apache.druid.segment.VectorColumnProcessorFactory<T>, org.apache.druid.segment.vector.VectorColumnSelectorFactory)functions instead of using this method.- Specified by:
makeValueSelectorin interfaceVectorColumnSelectorFactory
-
makeObjectSelector
Description copied from interface:VectorColumnSelectorFactoryReturns an object selector. Should only be called on columns whereVectorColumnSelectorFactory.getColumnCapabilities(java.lang.String)indicates that they return STRING, ARRAY, or COMPLEX, or on nonexistent columns. For STRING, this is needed if values are not dictionary encoded, such as computed virtual columns, or can optionally be used in place ofSingleValueDimensionVectorSelectorwhen using the dictionary isn't helpful. Currently, this should only be called on single valued STRING inputs (multi-value STRING vector object selector is not yet implemented). If you need to write code that adapts to different input types, you should write aVectorColumnProcessorFactoryand use one of theColumnProcessors.makeVectorProcessor(java.lang.String, org.apache.druid.segment.VectorColumnProcessorFactory<T>, org.apache.druid.segment.vector.VectorColumnSelectorFactory)functions instead of using this method.- Specified by:
makeObjectSelectorin interfaceVectorColumnSelectorFactory
-
makeGroupByVectorColumnSelector
public GroupByVectorColumnSelector makeGroupByVectorColumnSelector(String column, DeferExpressionDimensions deferExpressionDimensions) Description copied from interface:VectorColumnSelectorFactoryReturns a group-by selector. Allows columns to control their own grouping behavior.- Specified by:
makeGroupByVectorColumnSelectorin interfaceVectorColumnSelectorFactory- Parameters:
column- column namedeferExpressionDimensions- active value ofGroupByQueryConfig.CTX_KEY_DEFER_EXPRESSION_DIMENSIONS
-
getColumnCapabilities
Description copied from interface:VectorColumnSelectorFactoryReturns capabilities of a particular column, or null if the column doesn't exist. Unlike ColumnSelectorFactory, null does not potentially indicate a dynamically discovered column.- Specified by:
getColumnCapabilitiesin interfaceColumnInspector- Specified by:
getColumnCapabilitiesin interfaceVectorColumnSelectorFactory- Parameters:
columnName- column name- Returns:
- capabilities, or null if the column doesn't exist.
-