sotona has asked for the wisdom of the Perl Monks concerning the following question:

Hi Monks,

Does anyone know any ready to use Perl module to traverse Apache HDFS like usual file system?

Thank you.
Sapienti sat.

Replies are listed 'Best First'.
Re: list HDFS with Perl
by stevieb (Canon) on Nov 19, 2015 at 20:09 UTC
      does not actually provide an interface like 'ls -la' or any ability to traverse the whole directory to any given depth with all leaves.
      in a nutshell you have to deal with lots of redundant information which can be memory expensive if you have tens of millions of files in millions of arbitrarily nested directories.
      Sapienti sat.