2018-05-22 17:49:10 +00:00
|
|
|
|
---
|
|
|
|
|
title: Ozone Overview
|
|
|
|
|
menu: main
|
|
|
|
|
weight: -10
|
|
|
|
|
---
|
2017-10-02 17:52:05 +00:00
|
|
|
|
<!---
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License. See accompanying LICENSE file.
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
Ozone is an Object store for Apache Hadoop. It aims to scale to billions of
|
|
|
|
|
keys.
The following is a high-level overview of the core components of Ozone.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
![Ozone Architecture Overview](./OzoneOverview.png)
|
2017-10-02 17:52:05 +00:00
|
|
|
|
|
|
|
|
|
The main elements of Ozone are
:
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
## Clients
|
|
|
|
|
|
2018-02-15 21:50:48 +00:00
|
|
|
|
Ozone ships with a set of ready-made clients. They are
Ozone CLI and Freon.
|
2017-10-02 17:52:05 +00:00
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
* [Ozone CLI](./OzoneCommandShell.html) is the command line interface like 'hdfs' command.
|
|
|
|
|
|
|
|
|
|
* Freon is a load generation tool for Ozone.
|
2017-10-02 17:52:05 +00:00
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
## REST Handler
|
2017-10-02 17:52:05 +00:00
|
|
|
|
|
|
|
|
|
Ozone provides both an RPC (Remote Procedure Call) as well as a REST
|
|
|
|
|
(Representational State Transfer) style interface. This allows clients to be
|
|
|
|
|
written in many languages quickly. Ozone strives to maintain a similar
|
|
|
|
|
interface between REST and RPC. The Rest handler offers the REST protocol
|
|
|
|
|
services of Ozone.
|
|
|
|
|
|
|
|
|
|
For most purposes, a client can make one line change to switch from REST to
|
|
|
|
|
RPC or vice versa.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
## Ozone File System
|
|
|
|
|
|
2017-10-02 17:52:05 +00:00
|
|
|
|
Ozone file system (TODO: Add documentation) is a Hadoop compatible file system.
|
|
|
|
|
This is the important user-visible component of ozone.
|
|
|
|
|
This allows Hadoop services and applications like Hive/Spark to run against
|
|
|
|
|
Ozone without any change.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
## Ozone Client
|
|
|
|
|
|
2017-10-02 17:52:05 +00:00
|
|
|
|
This is like DFSClient in HDFS. This acts as the standard client to talk to
|
|
|
|
|
Ozone. All other components that we have discussed so far rely on Ozone client
|
|
|
|
|
(TODO: Add Ozone client documentation).
|
|
|
|
|
|
2018-07-06 19:09:05 +00:00
|
|
|
|
## Ozone Manager
|
2018-05-22 17:49:10 +00:00
|
|
|
|
|
2018-07-06 19:09:05 +00:00
|
|
|
|
Ozone Manager (OM) takes care of the Ozone's namespace.
|
|
|
|
|
All ozone entities like volumes, buckets and keys are managed by OM
|
|
|
|
|
(TODO: Add OM documentation). In short, OM is the metadata manager for Ozone.
|
|
|
|
|
OM talks to blockManager(SCM) to get blocks and passes it on to the Ozone
|
2017-10-02 17:52:05 +00:00
|
|
|
|
client. Ozone client writes data to these blocks.
|
2018-07-06 19:09:05 +00:00
|
|
|
|
OM will eventually be replicated via Apache Ratis for High Availability.
|
2017-10-02 17:52:05 +00:00
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
## Storage Container Manager
|
2017-10-02 17:52:05 +00:00
|
|
|
|
Storage Container Manager (SCM) is the block and cluster manager for Ozone.
|
|
|
|
|
SCM along with data nodes offer a service called 'containers'.
|
|
|
|
|
A container is a group unrelated of blocks that are managed together
|
|
|
|
|
as a single entity.
|
|
|
|
|
|
|
|
|
|
SCM offers the following abstractions.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
![SCM Abstractions](../SCMBlockDiagram.png)
|
|
|
|
|
|
|
|
|
|
### Blocks
|
|
|
|
|
|
2017-10-02 17:52:05 +00:00
|
|
|
|
Blocks are like blocks in HDFS. They are replicated store of data.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
### Containers
|
|
|
|
|
|
2017-10-02 17:52:05 +00:00
|
|
|
|
A collection of blocks replicated and managed together.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
### Pipelines
|
|
|
|
|
|
2017-10-02 17:52:05 +00:00
|
|
|
|
SCM allows each container to choose its method of replication.
|
|
|
|
|
For example, a container might decide that it needs only one copy of a block
|
|
|
|
|
and might choose a stand-alone pipeline. Another container might want to have
|
|
|
|
|
a very high level of reliability and pick a RATIS based pipeline. In other
|
|
|
|
|
words, SCM allows different kinds of replication strategies to co-exist.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
### Pools
|
|
|
|
|
|
2017-10-02 17:52:05 +00:00
|
|
|
|
A group of data nodes is called a pool. For scaling purposes,
|
|
|
|
|
we define a pool as a set of machines. This makes management of datanodes
|
|
|
|
|
easier.
|
|
|
|
|
|
2018-05-22 17:49:10 +00:00
|
|
|
|
### Nodes
|
|
|
|
|
|
2017-10-02 17:52:05 +00:00
|
|
|
|
The data node where data is stored.
|