webhdfs
webhdfs copied to clipboard
Glob support?
Hi
Currently issuing something like client.get("/foo/*/bar") always results in {"RemoteException":{"exception":"FileNotFoundException"...}}
Compared to the CLI "hdfs dfs -ls '/foo/*/bar'" which lists the matches as expected.
Do you know whether the webhdfs API has any support for globbing or it's done purely client-side ? If so, any chance it could be added to ruby-webhdfs ?
As far as I know, file globs are not supported on webhdfs APIs.And client side globing needs high runtime cost and latency.
From the same viewpoint of hdfs dfs
commands, we may be able to support globs on WebHDFS::FileUtils methods.(Patches welcome!)