-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
### What changes were proposed in this pull request? This PR proposes to add docs for fileset catalog. ### Why are the changes needed? Fix: #2695 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? No.
- Loading branch information
Showing
3 changed files
with
484 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
title: "Hadoop catalog" | ||
slug: /hadoop-catalog | ||
date: 2024-4-2 | ||
keyword: hadoop catalog | ||
license: "Copyright 2024 Datastrato Pvt Ltd. | ||
This software is licensed under the Apache License version 2." | ||
--- | ||
|
||
## Introduction | ||
|
||
Hadoop catalog is a fileset catalog that using Hadoop Compatible File System (HCFS) to manage | ||
the storage location of the fileset. Currently, it supports local filesystem and HDFS. For | ||
object storage like S3, GCS, and Azure Blob Storage, you can put the hadoop object store jar like | ||
hadoop-aws into the `$GRAVITINO_HOME/catalogs/hadoop/libs` directory to enable the support. | ||
Gravitino itself hasn't yet tested the object storage support, so if you have any issue, | ||
please create an [issue](https://github.com/datastrato/gravitino/issues). | ||
|
||
Note that Gravitino uses Hadoop 3 dependencies to build Hadoop catalog. Theoretically, it should be | ||
compatible with both Hadoop 2.x and 3.x, since Gravitino doesn't leverage any new features in | ||
Hadoop 3. If there's any compatibility issue, please create an [issue](https://github.com/datastrato/gravitino/issues). | ||
|
||
## Catalog | ||
|
||
### Catalog properties | ||
|
||
| Property Name | Description | Default Value | Required | Since Version | | ||
|---------------|-------------------------------------------------|---------------|----------|---------------| | ||
| `location` | The storage location managed by Hadoop catalog. | (none) | No | 0.5.0 | | ||
|
||
### Catalog operations | ||
|
||
Refer to [Catalog operations](./manage-fileset-metadata-using-gravitino.md#catalog-operations) for more details. | ||
|
||
## Schema | ||
|
||
### Schema capabilities | ||
|
||
The Hadoop catalog supports creating, updating, deleting, and listing schema. | ||
|
||
### Schema properties | ||
|
||
| Property name | Description | Default value | Required | Since Version | | ||
|---------------|------------------------------------------------|---------------|----------|---------------| | ||
| `location` | The storage location managed by Hadoop schema. | (none) | No | 0.5.0 | | ||
|
||
### Schema operations | ||
|
||
Refer to [Schema operation](./manage-fileset-metadata-using-gravitino.md#schema-operations) for more details. | ||
|
||
## Fileset | ||
|
||
### Fileset capabilities | ||
|
||
- The Hadoop catalog supports creating, updating, deleting, and listing filesets. | ||
|
||
### Fileset properties | ||
|
||
None. | ||
|
||
### Fileset operations | ||
|
||
Refer to [Fileset operations](./manage-fileset-metadata-using-gravitino.md#fileset-operations) for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.