Uses of Interface
org.apache.druid.data.input.InputEntityReader
-
Packages that use InputEntityReader Package Description org.apache.druid.data.input org.apache.druid.data.input.impl org.apache.druid.segment.transform -
-
Uses of InputEntityReader in org.apache.druid.data.input
Classes in org.apache.druid.data.input that implement InputEntityReader Modifier and Type Class Description classIntermediateRowParsingReader<T>InputEntityReaderthat parses bytes into some intermediate rows first, and then intoInputRows.classTextReader<T>AbstractInputEntityReaderfor text format readers such as CSV or JSON.static classTextReader.Bytesstatic classTextReader.StringsMethods in org.apache.druid.data.input that return InputEntityReader Modifier and Type Method Description InputEntityReaderInputFormat. 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 InputEntityReader Modifier and Type Class Description classDelimitedValueReaderDelimitedValueReader is the reader for Delimitor Separate Value format input data(CSV/TSV).classJsonLineReaderJsonLineReaderreads input text line by line and tries to convert each text line to an JSON object.classJsonNodeReaderIn 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.classJsonReaderIn 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.classRegexReaderMethods in org.apache.druid.data.input.impl that return InputEntityReader Modifier and Type Method Description InputEntityReaderCsvInputFormat. createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory)InputEntityReaderDelimitedInputFormat. createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory)InputEntityReaderJsonInputFormat. createReader(InputRowSchema inputRowSchema, InputEntity source, File temporaryDirectory)InputEntityReaderRegexInputFormat. 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 InputEntityReader Modifier and Type Class Description classTransformingInputEntityReaderConstructors in org.apache.druid.segment.transform with parameters of type InputEntityReader Constructor Description TransformingInputEntityReader(InputEntityReader delegate, Transformer transformer)
-