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.
Once the default Filesystem has been setup, users can run commands like ls, put, mkdir, etc.
For example,
{{<highlightbash>}}
hdfs dfs -ls /
{{</highlight>}}
or
{{<highlightbash>}}
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.