HttpFS Gateway
Ozone HttpFS can be used to integrate Ozone with other tools via REST API.
Introduction
Ozone HttpFS is forked from the HDFS HttpFS endpoint implementation (HDDS-5448). Ozone HttpFS is intended to be added optionally as a role in an Ozone cluster, similar to S3 Gateway.
HttpFS is a service that provides a REST HTTP gateway supporting File System operations (read and write). It is interoperable with the webhdfs REST HTTP API.
HttpFS can be used to access data on an Ozone cluster behind of a firewall. For example, the HttpFS service acts as a gateway and is the only system that is allowed to cross the firewall into the cluster.
HttpFS can be used to access data in Ozone using HTTP utilities (such as curl and wget) and HTTP libraries Perl from other languages than Java.
The webhdfs client FileSystem implementation can be used to access HttpFS using the Ozone filesystem command line tool (ozone fs
) as well as from Java applications using the Hadoop FileSystem Java API.
HttpFS has built-in security supporting Hadoop pseudo authentication and Kerberos SPNEGO and other pluggable authentication mechanisms. It also provides Hadoop proxy user support.
Getting started
HttpFS service itself is a Jetty based web-application that uses the Hadoop FileSystem API to talk to the cluster, it is a separate service which provides access to Ozone via a REST APIs. It should be started in addition to other regular Ozone components.
To try it out, you can start a Docker Compose dev cluster that has an HttpFS gateway.
Extract the release tarball, go to the compose/ozone
directory and start the cluster:
docker-compose up -d --scale datanode=3
You can/should find now the HttpFS gateway in docker with the name ozone_httpfs
.
HttpFS HTTP web-service API calls are HTTP REST calls that map to an Ozone file system operation. For example, using the curl
Unix command.
E.g. in the docker cluster you can execute commands like these:
-
curl -i -X PUT "http://httpfs:14000/webhdfs/v1/vol1?op=MKDIRS&user.name=hdfs"
creates a volume calledvol1
. -
$ curl 'http://httpfs-host:14000/webhdfs/v1/user/foo/README.txt?op=OPEN&user.name=foo'
returns the content of the key/user/foo/README.txt
.
Supported operations
Here are the tables of WebHDFS REST APIs and their state of support in Ozone.
File and Directory Operations
Operation | Support |
---|---|
Create and Write to a File | supported |
Append to a File | not implemented in Ozone |
Concat File(s) | not implemented in Ozone |
Open and Read a File | supported |
Make a Directory | supported |
Create a Symbolic Link | not implemented in Ozone |
Rename a File/Directory | supported (with limitations) |
Delete a File/Directory | supported |
Truncate a File | not implemented in Ozone |
Status of a File/Directory | supported |
List a Directory | supported |
List a File | supported |
Iteratively List a Directory | supported |
Other File System Operations
Operation | Support |
---|---|
Get Content Summary of a Directory | supported |
Get Quota Usage of a Directory | supported |
Set Quota | not implemented in Ozone FileSystem API |
Set Quota By Storage Type | not implemented in Ozone |
Get File Checksum | unsupported (to be fixed) |
Get Home Directory | unsupported (to be fixed) |
Get Trash Root | unsupported |
Set Permission | not implemented in Ozone FileSystem API |
Set Owner | not implemented in Ozone FileSystem API |
Set Replication Factor | not implemented in Ozone FileSystem API |
Set Access or Modification Time | not implemented in Ozone FileSystem API |
Modify ACL Entries | not implemented in Ozone FileSystem API |
Remove ACL Entries | not implemented in Ozone FileSystem API |
Remove Default ACL | not implemented in Ozone FileSystem API |
Remove ACL | not implemented in Ozone FileSystem API |
Set ACL | not implemented in Ozone FileSystem API |
Get ACL Status | not implemented in Ozone FileSystem API |
Check access | not implemented in Ozone FileSystem API |