You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The simplest way to try out ozone is to run ozone via Docker. Apache publishes docker images of ozone to make it easy to try out ozone.

DockerHub
docker pull apache/ozone
docker-compose build
docker-compose up -d --scale datanode=3

At this point you have a running Ozone cluster with three data nodes. You can run standard Docker commands like ps to verify that you have  running cluster.

You can ssh into one of the running containers and try out various commands.

ssh
docker-compose exec datanode bash


You can even try out some of the built-in load generator for Ozone. 

Freon
ozone freon rk

Freon is a load generator for Ozone and you quit running it via CTRL-C any time.


Once you have seen how to run the cluster, you can explore by running more commands and when you are down shut down the docker cluster by running

Shutdown cluster
docker-compose down


Thank you for trying out Ozone cluster.


  • No labels