Package org.apache.druid.data.input
Interface InputSourceFactory
-
- All Known Implementing Classes:
LocalInputSourceFactory
public interface InputSourceFactoryAn interface to generate aSplittableInputSourceobjects on the fly. For composing input sources such as IcebergInputSource, the delegate input source instantiation might fail upon deserialization since the input file paths are not available yet and this might fail the input source precondition checks. This factory helps create the delegate input source once the input file paths are fully determined.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SplittableInputSourcecreate(List<String> inputFilePaths)
-
-
-
Method Detail
-
create
SplittableInputSource create(List<String> inputFilePaths)
-
-