Package org.apache.druid.data.input
Interface InputRow
- All Superinterfaces:
Comparable<Row>,Row
- All Known Implementing Classes:
ListBasedInputRow,MapBasedInputRow,TransformedInputRow
An InputRow is the interface definition of an event being input into the data ingestion layer.
An InputRow is a Row with a self-describing list of the dimensions available. This list is used to
implement "schema-less" data ingestion that allows the system to add new dimensions as they appear.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the dimensions that exist in this row.Methods inherited from interface java.lang.Comparable
compareToMethods inherited from interface org.apache.druid.data.input.Row
getDimension, getMetric, getRaw, getTimestamp, getTimestampFromEpoch
-
Method Details
-
getDimensions
Returns the dimensions that exist in this row.- Returns:
- the dimensions that exist in this row.
-