Describe the enhancement requested
Currently, only uri is allowed as interface if we wish to read any file format
public FileSystemDatasetFactory(BufferAllocator allocator, NativeMemoryPool memoryPool, FileFormat format, String uri) {
super(allocator, memoryPool, createNative(format, uri));
}
I have a usecase where in I would want to pass an inputstream and based on it I wished to read and convert to the target fileformat.
Could someone from the community help me with this requirement, as this would help me go away from ParquetReader library or even AvroReader library and use Arrow instead
Component(s)
Java