Skip to content

Commit ba675ba

Browse files
jerryshaoyuqi1129
andauthored
[Minor] fix(docs): Change Java doc link to 0.5.0 (#3160)
### What changes were proposed in this pull request? Change Java doc link to 0.5.0. ### Why are the changes needed? Release 0.5.0 is going to release. ### Does this PR introduce _any_ user-facing change? N/A. ### How was this patch tested? N/A. Co-authored-by: Qi Yu <[email protected]>
1 parent f9fcc6c commit ba675ba

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ REST API and the Java SDK. You can use either to manage metadata. See
6060

6161
Also, you can find the complete REST API definition in
6262
[Gravitino Open API](./api/rest/gravitino-rest-api), and the
63-
Java SDK definition in [Gravitino Javadoc](pathname:///docs/0.4.0/api/java/index.html).
63+
Java SDK definition in [Gravitino Javadoc](pathname:///docs/0.5.0/api/java/index.html).
6464

6565
Gravitino provides a web UI to manage the metadata. Visit the web UI in the browser via `http://<ip-address>:8090`. See [Gravitino web UI](./webui.md) for details.
6666

@@ -138,7 +138,7 @@ Gravitino provides several ways to configure and manage the Gravitino server. Se
138138

139139
* [Gravitino Open API](./api/rest/gravitino-rest-api): provides the complete Open API definition of
140140
Gravitino.
141-
* [Gravitino Javadoc](pathname:///docs/0.4.0/api/java/index.html): provides the Javadoc for the Gravitino API.
141+
* [Gravitino Javadoc](pathname:///docs/0.5.0/api/java/index.html): provides the Javadoc for the Gravitino API.
142142

143143
### Development guides
144144

docs/manage-relational-metadata-using-gravitino.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ The following types that Gravitino supports:
667667
| Struct | `Types.StructType.of([Types.StructType.Field.of(name, type, nullable)])` | `{"type": "struct", "fields": [JSON StructField, {"name": string, "type": type JSON, "nullable": JSON Boolean, "comment": string}]}` | Struct type, indicate a struct of fields |
668668
| Union | `Types.UnionType.of([type1, type2, ...])` | `{"type": "union", "types": [type JSON, ...]}` | Union type, indicates a union of types |
669669

670-
The related java doc is [here](pathname:///docs/0.4.0/api/java/com/datastrato/gravitino/rel/types/Type.html).
670+
The related java doc is [here](pathname:///docs/0.5.0/api/java/com/datastrato/gravitino/rel/types/Type.html).
671671

672672
##### Unparsed type
673673

@@ -738,10 +738,10 @@ In addition to the basic settings, Gravitino supports the following features:
738738

739739
| Feature | Description | Java doc |
740740
|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
741-
| Table partitioning | Equal to `PARTITION BY` in Apache Hive, It is a partitioning strategy that is used to split a table into parts based on partition keys. Some table engine may not support this feature | [Partition](pathname:///docs/0.4.0/api/java/com/datastrato/gravitino/dto/rel/partitioning/Partitioning.html) |
742-
| Table bucketing | Equal to `CLUSTERED BY` in Apache Hive, Bucketing a.k.a (Clustering) is a technique to split the data into more manageable files/parts, (By specifying the number of buckets to create). The value of the bucketing column will be hashed by a user-defined number into buckets. | [Distribution](pathname:///docs/0.4.0/api/java/com/datastrato/gravitino/rel/expressions/distributions/Distribution.html) |
743-
| Table sort ordering | Equal to `SORTED BY` in Apache Hive, sort ordering is a method to sort the data in specific ways such as by a column or a function, and then store table data. it will highly improve the query performance under certain scenarios. | [SortOrder](pathname:///docs/0.4.0/api/java/com/datastrato/gravitino/rel/expressions/sorts/SortOrder.html) |
744-
| Table indexes | Equal to `KEY/INDEX` in MySQL , unique key enforces uniqueness of values in one or more columns within a table. It ensures that no two rows have identical values in specified columns, thereby facilitating data integrity and enabling efficient data retrieval and manipulation operations. | [Index](pathname:///docs/0.4.0/api/java/com/datastrato/gravitino/rel/indexes/Index.html) |
741+
| Table partitioning | Equal to `PARTITION BY` in Apache Hive, It is a partitioning strategy that is used to split a table into parts based on partition keys. Some table engine may not support this feature | [Partition](pathname:///docs/0.5.0/api/java/com/datastrato/gravitino/dto/rel/partitioning/Partitioning.html) |
742+
| Table bucketing | Equal to `CLUSTERED BY` in Apache Hive, Bucketing a.k.a (Clustering) is a technique to split the data into more manageable files/parts, (By specifying the number of buckets to create). The value of the bucketing column will be hashed by a user-defined number into buckets. | [Distribution](pathname:///docs/0.5.0/api/java/com/datastrato/gravitino/rel/expressions/distributions/Distribution.html) |
743+
| Table sort ordering | Equal to `SORTED BY` in Apache Hive, sort ordering is a method to sort the data in specific ways such as by a column or a function, and then store table data. it will highly improve the query performance under certain scenarios. | [SortOrder](pathname:///docs/0.5.0/api/java/com/datastrato/gravitino/rel/expressions/sorts/SortOrder.html) |
744+
| Table indexes | Equal to `KEY/INDEX` in MySQL , unique key enforces uniqueness of values in one or more columns within a table. It ensures that no two rows have identical values in specified columns, thereby facilitating data integrity and enabling efficient data retrieval and manipulation operations. | [Index](pathname:///docs/0.5.0/api/java/com/datastrato/gravitino/rel/indexes/Index.html) |
745745

746746
For more information, please see the related document on [partitioning, bucketing, sorting, and indexes](table-partitioning-bucketing-sort-order-indexes.md).
747747

0 commit comments

Comments
 (0)