diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 00242f974b0..2d1375f791b 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -178,6 +178,8 @@ Release 2.6.0 - UNRELEASED HADOOP-9540. Expose the InMemoryS3 and S3N FilesystemStores implementations for Unit testing. (Steve Lougran) + HADOOP-10373 create tools/hadoop-amazon for aws/EMR support (stevel) + OPTIMIZATIONS HADOOP-10838. Byte array native checksumming. (James Thomas via todd) diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index 33cdff569ee..0c1f50d6b47 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -595,6 +595,11 @@ jets3t 0.9.0 + + com.amazonaws + aws-java-sdk + 1.7.2 + org.apache.mina mina-core diff --git a/hadoop-tools/hadoop-aws/dev-support/findbugs-exclude.xml b/hadoop-tools/hadoop-aws/dev-support/findbugs-exclude.xml new file mode 100644 index 00000000000..74e4923bf74 --- /dev/null +++ b/hadoop-tools/hadoop-aws/dev-support/findbugs-exclude.xml @@ -0,0 +1,19 @@ + + + + diff --git a/hadoop-tools/hadoop-aws/pom.xml b/hadoop-tools/hadoop-aws/pom.xml new file mode 100644 index 00000000000..8d819d3dacc --- /dev/null +++ b/hadoop-tools/hadoop-aws/pom.xml @@ -0,0 +1,116 @@ + + + + 4.0.0 + + org.apache.hadoop + hadoop-project + 2.6.0-SNAPSHOT + ../../hadoop-project + + hadoop-aws + 2.6.0-SNAPSHOT + Apache Hadoop Amazon Web Services support + + This module contains code to support integration with Amazon Web Services. + It also declares the dependencies needed to work with AWS services. + + jar + + + UTF-8 + true + + + + + tests-off + + + src/test/resources/auth-keys.xml + + + + true + + + + tests-on + + + src/test/resources/auth-keys.xml + + + + false + + + + + + + + + org.codehaus.mojo + findbugs-maven-plugin + + true + true + ${basedir}/dev-support/findbugs-exclude.xml + + Max + + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + false + false + + + + + + + + org.apache.hadoop + hadoop-common + compile + + + + org.apache.hadoop + hadoop-common + compile + test-jar + + + + com.amazonaws + aws-java-sdk + compile + + + + junit + junit + test + + + + diff --git a/hadoop-tools/pom.xml b/hadoop-tools/pom.xml index 03770b08019..b3f932a1169 100644 --- a/hadoop-tools/pom.xml +++ b/hadoop-tools/pom.xml @@ -42,6 +42,7 @@ hadoop-pipes hadoop-openstack hadoop-sls + hadoop-aws