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?