JuliaIO / Parquet.jl

Julia implementation of Parquet columnar file format reader
Other
116 stars 32 forks source link

Enable read Dataset from any interface implementing file methods #150

Open altre opened 3 years ago

altre commented 3 years ago

Currently this fails when trying to read from HDFS using Elly with "No such file or directory":

using Elly
using Parquet
dfs = HDFSClient()
path = "/tmp/dataset/"
read_parquet(HDFSFile(dfs, path))

The (first) problem seems to be that Dataset converts any "path" argument to string.

calebwin commented 3 years ago

Related issue: https://github.com/JuliaIO/Parquet.jl/issues/145