0

Trying to use s3DistCp to copy from s3://my-bucket/dir1/ , s3://my-bucket/dir2, s3://my-bucket/dir3.

And all three DIRs has some files in them. Wanted to do something like:

hadoop jar s3distcp.jar --src s3://my-bucket/*/ --dest s3://my-bucket/some-other-dir/

But it generate an error saying that:

's3://my-bucket/*/' directory not found...

So does it mean s3DistCp doesn't take wildcards in paths? Is there any work around or any ideas?

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
yunt
  • 1
  • 1

1 Answers1

0

Have you tried with s3n? Difference between Amazon S3 and S3n in Hadoop

Community
  • 1
  • 1
samthebest
  • 30,803
  • 25
  • 102
  • 142
  • No... I removed the trailing '/' but it is still generating "no such file or directory" error. – yunt Aug 04 '14 at 16:22