-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support more file format #310
Comments
the customized ParquetExec is designed for reading data directly from HDFS via JNI (we don't use object-store or libhdfs because they are too hard to be used in production environemnt). |
yeah, I see. but it is hard to extend data source now, it doesn't have extend interface to support that. we can easy to extend datasource if we use datafusion reader something like deltalake, avro, etc |
it should be hard. different formats have lots of specialized logics of reading data, like pruning, data type converting, delimiting, and so on. i don't have any idea to design an input format interface yet. |
related to #498 |
Is your feature request related to a problem? Please describe.
Blaze only support parquet file format so far, and it is cusotmerize, but in fact datafusion have implement parquet source
Describe the solution you'd like
Can we use datafusion reader interface? I think it more easier to extend, btw datafusion have provided multiple reader so far
The text was updated successfully, but these errors were encountered: