-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HADOOP-18682. Move hadoop docker scripts under the main source code #6483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
e32667c
a18a2fb
5810004
464c378
03d600f
83ad1a3
e9a25c6
1343de8
08987d1
43ff443
7a28102
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| <!-- | ||
|
||
| Licensed to the Apache Software Foundation (ASF) under one or more | ||
| contributor license agreements. See the NOTICE file distributed with | ||
| this work for additional information regarding copyright ownership. | ||
| The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| (the "License"); you may not use this file except in compliance with | ||
| the License. You may obtain a copy of the License at | ||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| --> | ||
|
|
||
| ## Hadoop Docker | ||
|
|
||
| This directory contains Docker Compose definitions for running the current version of Hadoop in a multi-node docker environment. | ||
|
|
||
| This is meant for testing code changes locally and debugging. | ||
|
|
||
| The image used by the Docker setup is built as part of the maven lifecycle. | ||
|
|
||
| In order to start the docker environment you need to do the following | ||
| * Build the project, which will also build the docker image | ||
| * ```shell | ||
| > mvn clean install -Dmaven.javadoc.skip=true -DskipTests -DskipShade -Pdist,src | ||
| ``` | ||
| * From the project root, navigate under the docker-compose dir under the generated dist directory | ||
| * ```shell | ||
| > cd hadoop-dist/target/hadoop-<current-version>/compose/hadoop | ||
| ``` | ||
| * Start the docker environment | ||
| * ```shell | ||
| > docker-compose up -d --scale datanode=3 | ||
| ``` | ||
| * Connect to a container to execute commands | ||
| * ```shell | ||
| > docker exec -it hadoop_datanode_1 bash | ||
| bash-4.2$ hdfs dfs -mkdir /test | ||
| ``` | ||
|
|
||
| ### Config files | ||
|
|
||
| To add or remove properties from the `core-site.xml`, `hdfs-site.xml`, etc. files used in the docker environment, | ||
| simply edit the `config` file before starting the containers. The changes will be persisted in the docker environment. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one or more | ||
| # contributor license agreements. See the NOTICE file distributed with | ||
| # this work for additional information regarding copyright ownership. | ||
| # The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| # (the "License"); you may not use this file except in compliance with | ||
| # the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| HADOOP_IMAGE=apache/hadoop | ||
| HADOOP_RUNNER_VERSION=${docker.hadoop-runner.version} | ||
| HADOOP_RUNNER_IMAGE=apache/hadoop-runner |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one or more | ||
| # contributor license agreements. See the NOTICE file distributed with | ||
| # this work for additional information regarding copyright ownership. | ||
| # The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| # (the "License"); you may not use this file except in compliance with | ||
| # the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| CORE-SITE.XML_fs.default.name=hdfs://namenode | ||
| CORE-SITE.XML_fs.defaultFS=hdfs://namenode | ||
|
|
||
| HDFS-SITE.XML_dfs.namenode.rpc-address=namenode:8020 | ||
| HDFS-SITE.XML_dfs.replication=1 | ||
|
|
||
| MAPRED-SITE.XML_mapreduce.framework.name=yarn | ||
| MAPRED-SITE.XML_yarn.app.mapreduce.am.env=HADOOP_MAPRED_HOME=$HADOOP_HOME | ||
| MAPRED-SITE.XML_mapreduce.map.env=HADOOP_MAPRED_HOME=$HADOOP_HOME | ||
| MAPRED-SITE.XML_mapreduce.reduce.env=HADOOP_MAPRED_HOME=$HADOOP_HOME | ||
|
|
||
| YARN-SITE.XML_yarn.resourcemanager.hostname=resourcemanager | ||
| YARN-SITE.XML_yarn.nodemanager.pmem-check-enabled=false | ||
| YARN-SITE.XML_yarn.nodemanager.delete.debug-delay-sec=600 | ||
| YARN-SITE.XML_yarn.nodemanager.vmem-check-enabled=false | ||
| YARN-SITE.XML_yarn.nodemanager.aux-services=mapreduce_shuffle | ||
|
|
||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.maximum-applications=10000 | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.maximum-am-resource-percent=0.1 | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.resource-calculator=org.apache.hadoop.yarn.util.resource.DefaultResourceCalculator | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.root.queues=default | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.root.default.capacity=100 | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.root.default.user-limit-factor=1 | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.root.default.maximum-capacity=100 | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.root.default.state=RUNNING | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.root.default.acl_submit_applications=* | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.root.default.acl_administer_queue=* | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.node-locality-delay=40 | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.queue-mappings= | ||
| CAPACITY-SCHEDULER.XML_yarn.scheduler.capacity.queue-mappings-override.enable=false | ||
|
|
||
| LOG4J.PROPERTIES_log4j.rootLogger=INFO, stdout | ||
| LOG4J.PROPERTIES_log4j.appender.stdout=org.apache.log4j.ConsoleAppender | ||
| LOG4J.PROPERTIES_log4j.appender.stdout.layout=org.apache.log4j.PatternLayout | ||
| LOG4J.PROPERTIES_log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one or more | ||
| # contributor license agreements. See the NOTICE file distributed with | ||
| # this work for additional information regarding copyright ownership. | ||
| # The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| # (the "License"); you may not use this file except in compliance with | ||
| # the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| version: "3.8" | ||
|
|
||
| x-common-config: | ||
| &common-config | ||
| image: ${HADOOP_RUNNER_IMAGE}:${HADOOP_RUNNER_VERSION} | ||
| volumes: | ||
| - ../..:/opt/hadoop | ||
| env_file: | ||
| - ./config | ||
|
|
||
| services: | ||
| namenode: | ||
| <<: *common-config | ||
| hostname: namenode | ||
| command: ["hdfs", "namenode"] | ||
| ports: | ||
| - 9870:9870 | ||
| environment: | ||
| ENSURE_NAMENODE_DIR: "/tmp/hadoop-root/dfs/name" | ||
| datanode: | ||
| <<: *common-config | ||
| command: ["hdfs", "datanode"] | ||
| resourcemanager: | ||
| <<: *common-config | ||
| hostname: resourcemanager | ||
| command: ["yarn", "resourcemanager"] | ||
| ports: | ||
| - 8088:8088 | ||
| nodemanager: | ||
| <<: *common-config | ||
| command: ["yarn", "nodemanager"] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # Licensed to the Apache Software Foundation (ASF) under one or more | ||
| # contributor license agreements. See the NOTICE file distributed with | ||
| # this work for additional information regarding copyright ownership. | ||
| # The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| # (the "License"); you may not use this file except in compliance with | ||
| # the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| FROM apache/hadoop-runner:@docker.hadoop-runner.version@ | ||
|
|
||
| COPY . /opt/hadoop | ||
|
|
||
| WORKDIR /opt/hadoop | ||
|
|
||
| RUN sudo chown -R hadoop:users /opt/hadoop |
Uh oh!
There was an error while loading. Please reload this page.