Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This is the traditional method. You need a build the projects as defined in Please follow the build instructions from the Development cluster with docker page . Please follow the build instruction from thereto build the Ozone tarball.

You can start it by going to the hadoop-dist/target/hadoop-3.12.0-alpha SNAPSHOT directory and start the cluster.

...

There is a detailed documentation about the configuration of Ozone cluster. But If you would like to getting get started, just save the following snippet to the etc/hadoop/ozone-site.xml file (inside your hadoop distribution)

Code Block
<properties>
<property><name>ozone.ksmom.address</name><value>localhost</value></property>
<property><name>ozone.scm.datanode.id</name><value>/tmp/datanode.id</value></property>
<property><name>ozone.scm.names</name><value>localhost</value></property>
<property><name>ozone.handler.type</name><value>distributed</value></property>
<property><name>ozone.container.metadata.dirs</name><value>/tmp/metadata</value></property>
<property><name>ozone.scm.block.client.address</name><value>localhost</value></property>
<property><name>ozone.scm.client.address</name><value>localhost</value></property>
<property><name>ozone.enabled</name><value>True</value></property>
</properties>

...