How can I acces data from an hdfs in parquet format
Show older comments
We have a large dataset stored in parquet files on an hadoop file system and would like to use a matlab datastore to analyse them. Unfortunately I couldn't find any reports, that anybody has done this yet.
Does mathworks provide a native way to access parquet data? Perhaps one can use the fileDatastore or a matlab custom datastore? Is there a template for that?
Accepted Answer
More Answers (2)
Hatem Helal
on 10 Apr 2019
1 vote
MATLAB R2019a adds support for reading and writing Apache Parquet files (doc). Here are the relevant release notes:
1. Import and export column-oriented data from Parquet files in MATLAB. Parquet is a columnar storage format that supports efficient compression and encoding schemes. To work with the Parquet file format, use these functions.
- parquetread — Read columnar data from a Parquet file.
- parquetwrite — Write columnar data to a Parquet file.
- parquetinfo — Get information about a Parquet file.
2. The write function now supports writing tall arrays to Parquet files. To write a tall array, set the FileType parameter to 'parquet', for example:
write('C:\myData',tX,'FileType','parquet')
Hitesh Kumar Dasika
on 24 Sep 2018
0 votes
Currently, there is no support to Apache Arrow and Parquet files in MATLAB.
3 Comments
André Horn
on 24 Sep 2018
Edited: André Horn
on 24 Sep 2018
Hitesh Kumar Dasika
on 24 Sep 2018
Thank you for your feedback. We have raised this concern with our developers and they are actively looking at including this feature in our future releases. Unfortunately, there is no workaround in this case for now. Sorry for the trouble.
Hatem Helal
on 10 Apr 2019
R2019a adds support for working with parquet files, see this answer and let us know if you have any further feedback.
Categories
Find more on Data Import and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!