Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions hadoop-ozone/dist/src/main/compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,9 @@ docker-compose scale datanode=5
```

Usually the key webui ports are published on the docker host.

## Known issues

The base image used here is apache/hadoop-runner, which runs with JDK8 by default.
You may run with JDK11 by specify apache/hadoop-runner:jdk11 as base image in simple mode.
But in secure mode, JDK 11 is not fully supported yet due to JDK8 dependencies from hadoop-common jars.
6 changes: 3 additions & 3 deletions hadoop-ozone/dist/src/main/compose/ozone/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
version: "3"
services:
datanode:
image: apache/hadoop-runner
image: apache/hadoop-runner:jdk11
privileged: true #required by the profiler
volumes:
- ../..:/opt/hadoop
Expand All @@ -28,7 +28,7 @@ services:
env_file:
- ./docker-config
om:
image: apache/hadoop-runner
image: apache/hadoop-runner:jdk11
privileged: true #required by the profiler
volumes:
- ../..:/opt/hadoop
Expand All @@ -41,7 +41,7 @@ services:
- ./docker-config
command: ["/opt/hadoop/bin/ozone","om"]
scm:
image: apache/hadoop-runner
image: apache/hadoop-runner:jdk11
privileged: true #required by the profiler
volumes:
- ../..:/opt/hadoop
Expand Down