Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use DistCp to copy only files that match a certain pattern? For example. For /foo I only want *.log files.

share|improve this question

1 Answer

DistCp is in fact just a regular map-reduce job: you can use the same globbing syntax as you would use for input of a regular map-reduce job. Generally, you can just use foo/*.log and that should suffice. You can experiment with hadoop fs -ls statement here - if globbing works with fs -ls, then if will work with DistCp (well, almost, but differences are fairly subtle to mention).

share|improve this answer
Doesn't seem to be working with s3n:// paths. Hadoop -ls works with s3n:// wildcards, though.. weird. – Ivan Balashov Mar 18 at 15:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.