title: Ozone File System date: 2017-09-14 menu: main menu: main: parent: Client

There are many Hadoop compatible files systems under Hadoop. Hadoop compatible file systems ensures that storage backends like Ozone can easily be integrated into Hadoop eco-system.

Setting up the Ozone file system

To create an ozone file system, we have to choose a bucket where the file system would live. This bucket will be used as the backend store for OzoneFileSystem. All the files and directories will be stored as keys in this bucket.

Please run the following commands to create a volume and bucket, if you don't have them already.

{{< highlight bash >}} ozone sh volume create /volume ozone sh bucket create /volume/bucket {{< /highlight >}}

Once this is created, please make sure that bucket exists via the listVolume or listBucket commands.

Please add the following entry to the core-site.xml.

{{< highlight xml >}} fs.o3.impl org.apache.hadoop.fs.ozone.OzoneFileSystem fs.default.name o3://localhost:9864/volume/bucket {{< /highlight >}}

This will make this bucket to be the default file system for HDFS dfs commands and register the o3 file system type..

You also need to add the ozone-filesystem.jar file to the classpath:

{{< highlight bash >}} export HADOOP_CLASSPATH=/opt/ozone/share/hadoop/ozonefs/hadoop-ozone-filesystem.jar:$HADOOP_CLASSPATH {{< /highlight >}}

Once the default Filesystem has been setup, users can run commands like ls, put, mkdir, etc. For example,

{{< highlight bash >}} hdfs dfs -ls / {{< /highlight >}}

or

{{< highlight bash >}} hdfs dfs -mkdir /users {{< /highlight >}}

Or put command etc. In other words, all programs like Hive, Spark, and Distcp will work against this file system. Please note that any keys created/deleted in the bucket using methods apart from OzoneFileSystem will show up as diectories and files in the Ozone File System.