├── hadoop-common-project ├── hadoop-common │ ├── src │ │ ├── test │ │ │ ├── empty-file │ │ │ ├── all-tests │ │ │ ├── resources │ │ │ │ ├── kdc │ │ │ │ │ ├── keytabs │ │ │ │ │ │ ├── dn1.keytab │ │ │ │ │ │ ├── nn1.keytab │ │ │ │ │ │ └── user1.keytab │ │ │ │ │ └── killKdc.sh │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── org.apache.hadoop.security.token.TokenIdentifier │ │ │ │ ├── webapps │ │ │ │ │ ├── test │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── testjsp.jsp │ │ │ │ │ └── static │ │ │ │ │ │ └── test.css │ │ │ │ └── log4j.properties │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── hadoop │ │ │ │ │ ├── fs │ │ │ │ │ ├── test-untar.tar │ │ │ │ │ └── test-untar.tgz │ │ │ │ │ ├── conf │ │ │ │ │ └── empty-configuration.xml │ │ │ │ │ └── cli │ │ │ │ │ └── util │ │ │ │ │ ├── CLICommandFS.java │ │ │ │ │ └── CLICommandTypes.java │ │ │ └── avro │ │ │ │ └── avroRecord.avsc │ │ ├── main │ │ │ ├── native │ │ │ │ ├── AUTHORS │ │ │ │ ├── ChangeLog │ │ │ │ ├── NEWS │ │ │ │ └── README │ │ │ ├── docs │ │ │ │ └── src │ │ │ │ │ └── documentation │ │ │ │ │ ├── resources │ │ │ │ │ └── images │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── core-logo.gif │ │ │ │ │ │ ├── architecture.gif │ │ │ │ │ │ ├── common-logo.jpg │ │ │ │ │ │ ├── hadoop-logo.jpg │ │ │ │ │ │ ├── hdfsdatanodes.gif │ │ │ │ │ │ ├── hdfsdatanodes.odg │ │ │ │ │ │ ├── hdfsdatanodes.png │ │ │ │ │ │ ├── hadoop-logo-big.jpg │ │ │ │ │ │ ├── hdfsarchitecture.gif │ │ │ │ │ │ ├── hdfsarchitecture.odg │ │ │ │ │ │ └── hdfsarchitecture.png │ │ │ │ │ └── README.txt │ │ │ ├── resources │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ ├── org.apache.hadoop.security.SecurityInfo │ │ │ │ │ └── org.apache.hadoop.io.compress.CompressionCodec │ │ │ ├── conf │ │ │ │ └── core-site.xml │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── hadoop │ │ │ │ ├── util │ │ │ │ └── package.html │ │ │ │ ├── net │ │ │ │ └── package.html │ │ │ │ ├── fs │ │ │ │ └── package.html │ │ │ │ ├── conf │ │ │ │ └── package.html │ │ │ │ ├── ipc │ │ │ │ └── package.html │ │ │ │ ├── tools │ │ │ │ └── package-info.java │ │ │ │ ├── io │ │ │ │ └── package.html │ │ │ │ └── jmx │ │ │ │ └── package-info.java │ │ ├── contrib │ │ │ └── bash-tab-completion │ │ │ │ └── README │ │ └── site │ │ │ ├── site.xml │ │ │ └── resources │ │ │ └── css │ │ │ └── site.css │ └── NOTICE.txt ├── hadoop-auth │ ├── README.txt │ ├── BUILDING.txt │ └── src │ │ └── site │ │ ├── site.xml │ │ └── resources │ │ └── css │ │ └── site.css └── hadoop-auth-examples │ └── src │ └── main │ ├── webapp │ ├── index.html │ ├── simple │ │ └── index.html │ ├── kerberos │ │ └── index.html │ └── annonymous │ │ └── index.html │ └── resources │ └── log4j.properties ├── hadoop-yarn-project ├── hadoop-yarn │ ├── conf │ │ ├── slaves │ │ ├── container-executor.cfg │ │ └── yarn-site.xml │ ├── hadoop-yarn-common │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── webapps │ │ │ │ │ ├── node │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── test │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── yarn │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── cluster │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── mapreduce │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── proxy │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── jobhistory │ │ │ │ │ │ └── .keep │ │ │ │ │ └── static │ │ │ │ │ │ ├── busy.gif │ │ │ │ │ │ ├── hadoop-st.png │ │ │ │ │ │ ├── jt │ │ │ │ │ │ └── jquery.jstree.js.gz │ │ │ │ │ │ ├── dt-1.9.4 │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ │ │ ├── back_disabled.jpg │ │ │ │ │ │ │ ├── back_enabled.jpg │ │ │ │ │ │ │ ├── forward_disabled.jpg │ │ │ │ │ │ │ ├── forward_enabled.jpg │ │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── jquery.dataTables.min.js.gz │ │ │ │ │ │ └── jquery │ │ │ │ │ │ ├── jquery-1.8.2.min.js.gz │ │ │ │ │ │ ├── jquery-ui-1.9.1.custom.min.js.gz │ │ │ │ │ │ └── themes-1.9.1 │ │ │ │ │ │ └── base │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ ├── org.apache.hadoop.security.token.TokenRenewer │ │ │ │ │ ├── org.apache.hadoop.security.SecurityInfo │ │ │ │ │ └── org.apache.hadoop.security.token.TokenIdentifier │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── hadoop │ │ │ │ └── yarn │ │ │ │ ├── Clock.java │ │ │ │ ├── conf │ │ │ │ └── package-info.java │ │ │ │ ├── event │ │ │ │ └── package-info.java │ │ │ │ ├── ipc │ │ │ │ └── package-info.java │ │ │ │ ├── state │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ └── package-info.java │ │ │ │ ├── factories │ │ │ │ ├── package-info.java │ │ │ │ └── impl │ │ │ │ │ └── pb │ │ │ │ │ └── package-info.java │ │ │ │ ├── security │ │ │ │ ├── package-info.java │ │ │ │ └── client │ │ │ │ │ └── package-info.java │ │ │ │ ├── SystemClock.java │ │ │ │ ├── api │ │ │ │ └── impl │ │ │ │ │ └── pb │ │ │ │ │ ├── client │ │ │ │ │ └── package-info.java │ │ │ │ │ └── service │ │ │ │ │ └── package-info.java │ │ │ │ └── factory │ │ │ │ └── providers │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── resources │ │ │ └── log4j.properties │ ├── hadoop-yarn-site │ │ └── src │ │ │ └── site │ │ │ ├── resources │ │ │ ├── federation.gif │ │ │ ├── yarn_architecture.gif │ │ │ ├── federation-background.gif │ │ │ └── css │ │ │ │ └── site.css │ │ │ └── site.xml │ ├── hadoop-yarn-server │ │ ├── hadoop-yarn-server-common │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── resources │ │ │ │ │ └── META-INF │ │ │ │ │ │ └── services │ │ │ │ │ │ └── org.apache.hadoop.security.SecurityInfo │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── hadoop │ │ │ │ │ └── yarn │ │ │ │ │ └── lib │ │ │ │ │ └── package-info.java │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ └── log4j.properties │ │ ├── hadoop-yarn-server-nodemanager │ │ │ └── src │ │ │ │ ├── test │ │ │ │ └── resources │ │ │ │ │ ├── mock-container-executer-with-error │ │ │ │ │ ├── mock-container-executor │ │ │ │ │ └── log4j.properties │ │ │ │ ├── main │ │ │ │ ├── resources │ │ │ │ │ └── META-INF │ │ │ │ │ │ └── services │ │ │ │ │ │ ├── org.apache.hadoop.security.SecurityInfo │ │ │ │ │ │ └── org.apache.hadoop.security.token.TokenIdentifier │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── hadoop │ │ │ │ │ └── yarn │ │ │ │ │ └── server │ │ │ │ │ └── nodemanager │ │ │ │ │ └── webapp │ │ │ │ │ ├── AggregatedLogsBlock.java │ │ │ │ │ └── AggregatedLogsPage.java │ │ │ │ └── config.h.cmake │ │ ├── hadoop-yarn-server-resourcemanager │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── org.apache.hadoop.security.token.TokenRenewer │ │ │ │ └── log4j.properties │ │ └── hadoop-yarn-server-tests │ │ │ └── src │ │ │ └── test │ │ │ └── resources │ │ │ └── log4j.properties │ ├── hadoop-yarn-applications │ │ ├── hadoop-yarn-applications-distributedshell │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ ├── yarn-site.xml │ │ │ │ └── log4j.properties │ │ └── hadoop-yarn-applications-unmanaged-am-launcher │ │ │ └── src │ │ │ └── test │ │ │ └── resources │ │ │ └── yarn-site.xml │ └── hadoop-yarn-api │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── hadoop │ │ └── yarn │ │ ├── api │ │ ├── protocolrecords │ │ │ ├── RefreshNodesRequest.java │ │ │ ├── RefreshNodesResponse.java │ │ │ ├── RefreshQueuesRequest.java │ │ │ ├── RefreshQueuesResponse.java │ │ │ ├── RefreshAdminAclsRequest.java │ │ │ ├── RefreshAdminAclsResponse.java │ │ │ ├── RefreshServiceAclsRequest.java │ │ │ ├── RefreshServiceAclsResponse.java │ │ │ ├── RefreshUserToGroupsMappingsRequest.java │ │ │ ├── RefreshUserToGroupsMappingsResponse.java │ │ │ ├── RefreshSuperUserGroupsConfigurationRequest.java │ │ │ ├── RefreshSuperUserGroupsConfigurationResponse.java │ │ │ └── impl │ │ │ │ └── pb │ │ │ │ └── package-info.java │ │ └── records │ │ │ └── impl │ │ │ └── pb │ │ │ └── package-info.java │ │ ├── util │ │ └── package-info.java │ │ └── exceptions │ │ ├── package-info.java │ │ └── impl │ │ └── pb │ │ └── package-info.java └── NOTICE.txt ├── hadoop-hdfs-project ├── hadoop-hdfs │ ├── src │ │ ├── test │ │ │ ├── resources │ │ │ │ ├── empty-file │ │ │ │ ├── data15bytes │ │ │ │ ├── data30bytes │ │ │ │ ├── data60bytes │ │ │ │ ├── fsimageV18 │ │ │ │ ├── fsimageV19 │ │ │ │ ├── editsStored │ │ │ │ ├── hadoop1-bbw.tgz │ │ │ │ ├── hadoop-22-dfs-dir.tgz │ │ │ │ ├── data120bytes │ │ │ │ ├── image-with-buggy-append.tgz │ │ │ │ ├── hadoop-1.0-multiblock-file.tgz │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ └── org.apache.hadoop.security.token.TokenRenewer │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── hadoop │ │ │ │ └── cli │ │ │ │ └── util │ │ │ │ └── CLICommandDFSAdmin.java │ │ ├── main │ │ │ ├── webapps │ │ │ │ ├── datanode │ │ │ │ │ └── robots.txt │ │ │ │ ├── proto-hdfs-web.xml │ │ │ │ ├── proto-datanode-web.xml │ │ │ │ ├── proto-journal-web.xml │ │ │ │ └── proto-secondary-web.xml │ │ │ ├── docs │ │ │ │ ├── releasenotes.html │ │ │ │ └── src │ │ │ │ │ └── documentation │ │ │ │ │ ├── resources │ │ │ │ │ └── images │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── core-logo.gif │ │ │ │ │ │ ├── hadoop-logo.jpg │ │ │ │ │ │ ├── FI-framework.gif │ │ │ │ │ │ ├── FI-framework.odg │ │ │ │ │ │ ├── architecture.gif │ │ │ │ │ │ ├── hadoop-logo-big.jpg │ │ │ │ │ │ └── request-identify.jpg │ │ │ │ │ └── README.txt │ │ │ ├── resources │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ ├── org.apache.hadoop.security.token.TokenIdentifier │ │ │ │ │ ├── org.apache.hadoop.security.token.TokenRenewer │ │ │ │ │ └── org.apache.hadoop.fs.FileSystem │ │ │ ├── conf │ │ │ │ └── hdfs-site.xml │ │ │ └── native │ │ │ │ └── fuse-dfs │ │ │ │ ├── fuse_trash.h │ │ │ │ └── fuse_impls_mknod.c │ │ ├── site │ │ │ ├── resources │ │ │ │ ├── images │ │ │ │ │ ├── hdfs-logo.jpg │ │ │ │ │ ├── hdfsdatanodes.gif │ │ │ │ │ ├── hdfsdatanodes.odg │ │ │ │ │ ├── hdfsdatanodes.png │ │ │ │ │ ├── hdfsarchitecture.gif │ │ │ │ │ ├── hdfsarchitecture.odg │ │ │ │ │ ├── hdfsarchitecture.png │ │ │ │ │ ├── hdfsproxy-server.jpg │ │ │ │ │ ├── hdfsproxy-forward.jpg │ │ │ │ │ └── hdfsproxy-overview.jpg │ │ │ │ └── css │ │ │ │ │ └── site.css │ │ │ └── site.xml │ │ ├── contrib │ │ │ └── bkjournal │ │ │ │ └── dev-support │ │ │ │ └── findbugsExcludeFile.xml │ │ ├── config.h.cmake │ │ └── ant │ │ │ └── org │ │ │ └── apache │ │ │ └── hadoop │ │ │ └── ant │ │ │ └── condition │ │ │ └── DfsIsDir.java │ ├── dev-support │ │ └── all-tests │ └── NOTICE.txt └── hadoop-hdfs-httpfs │ ├── src │ ├── test │ │ └── resources │ │ │ ├── classutils.txt │ │ │ ├── server.properties │ │ │ ├── testserver.properties │ │ │ ├── testserverwebapp1.properties │ │ │ ├── testserverwebapp2.properties │ │ │ ├── testserver-default.xml │ │ │ ├── httpfs-log4j.properties │ │ │ └── default-log4j.properties │ ├── main │ │ ├── conf │ │ │ ├── httpfs-signature.secret │ │ │ └── httpfs-site.xml │ │ ├── tomcat │ │ │ └── ROOT │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ └── index.html │ │ └── resources │ │ │ ├── httpfs.properties │ │ │ └── default-log4j.properties │ └── site │ │ ├── site.xml │ │ └── resources │ │ └── css │ │ └── site.css │ └── README.txt ├── hadoop-mapreduce-project ├── NOTICE.txt ├── hadoop-mapreduce-client │ ├── hadoop-mapreduce-client-jobclient │ │ └── src │ │ │ ├── test │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── hadoop │ │ │ │ │ └── cli │ │ │ │ │ ├── data60bytes │ │ │ │ │ └── util │ │ │ │ │ ├── CLICommandArchive.java │ │ │ │ │ └── CLICommandMRAdmin.java │ │ │ └── resources │ │ │ │ └── log4j.properties │ │ │ └── main │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── org.apache.hadoop.mapreduce.protocol.ClientProtocolProvider │ │ │ └── org.apache.hadoop.security.SecurityInfo │ ├── hadoop-mapreduce-client-app │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ └── org.apache.hadoop.security.SecurityInfo │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── hadoop │ │ │ │ └── mapreduce │ │ │ │ └── v2 │ │ │ │ └── app │ │ │ │ ├── package-info.java │ │ │ │ ├── job │ │ │ │ └── package-info.java │ │ │ │ └── rm │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── resources │ │ │ └── log4j.properties │ ├── hadoop-mapreduce-client-common │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ └── META-INF │ │ │ │ │ └── services │ │ │ │ │ ├── org.apache.hadoop.mapreduce.protocol.ClientProtocolProvider │ │ │ │ │ ├── org.apache.hadoop.security.token.TokenIdentifier │ │ │ │ │ └── org.apache.hadoop.security.token.TokenRenewer │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── hadoop │ │ │ │ └── mapreduce │ │ │ │ └── v2 │ │ │ │ ├── api │ │ │ │ ├── records │ │ │ │ │ ├── TaskType.java │ │ │ │ │ └── Avataar.java │ │ │ │ ├── HSClientProtocol.java │ │ │ │ ├── package-info.java │ │ │ │ └── protocolrecords │ │ │ │ │ └── KillJobResponse.java │ │ │ │ └── util │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── resources │ │ │ └── log4j.properties │ ├── hadoop-mapreduce-client-core │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ ├── org.apache.hadoop.security.token.TokenRenewer │ │ │ │ │ │ └── org.apache.hadoop.security.token.TokenIdentifier │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── hadoop │ │ │ │ │ └── mapreduce │ │ │ │ │ ├── lib │ │ │ │ │ ├── input │ │ │ │ │ │ └── FileInputFormatCounter.properties │ │ │ │ │ └── output │ │ │ │ │ │ └── FileOutputFormatCounter.properties │ │ │ │ │ └── FileSystemCounter.properties │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── hadoop │ │ │ │ ├── filecache │ │ │ │ └── package-info.java │ │ │ │ └── mapreduce │ │ │ │ └── filecache │ │ │ │ └── package-info.java │ │ │ ├── test │ │ │ └── resources │ │ │ │ └── log4j.properties │ │ │ └── site │ │ │ └── site.xml │ ├── hadoop-mapreduce-client-hs │ │ └── src │ │ │ ├── test │ │ │ └── resources │ │ │ │ └── log4j.properties │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── hadoop │ │ │ └── mapreduce │ │ │ └── v2 │ │ │ └── hs │ │ │ └── package-info.java │ └── hadoop-mapreduce-client-shuffle │ │ └── src │ │ └── test │ │ └── resources │ │ └── log4j.properties ├── .eclipse.templates │ └── README.txt ├── hadoop-mapreduce-examples │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── hadoop │ │ └── examples │ │ ├── dancing │ │ └── puzzle1.dta │ │ ├── terasort │ │ └── 2009-write-up │ │ │ ├── 1PBTaskTime.png │ │ │ ├── 1TBTaskTime.png │ │ │ ├── 100TBTaskTime.png │ │ │ ├── 500GBTaskTime.png │ │ │ └── .gitignore │ │ ├── package.html │ │ └── pi │ │ └── math │ │ └── package.html └── conf │ └── mapred-site.xml.template ├── hadoop-project-dist └── README.txt ├── hadoop-tools ├── hadoop-gridmix │ └── src │ │ ├── test │ │ └── resources │ │ │ └── data │ │ │ └── wordcount.json.gz │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── hadoop │ │ └── mapred │ │ └── gridmix │ │ └── Progressive.java ├── hadoop-distcp │ └── README ├── hadoop-pipes │ └── src │ │ └── main │ │ └── native │ │ ├── examples │ │ └── README.txt │ │ └── pipes │ │ └── debug │ │ ├── pipes-default-gdb-commands.txt │ │ └── pipes-default-script ├── hadoop-streaming │ └── src │ │ └── test │ │ └── java │ │ └── ClassWithNoPackage.java ├── hadoop-extras │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── hadoop │ │ ├── tools │ │ ├── DistCp_Counter.properties │ │ └── package-info.java │ │ └── mapred │ │ └── tools │ │ └── package-info.java └── hadoop-rumen │ └── src │ └── main │ └── java │ └── org │ └── apache │ └── hadoop │ └── tools │ └── rumen │ └── datatypes │ └── DataType.java ├── .gitignore ├── .gitattributes └── hadoop-project └── src └── site └── resources └── css └── site.css /hadoop-common-project/hadoop-common/src/test/empty-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/conf/slaves: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/empty-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/all-tests: -------------------------------------------------------------------------------- 1 | **/Test*.java 2 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/dev-support/all-tests: -------------------------------------------------------------------------------- 1 | **/Test*.java 2 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/classutils.txt: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/data15bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/node/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/test/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/yarn/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/cluster/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/mapreduce/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/proxy/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/jobhistory/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/conf/httpfs-signature.secret: -------------------------------------------------------------------------------- 1 | hadoop httpfs secret 2 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/datanode/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/data30bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | 12345678901234 3 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/native/AUTHORS: -------------------------------------------------------------------------------- 1 | Arun C Murthy 2 | * Initial version 3 | 4 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/data60bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | 12345678901234 3 | 12345678901234 4 | 12345678901234 5 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/native/ChangeLog: -------------------------------------------------------------------------------- 1 | 2006-10-05 Arun C Murthy 2 | * Initial version 3 | 4 | -------------------------------------------------------------------------------- /hadoop-yarn-project/NOTICE.txt: -------------------------------------------------------------------------------- 1 | This product includes software developed by The Apache Software 2 | Foundation (http://www.apache.org/). 3 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/NOTICE.txt: -------------------------------------------------------------------------------- 1 | This product includes software developed by The Apache Software 2 | Foundation (http://www.apache.org/). 3 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/NOTICE.txt: -------------------------------------------------------------------------------- 1 | This product includes software developed by The Apache Software 2 | Foundation (http://www.apache.org/). 3 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/NOTICE.txt: -------------------------------------------------------------------------------- 1 | This product includes software developed by The Apache Software 2 | Foundation (http://www.apache.org/). 3 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/releasenotes.html: -------------------------------------------------------------------------------- 1 | THIS IS A PLACEHOLDER. REAL RELEASE NOTES WILL BE ADDED TO THIS FILE IN RELEASE BRANCHES. 2 | -------------------------------------------------------------------------------- /hadoop-project-dist/README.txt: -------------------------------------------------------------------------------- 1 | DUMMY. 2 | 3 | Required for the assembly:single goal not to fail because there 4 | are not files in the hadoop-project-dist module. 5 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/fsimageV18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/fsimageV18 -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/fsimageV19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/fsimageV19 -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/editsStored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/editsStored -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/hadoop1-bbw.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/hadoop1-bbw.tgz -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfs-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfs-logo.jpg -------------------------------------------------------------------------------- /hadoop-tools/hadoop-gridmix/src/test/resources/data/wordcount.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-tools/hadoop-gridmix/src/test/resources/data/wordcount.json.gz -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/hadoop-22-dfs-dir.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/hadoop-22-dfs-dir.tgz -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/cli/data60bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | 12345678901234 3 | 12345678901234 4 | 12345678901234 5 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsdatanodes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsdatanodes.gif -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsdatanodes.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsdatanodes.odg -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsdatanodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsdatanodes.png -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/kdc/keytabs/dn1.keytab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/test/resources/kdc/keytabs/dn1.keytab -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/kdc/keytabs/nn1.keytab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/test/resources/kdc/keytabs/nn1.keytab -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsarchitecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsarchitecture.gif -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsarchitecture.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsarchitecture.odg -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsarchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsarchitecture.png -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsproxy-server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsproxy-server.jpg -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/data120bytes: -------------------------------------------------------------------------------- 1 | 12345678901234 2 | 12345678901234 3 | 12345678901234 4 | 12345678901234 5 | 12345678901234 6 | 12345678901234 7 | 12345678901234 8 | 12345678901234 9 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/image-with-buggy-append.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/image-with-buggy-append.tgz -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.ipr 3 | *.iws 4 | .idea 5 | .svn 6 | .classpath 7 | .project 8 | .settings 9 | target 10 | hadoop-hdfs-project/hadoop-hdfs/downloads 11 | hadoop-hdfs-project/hadoop-hdfs-httpfs/downloads 12 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/kdc/keytabs/user1.keytab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/test/resources/kdc/keytabs/user1.keytab -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsproxy-forward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsproxy-forward.jpg -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsproxy-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/site/resources/images/hdfsproxy-overview.jpg -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/hadoop-1.0-multiblock-file.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/hadoop-1.0-multiblock-file.tgz -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/resources/federation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/resources/federation.gif -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/test-untar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/test-untar.tar -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/test-untar.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/test-untar.tgz -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/resources/yarn_architecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/resources/yarn_architecture.gif -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/favicon.ico -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/busy.gif -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/resources/federation-background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/resources/federation-background.gif -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/favicon.ico -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/contrib/bkjournal/dev-support/findbugsExcludeFile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/core-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/core-logo.gif -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/hadoop-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/hadoop-logo.jpg -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/core-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/core-logo.gif -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/FI-framework.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/FI-framework.gif -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/FI-framework.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/FI-framework.odg -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/architecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/architecture.gif -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/hadoop-st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/hadoop-st.png -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/architecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/architecture.gif -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/common-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/common-logo.jpg -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hadoop-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hadoop-logo.jpg -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/native/NEWS: -------------------------------------------------------------------------------- 1 | 2006-10-05 Arun C Murthy 2 | * Initial version of libhadoop released 3 | 4 | 2007-01-03 Arun C Murthy 5 | * Added support for lzo compression library 6 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/hadoop-logo-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/hadoop-logo-big.jpg -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/request-identify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/resources/images/request-identify.jpg -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsdatanodes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsdatanodes.gif -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsdatanodes.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsdatanodes.odg -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsdatanodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsdatanodes.png -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hadoop-logo-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hadoop-logo-big.jpg -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsarchitecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsarchitecture.gif -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsarchitecture.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsarchitecture.odg -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsarchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-common-project/hadoop-common/src/main/docs/src/documentation/resources/images/hdfsarchitecture.png -------------------------------------------------------------------------------- /hadoop-mapreduce-project/.eclipse.templates/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains templates for generating Eclipse files to configure 2 | Eclipse for Hadoop development. 3 | 4 | For further information please consult 5 | 6 | http://wiki.apache.org/hadoop/EclipseEnvironment 7 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jt/jquery.jstree.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jt/jquery.jstree.js.gz -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/favicon.ico -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_asc.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_both.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_desc.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/jquery-1.8.2.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/jquery-1.8.2.min.js.gz -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/Sorting icons.psd -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/back_disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/back_disabled.jpg -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/back_enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/back_enabled.jpg -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/forward_disabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/forward_disabled.jpg -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/forward_enabled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/forward_enabled.jpg -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/conf/container-executor.cfg: -------------------------------------------------------------------------------- 1 | yarn.nodemanager.linux-container-executor.group=#configured value of yarn.nodemanager.linux-container-executor.group 2 | banned.users=#comma separated list of users who can not run applications 3 | min.user.id=1000#Prevent other super-users 4 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/js/jquery.dataTables.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/js/jquery.dataTables.min.js.gz -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/jquery-ui-1.9.1.custom.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/jquery-ui-1.9.1.custom.min.js.gz -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/dancing/puzzle1.dta: -------------------------------------------------------------------------------- 1 | 8 5 ? 3 9 ? ? ? ? 2 | ? ? 2 ? ? ? ? ? ? 3 | ? ? 6 ? 1 ? ? ? 2 4 | ? ? 4 ? ? 3 ? 5 9 5 | ? ? 8 9 ? 1 4 ? ? 6 | 3 2 ? 4 ? ? 8 ? ? 7 | 9 ? ? ? 8 ? 5 ? ? 8 | ? ? ? ? ? ? 2 ? ? 9 | ? ? ? ? 4 5 ? 7 8 10 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/1PBTaskTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/1PBTaskTime.png -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/1TBTaskTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/1TBTaskTime.png -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/100TBTaskTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/100TBTaskTime.png -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/500GBTaskTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/500GBTaskTime.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebryant/hadoop-common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery/themes-1.9.1/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /hadoop-tools/hadoop-distcp/README: -------------------------------------------------------------------------------- 1 | DistCp (distributed copy) is a tool used for large inter/intra-cluster copying. 2 | It uses Map/Reduce to effect its distribution, error handling and recovery, 3 | and reporting. It expands a list of files and directories into input to map tasks, 4 | each of which will copy a partition of the files specified in the source list. 5 | 6 | Version 0.1 (2010/08/02 sriksun) 7 | - Initial Version 8 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/docs/src/documentation/README.txt: -------------------------------------------------------------------------------- 1 | This is the base documentation directory. 2 | 3 | skinconf.xml # This file customizes Forrest for your project. In it, you 4 | # tell forrest the project name, logo, copyright info, etc 5 | 6 | sitemap.xmap # Optional. This sitemap is consulted before all core sitemaps. 7 | # See http://forrest.apache.org/docs/project-sitemap.html 8 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/docs/src/documentation/README.txt: -------------------------------------------------------------------------------- 1 | This is the base documentation directory. 2 | 3 | skinconf.xml # This file customizes Forrest for your project. In it, you 4 | # tell forrest the project name, logo, copyright info, etc 5 | 6 | sitemap.xmap # Optional. This sitemap is consulted before all core sitemaps. 7 | # See http://forrest.apache.org/docs/project-sitemap.html 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | *.cs text diff=csharp 5 | *.java text diff=java 6 | *.html text diff=html 7 | *.py text diff=python 8 | *.pl text diff=perl 9 | *.pm text diff=perl 10 | *.css text 11 | *.js text 12 | *.sql text 13 | 14 | *.sh text eol=lf 15 | 16 | *.bat text eol=crlf 17 | *.csproj text merge=union eol=crlf 18 | *.sln text merge=union eol=crlf 19 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/native/README: -------------------------------------------------------------------------------- 1 | Package: libhadoop 2 | Authors: Arun C Murthy 3 | 4 | MOTIVATION 5 | 6 | The libhadoop package contains the native code for any of hadoop (http://hadoop.apache.org/core). 7 | 8 | IMPROVEMENTS 9 | 10 | Any suggestions for improvements or patched should be sent to core-dev@hadoop.apache.org. Please go through http://wiki.apache.org/hadoop/HowToContribute for more information on how to contribute. 11 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-pipes/src/main/native/examples/README.txt: -------------------------------------------------------------------------------- 1 | To run the examples, first compile them: 2 | 3 | % mvn install 4 | 5 | and then copy the binaries to dfs: 6 | 7 | % hadoop fs -put target/native/wordcount-simple /examples/bin/ 8 | 9 | create an input directory with text files: 10 | 11 | % hadoop fs -put my-data in-dir 12 | 13 | and run the word count example: 14 | 15 | % hadoop pipes -conf src/main/native/examples/conf/word.xml \ 16 | -input in-dir -output out-dir 17 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth/README.txt: -------------------------------------------------------------------------------- 1 | Hadoop Auth, Java HTTP SPNEGO 2 | 3 | Hadoop Auth is a Java library consisting of a client and a server 4 | components to enable Kerberos SPNEGO authentication for HTTP. 5 | 6 | The client component is the AuthenticatedURL class. 7 | 8 | The server component is the AuthenticationFilter servlet filter class. 9 | 10 | Authentication mechanisms support is pluggable in both the client and 11 | the server components via interfaces. 12 | 13 | In addition to Kerberos SPNEGO, Hadoop Auth also supports Pseudo/Simple 14 | authentication (trusting the value of the query string parameter 15 | 'user.name'). 16 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/server.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/contrib/bash-tab-completion/README: -------------------------------------------------------------------------------- 1 | Bash tab completion support for the hadoop script. 2 | 3 | On Debian-like distributions, the script can be placed in 4 | /etc/bash_completion.d/, and it will be sourced automatically by Bash. On 5 | other distributions, you may source the file manually (`. hadoop.sh') or 6 | source it from your bashrc (or equivalent) file. 7 | 8 | The script allows tab completion of all the command names, subcommands for the 9 | 'fs', 'dfsadmin', 'job', 'namenode' and 'pipe' commands, arguments of the 'jar' 10 | command and most arguments to the 'fs' subcommands (completing local and 11 | dfs paths as appropriate). 12 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/testserver.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/testserverwebapp1.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/testserverwebapp2.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-pipes/src/main/native/pipes/debug/pipes-default-gdb-commands.txt: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | info threads 13 | backtrace 14 | quit 15 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth/BUILDING.txt: -------------------------------------------------------------------------------- 1 | 2 | Build instructions for Hadoop Auth 3 | 4 | Same as for Hadoop. 5 | 6 | For more details refer to the Hadoop Auth documentation pages. 7 | 8 | ----------------------------------------------------------------------------- 9 | Caveats: 10 | 11 | * Hadoop Auth has profile to enable Kerberos testcases (testKerberos) 12 | 13 | To run Kerberos testcases a KDC, 2 kerberos principals and a keytab file 14 | are required (refer to the Hadoop Auth documentation pages for details). 15 | 16 | * Hadoop Auth does not have a distribution profile (dist) 17 | 18 | * Hadoop Auth does not have a native code profile (native) 19 | 20 | ----------------------------------------------------------------------------- 21 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/conf/httpfs-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/resources/META-INF/services/org.apache.hadoop.security.token.TokenRenewer: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.tools.FakeRenewer 15 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth-examples/src/main/webapp/index.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 |

Hello Hadoop Auth Examples!

17 | 18 | 19 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/resources/META-INF/services/org.apache.hadoop.security.SecurityInfo: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.security.AnnotatedSecurityInfo 15 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/tomcat/ROOT/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth-examples/src/main/webapp/simple/index.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 |

Hello Hadoop Auth Pseudo/Simple Authentication!

17 | 18 | 19 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth-examples/src/main/webapp/kerberos/index.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 |

Hello Hadoop Auth Kerberos SPNEGO Authentication!

17 | 18 | 19 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/conf/yarn-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/resources/META-INF/services/org.apache.hadoop.security.SecurityInfo: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.yarn.server.RMNMSecurityInfoClass 15 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/resources/META-INF/services/org.apache.hadoop.security.SecurityInfo: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapreduce.v2.app.MRClientSecurityInfo 15 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth-examples/src/main/webapp/annonymous/index.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 |

Hello Hadoop Auth Pseudo/Simple Authentication with anonymous users!

17 | 18 | 19 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/tomcat/ROOT/index.html: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | HttpFs service, service base URL at /webhdfs/v1. 20 | 21 | 22 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/resources/META-INF/services/org.apache.hadoop.mapreduce.protocol.ClientProtocolProvider: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapred.LocalClientProtocolProvider 15 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenIdentifier: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapreduce.v2.api.MRDelegationTokenIdentifier 15 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenRenewer: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapreduce.v2.security.MRDelegationTokenRenewer 15 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenRenewer: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapreduce.security.token.JobTokenIdentifier$Renewer 15 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/main/resources/META-INF/services/org.apache.hadoop.mapreduce.protocol.ClientProtocolProvider: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapred.YarnClientProtocolProvider 15 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/main/resources/META-INF/services/org.apache.hadoop.security.SecurityInfo: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapreduce.v2.security.client.ClientHSSecurityInfo 15 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/proto-hdfs-web.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | @hdfs.servlet.definitions@ 17 | 18 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/test/resources/mock-container-executer-with-error: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | 14 | for PARAM in "$@" 15 | do 16 | echo $PARAM; 17 | done > params.txt 18 | 19 | exec badcommand 20 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/proto-datanode-web.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | @datanode.servlet.definitions@ 17 | 18 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/proto-journal-web.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | @journal.servlet.definitions@ 17 | 18 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/testserver-default.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | testserver.a 18 | default 19 | 20 | 21 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/proto-secondary-web.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | @secondary.servlet.definitions@ 17 | 18 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-pipes/src/main/native/pipes/debug/pipes-default-script: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | core=`find . -name 'core*'` 13 | #Only pipes programs have 5th argument as program name. 14 | gdb -quiet $5 -c $core -x $HADOOP_PREFIX/src/c++/pipes/debug/pipes-default-gdb-commands.txt 15 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/resources/META-INF/services/org.apache.hadoop.security.SecurityInfo: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer.security.LocalizerSecurityInfo 15 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/resources/META-INF/services/org.apache.hadoop.security.token.TokenRenewer: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.yarn.server.resourcemanager.security.TestDelegationTokenRenewer$Renewer 15 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenIdentifier: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.hdfs.security.token.block.BlockTokenIdentifier 15 | org.apache.hadoop.hdfs.security.token.delegation.DelegationTokenIdentifier 16 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenIdentifier: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.yarn.server.nodemanager.containermanager.localizer.security.LocalizerTokenIdentifier 15 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/META-INF/services/org.apache.hadoop.security.token.TokenIdentifier: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.ipc.TestSaslRPC$TestTokenIdentifier 15 | org.apache.hadoop.security.token.delegation.TestDelegationToken$TestDelegationTokenIdentifier 16 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/conf/mapred-site.xml.template: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/test/resources/mock-container-executor: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | 14 | for PARAM in "$@" 15 | do 16 | echo $PARAM; 17 | done > params.txt 18 | if [[ "$2" == "1" ]]; 19 | then 20 | cd $5; 21 | exec $6; 22 | fi; 23 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/webapps/test/.gitignore: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/README.txt: -------------------------------------------------------------------------------- 1 | ----------------------------------------------------------------------------- 2 | HttpFS - Hadoop HDFS over HTTP 3 | 4 | HttpFS is a server that provides a REST HTTP gateway to HDFS with full 5 | filesystem read & write capabilities. 6 | 7 | HttpFS can be used to transfer data between clusters running different 8 | versions of Hadoop (overcoming RPC versioning issues), for example using 9 | Hadoop DistCP. 10 | 11 | HttpFS can be used to access data in HDFS on a cluster behind of a firewall 12 | (the HttpFS server acts as a gateway and is the only system that is allowed 13 | to cross the firewall into the cluster). 14 | 15 | HttpFS can be used to access data in HDFS using HTTP utilities (such as curl 16 | and wget) and HTTP libraries Perl from other languages than Java. 17 | ----------------------------------------------------------------------------- 18 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/conf/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/conf/hdfs-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenIdentifier: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.mapreduce.security.token.delegation.DelegationTokenIdentifier 15 | org.apache.hadoop.mapreduce.security.token.JobTokenIdentifier 16 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/resources/httpfs.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | 15 | httpfs.version=${project.version} 16 | 17 | httpfs.source.repository=${httpfs.source.repository} 18 | httpfs.source.revision=${httpfs.source.revision} 19 | 20 | httpfs.build.username=${user.name} 21 | httpfs.build.timestamp=${httpfs.build.timestamp} 22 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenRenewer: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.hdfs.DFSClient$Renewer 15 | org.apache.hadoop.hdfs.security.token.block.BlockTokenIdentifier$Renewer 16 | org.apache.hadoop.hdfs.HftpFileSystem$TokenManager 17 | org.apache.hadoop.hdfs.web.WebHdfsFileSystem$DtRenewer 18 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/org/apache/hadoop/mapreduce/lib/input/FileInputFormatCounter.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # ResourceBundle properties file for file-input-format counters 14 | 15 | CounterGroupName= File Input Format Counters 16 | 17 | BYTES_READ.name= Bytes Read -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenRenewer: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.yarn.security.ApplicationTokenIdentifier$Renewer 15 | org.apache.hadoop.yarn.security.ContainerTokenIdentifier$Renewer 16 | org.apache.hadoop.yarn.security.client.RMDelegationTokenIdentifier$Renewer 17 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/org/apache/hadoop/mapreduce/lib/output/FileOutputFormatCounter.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # ResourceBundle properties file for file-output-format counters 14 | 15 | CounterGroupName= File Output Format Counters 16 | 17 | BYTES_WRITTEN.name= Bytes Written -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/resources/default-log4j.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | log4j.appender.console=org.apache.log4j.ConsoleAppender 15 | log4j.appender.console.Target=System.err 16 | log4j.appender.console.layout=org.apache.log4j.PatternLayout 17 | log4j.appender.console.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n 18 | log4j.rootLogger=INFO, console 19 | 20 | 21 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-streaming/src/test/java/ClassWithNoPackage.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | public class ClassWithNoPackage { 20 | } 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/META-INF/services/org.apache.hadoop.security.SecurityInfo: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.yarn.security.client.ClientRMSecurityInfo 15 | org.apache.hadoop.yarn.security.ContainerManagerSecurityInfo 16 | org.apache.hadoop.yarn.security.SchedulerSecurityInfo 17 | org.apache.hadoop.yarn.security.admin.AdminSecurityInfo 18 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-extras/src/main/java/org/apache/hadoop/tools/DistCp_Counter.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # ResourceBundle properties file for distcp counters 14 | 15 | CounterGroupName= distcp 16 | 17 | COPY.name= Files copied 18 | SKIP.name= Files skipped 19 | FAIL.name= Files failed 20 | BYTESCOPIED.name= Bytes copied 21 | BYTESEXPECTED.name= Bytes expected 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/META-INF/services/org.apache.hadoop.security.token.TokenIdentifier: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.yarn.security.ContainerTokenIdentifier 15 | org.apache.hadoop.yarn.security.ApplicationTokenIdentifier 16 | org.apache.hadoop.yarn.security.client.ClientTokenIdentifier 17 | org.apache.hadoop.yarn.security.client.RMDelegationTokenIdentifier 18 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/resources/META-INF/services/org.apache.hadoop.io.compress.CompressionCodec: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | org.apache.hadoop.io.compress.BZip2Codec 15 | org.apache.hadoop.io.compress.DefaultCodec 16 | org.apache.hadoop.io.compress.DeflateCodec 17 | org.apache.hadoop.io.compress.GzipCodec 18 | org.apache.hadoop.io.compress.Lz4Codec 19 | org.apache.hadoop.io.compress.SnappyCodec 20 | 21 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | # log4j configuration used during build and unit tests 13 | 14 | log4j.rootLogger=info,stdout 15 | log4j.threshhold=ALL 16 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 17 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 18 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} (%F:%M(%L)) - %m%n 19 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth-examples/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. See accompanying LICENSE file. 13 | # 14 | log4j.appender.test=org.apache.log4j.ConsoleAppender 15 | log4j.appender.test.Target=System.out 16 | log4j.appender.test.layout=org.apache.log4j.PatternLayout 17 | log4j.appender.test.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n 18 | 19 | log4j.logger.org.apache.hadoop.security.authentication=DEBUG, test 20 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | Common utilities. 22 | 23 | 24 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/conf/empty-configuration.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | org.apache.maven.skins 18 | maven-stylus-skin 19 | 1.2 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/net/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | Network-related classes. 22 | 23 | 24 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | An abstract file system API. 22 | 23 | 24 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/kdc/killKdc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | 18 | ps -ef | grep apacheds | grep -v grep | awk '{printf $2"\n"}' | xargs -t --no-run-if-empty kill -9 19 | 20 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/webapp/AggregatedLogsBlock.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/webapp/AggregatedLogsPage.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/test/resources/yarn-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/conf/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | Configuration of system parameters. 22 | 23 | 24 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | Hadoop example code. 22 | 23 | 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-unmanaged-am-launcher/src/test/resources/yarn-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | org.apache.maven.skins 18 | maven-stylus-skin 19 | 1.2 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-extras/src/main/java/org/apache/hadoop/tools/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | /** 20 | * Command-line tools for MapReduce. 21 | */ 22 | package org.apache.hadoop.tools; 23 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | Tools to help define network clients and servers. 22 | 23 | 24 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | org.apache.maven.skins 18 | maven-stylus-skin 19 | 1.2 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/filecache/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | * 18 | */ 19 | package org.apache.hadoop.filecache; 20 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-tests/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=INFO,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/config.h.cmake: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | #ifndef CONFIG_H 19 | #define CONFIG_H 20 | 21 | #cmakedefine _FUSE_DFS_VERSION "@_FUSE_DFS_VERSION@" 22 | 23 | #cmakedefine HAVE_BETTER_TLS 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/terasort/2009-write-up/.gitignore: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | Yahoo2009.aux 16 | Yahoo2009.bbl 17 | Yahoo2009.blg 18 | Yahoo2009.log 19 | Yahoo2009.out 20 | Yahoo2009.pdf 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/Clock.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn; 20 | 21 | public interface Clock { 22 | 23 | long getTime(); 24 | } 25 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | org.apache.maven.skins 18 | maven-stylus-skin 19 | 1.2 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/webapps/static/test.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | /** 19 | * Test CSS file for content type handling - empty, since we just check 20 | * returned content type! 21 | */ 22 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | org.apache.maven.skins 19 | maven-stylus-skin 20 | 1.2 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/resources/webapps/test/testjsp.jsp: -------------------------------------------------------------------------------- 1 | <%! 2 | /* 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | */ 19 | %> 20 | <%@ page contentType="text/html; charset=UTF-8" %> 21 | Hello world! 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/config.h.cmake: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | #ifndef CONFIG_H 19 | #define CONFIG_H 20 | 21 | #cmakedefine HADOOP_CONF_DIR "@HADOOP_CONF_DIR@" 22 | 23 | #endif 24 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/cli/util/CLICommandFS.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | *

10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | *

12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.cli.util; 19 | 20 | public class CLICommandFS implements CLICommandTypes { 21 | } 22 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-extras/src/main/java/org/apache/hadoop/mapred/tools/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | /** 20 | * Command-line tools associated with MapReduce. 21 | */ 22 | package org.apache.hadoop.mapred.tools; 23 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # log4j configuration used during build and unit tests 14 | 15 | log4j.rootLogger=info,stdout 16 | log4j.threshhold=ALL 17 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 18 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 19 | log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %-5p [%t] %c{2} (%F:%M(%L)) - %m%n 20 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/cli/util/CLICommandDFSAdmin.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | *

10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | *

12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.cli.util; 19 | 20 | public class CLICommandDFSAdmin implements CLICommandTypes { 21 | } 22 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/tools/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.tools; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 17 | org.apache.maven.skins 18 | maven-stylus-skin 19 | 1.2 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /hadoop-project/src/site/resources/css/site.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | #banner { 18 | height: 93px; 19 | background: none; 20 | } 21 | 22 | #bannerLeft img { 23 | margin-left: 30px; 24 | margin-top: 10px; 25 | } 26 | 27 | #bannerRight img { 28 | margin: 17px; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshNodesRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshNodesRequest { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | Generic i/o code for use when reading and writing data to the network, 22 | to databases, and to files. 23 | 24 | 25 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshNodesResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshNodesResponse { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshQueuesRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshQueuesRequest { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshQueuesResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshQueuesResponse { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.util; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/avro/avroRecord.avsc: -------------------------------------------------------------------------------- 1 | // Licensed to the Apache Software Foundation (ASF) under one 2 | // or more contributor license agreements. See the NOTICE file 3 | // distributed with this work for additional information 4 | // regarding copyright ownership. The ASF licenses this file 5 | // to you under the Apache License, Version 2.0 (the 6 | // "License"); you may not use this file except in compliance 7 | // with the License. You may obtain a copy of the License at 8 | // 9 | // http://www.apache.org/licenses/LICENSE-2.0 10 | // 11 | // Unless required by applicable law or agreed to in writing, software 12 | // distributed under the License is distributed on an "AS IS" BASIS, 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | // See the License for the specific language governing permissions and 15 | // limitations under the License. 16 | 17 | 18 | {"type": "record", "name":"AvroRecord", 19 | "namespace": "org.apache.hadoop.io.serializer.avro", 20 | "fields": [ 21 | {"name": "intField", "type": "int"} 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-examples/src/main/java/org/apache/hadoop/examples/pi/math/package.html: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | This package provides useful mathematical library classes 20 | for the distbbp program. 21 | 22 | 23 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshAdminAclsRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshAdminAclsRequest { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshAdminAclsResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshAdminAclsResponse { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/httpfs-log4j.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | #log4j.appender.test=org.apache.log4j.varia.NullAppender 15 | #log4j.appender.test=org.apache.log4j.ConsoleAppender 16 | log4j.appender.test=org.apache.log4j.FileAppender 17 | log4j.appender.test.File=${test.dir}/test.log 18 | log4j.appender.test.Append=true 19 | log4j.appender.test.layout=org.apache.log4j.PatternLayout 20 | log4j.appender.test.layout.ConversionPattern=%d{ISO8601} %5p %20c{1}: %4L - %m%n 21 | log4j.rootLogger=ALL, test 22 | 23 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/resources/META-INF/services/org.apache.hadoop.fs.FileSystem: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | org.apache.hadoop.hdfs.DistributedFileSystem 17 | org.apache.hadoop.hdfs.HftpFileSystem 18 | org.apache.hadoop.hdfs.HsftpFileSystem 19 | org.apache.hadoop.hdfs.web.WebHdfsFileSystem 20 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshServiceAclsRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshServiceAclsRequest { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshServiceAclsResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshServiceAclsResponse { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/conf/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.conf; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/event/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.event; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/ipc/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.ipc; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/state/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.state; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-auth/src/site/resources/css/site.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | #banner { 18 | height: 93px; 19 | background: none; 20 | } 21 | 22 | #bannerLeft img { 23 | margin-left: 30px; 24 | margin-top: 10px; 25 | } 26 | 27 | #bannerRight img { 28 | margin: 17px; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/test/resources/default-log4j.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed under the Apache License, Version 2.0 (the "License"); 3 | # you may not use this file except in compliance with the License. 4 | # You may obtain a copy of the License at 5 | # 6 | # http://www.apache.org/licenses/LICENSE-2.0 7 | # 8 | # Unless required by applicable law or agreed to in writing, software 9 | # distributed under the License is distributed on an "AS IS" BASIS, 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | # See the License for the specific language governing permissions and 12 | # limitations under the License. 13 | # 14 | #log4j.appender.test=org.apache.log4j.varia.NullAppender 15 | #log4j.appender.test=org.apache.log4j.ConsoleAppender 16 | log4j.appender.test=org.apache.log4j.FileAppender 17 | log4j.appender.test.File=${test.dir}/test.log 18 | log4j.appender.test.Append=true 19 | log4j.appender.test.layout=org.apache.log4j.PatternLayout 20 | log4j.appender.test.layout.ConversionPattern=%d{ISO8601} %5p %20c{1}: %4L - %m%n 21 | log4j.rootLogger=ALL, test 22 | 23 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/site/resources/css/site.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | #banner { 18 | height: 93px; 19 | background: none; 20 | } 21 | 22 | #bannerLeft img { 23 | margin-left: 30px; 24 | margin-top: 10px; 25 | } 26 | 27 | #bannerRight img { 28 | margin: 17px; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/api/records/TaskType.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.mapreduce.v2.api.records; 20 | 21 | public enum TaskType { 22 | MAP, REDUCE 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/exceptions/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.exceptions; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/service/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.service; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/jmx/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | 18 | /** 19 | * This package provides access to JMX primarily through the 20 | * {@link org.apache.hadoop.jmx.JMXJsonServlet} class. 21 | */ 22 | package org.apache.hadoop.jmx; -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/site/resources/css/site.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | #banner { 18 | height: 93px; 19 | background: none; 20 | } 21 | 22 | #bannerLeft img { 23 | margin-left: 30px; 24 | margin-top: 10px; 25 | } 26 | 27 | #bannerRight img { 28 | margin: 17px; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs-httpfs/src/site/resources/css/site.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | #banner { 18 | height: 93px; 19 | background: none; 20 | } 21 | 22 | #bannerLeft img { 23 | margin-left: 30px; 24 | margin-top: 10px; 25 | } 26 | 27 | #bannerRight img { 28 | margin: 17px; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/native/fuse-dfs/fuse_trash.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | #ifndef __FUSE_TRASH_H__ 20 | #define __FUSE_TRASH_H__ 21 | 22 | #include 23 | 24 | int hdfsDeleteWithTrash(hdfsFS userFS, const char *path, int useTrash); 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/factories/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.factories; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/security/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.security; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/org/apache/hadoop/mapreduce/FileSystemCounter.properties: -------------------------------------------------------------------------------- 1 | # Licensed under the Apache License, Version 2.0 (the "License"); 2 | # you may not use this file except in compliance with the License. 3 | # You may obtain a copy of the License at 4 | # 5 | # http://www.apache.org/licenses/LICENSE-2.0 6 | # 7 | # Unless required by applicable law or agreed to in writing, software 8 | # distributed under the License is distributed on an "AS IS" BASIS, 9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 10 | # See the License for the specific language governing permissions and 11 | # limitations under the License. 12 | 13 | # ResourceBundle properties file for job-level counters 14 | 15 | CounterGroupName= File System Counters 16 | 17 | BYTES_READ.name= Number of bytes read 18 | BYTES_WRITTEN.name= Number of bytes written 19 | READ_OPS.name= Number of read operations 20 | LARGE_READ_OPS.name= Number of large read operations 21 | WRITE_OPS.name= Number of write operations 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshUserToGroupsMappingsRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshUserToGroupsMappingsRequest { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/cli/util/CLICommandArchive.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | *

10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | *

12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.cli.util; 19 | 20 | public class CLICommandArchive implements CLICommandTypes { 21 | } 22 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/src/test/java/org/apache/hadoop/cli/util/CLICommandMRAdmin.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | *

10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | *

12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.cli.util; 19 | 20 | public class CLICommandMRAdmin implements CLICommandTypes { 21 | } 22 | -------------------------------------------------------------------------------- /hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/Progressive.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.mapred.gridmix; 19 | 20 | /** 21 | * Used to track progress of tasks. 22 | */ 23 | public interface Progressive { 24 | public float getProgress(); 25 | } -------------------------------------------------------------------------------- /hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/datatypes/DataType.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.tools.rumen.datatypes; 19 | 20 | /** 21 | * Represents a Rumen data-type. 22 | */ 23 | public interface DataType { 24 | T getValue(); 25 | } 26 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshUserToGroupsMappingsResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshUserToGroupsMappingsResponse { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/records/impl/pb/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.api.records.impl.pb; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/exceptions/impl/pb/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.exceptions.impl.pb; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/SystemClock.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.yarn; 19 | 20 | public class SystemClock implements Clock { 21 | 22 | public long getTime() { 23 | return System.currentTimeMillis(); 24 | } 25 | } -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/api/impl/pb/client/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.api.impl.pb.client; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/security/client/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.security.client; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/resources/css/site.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | #banner { 18 | height: 93px; 19 | background: none; 20 | } 21 | 22 | #bannerLeft img { 23 | margin-left: 30px; 24 | margin-top: 10px; 25 | } 26 | 27 | #bannerRight img { 28 | margin: 17px; 29 | } 30 | 31 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/api/impl/pb/service/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.api.impl.pb.service; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/factories/impl/pb/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.factories.impl.pb; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/factory/providers/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.factory.providers; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-common/src/main/java/org/apache/hadoop/yarn/lib/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.lib; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | 22 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/main/java/org/apache/hadoop/mapreduce/v2/hs/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.mapreduce.v2.hs; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshSuperUserGroupsConfigurationRequest.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshSuperUserGroupsConfigurationRequest { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/cli/util/CLICommandTypes.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | *

10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | *

12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package org.apache.hadoop.cli.util; 19 | 20 | /** 21 | * This interface is to provide command type for test commands enums 22 | */ 23 | public interface CLICommandTypes { 24 | } 25 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.mapreduce.v2.app; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/api/HSClientProtocol.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.mapreduce.v2.api; 20 | 21 | 22 | public interface HSClientProtocol extends MRClientProtocol { 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/api/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.mapreduce.v2.api; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/api/records/Avataar.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.mapreduce.v2.api.records; 20 | 21 | public enum Avataar { 22 | VIRGIN, 23 | SPECULATIVE 24 | } 25 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/RefreshSuperUserGroupsConfigurationResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.yarn.api.protocolrecords; 20 | 21 | public interface RefreshSuperUserGroupsConfigurationResponse { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/api/protocolrecords/impl/pb/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.yarn.api.protocolrecords.impl.pb; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/ant/org/apache/hadoop/ant/condition/DfsIsDir.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.ant.condition; 20 | 21 | public class DfsIsDir extends DfsBaseConditional { 22 | protected final char flag = 'd'; 23 | protected char getFlag() { return flag; } 24 | } 25 | -------------------------------------------------------------------------------- /hadoop-hdfs-project/hadoop-hdfs/src/main/native/fuse-dfs/fuse_impls_mknod.c: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | #include "fuse_dfs.h" 20 | #include "fuse_impls.h" 21 | 22 | int dfs_mknod(const char *path, mode_t mode, dev_t rdev) 23 | { 24 | TRACE1("mknod", path); 25 | DEBUG("dfs_mknod"); 26 | return 0; 27 | } 28 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/job/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.mapreduce.v2.app.job; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/rm/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.mapreduce.v2.app.rm; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/api/protocolrecords/KillJobResponse.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package org.apache.hadoop.mapreduce.v2.api.protocolrecords; 20 | 21 | public interface KillJobResponse { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-common/src/main/java/org/apache/hadoop/mapreduce/v2/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.mapreduce.v2.util; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | -------------------------------------------------------------------------------- /hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/filecache/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | @InterfaceAudience.Private 19 | package org.apache.hadoop.mapreduce.filecache; 20 | import org.apache.hadoop.classification.InterfaceAudience; 21 | --------------------------------------------------------------------------------