Uses of Interface
org.apache.druid.data.input.InputEntityReader
Packages that use InputEntityReader
Package
Description
-
Uses of InputEntityReader in org.apache.druid.data.input
Classes in org.apache.druid.data.input that implement InputEntityReaderModifier and TypeClassDescriptionclassInputEntityReaderthat parses bytes into some intermediate rows first, and then intoInputRows.classTextReader<T>AbstractInputEntityReaderfor text format readers such as CSV or JSON.static classstatic classMethods in org.apache.druid.data.input that return InputEntityReaderModifier and TypeMethodDescriptionInputFormat.createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory) -
Uses of InputEntityReader in org.apache.druid.data.input.impl
Classes in org.apache.druid.data.input.impl that implement InputEntityReaderModifier and TypeClassDescriptionclassDelimitedValueReader is the reader for Delimitor Separate Value format input data(CSV/TSV).classJsonLineReaderreads input text line by line and tries to convert each text line to an JSON object.classIn contrast toJsonLineReaderwhich processes input text line by line independently, this class tries to split the input into a list of JsonNode objects, and then parses each JsonNode independently into an InputRow.classIn contrast toJsonLineReaderwhich processes input text line by line independently, this class tries to parse the input text as a whole to an array of objects.classReader forLinesInputFormat.classMethods in org.apache.druid.data.input.impl that return InputEntityReaderModifier and TypeMethodDescriptionCsvInputFormat.createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory) DelimitedInputFormat.createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory) JsonInputFormat.createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory) LinesInputFormat.createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory) RegexInputFormat.createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory) -
Uses of InputEntityReader in org.apache.druid.segment.transform
Classes in org.apache.druid.segment.transform that implement InputEntityReaderConstructors in org.apache.druid.segment.transform with parameters of type InputEntityReaderModifierConstructorDescriptionTransformingInputEntityReader(InputEntityReader delegate, Transformer transformer)