danhuawang commented on code in PR #9173: URL: https://github.com/apache/gravitino/pull/9173#discussion_r2606284403
########## docs/lakehouse-generic-lance-table.md: ########## @@ -0,0 +1,294 @@ +--- +title: "Lance table support" +slug: /lance-table-support +keywords: +- lakehouse +- lance +- metadata +- generic catalog +license: "This software is licensed under the Apache License version 2." +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + + +## Overview + +This document describes how to use Apache Gravitino to manage a generic lakehouse catalog using Lance as the underlying table format. + + +## Table Management + +### Supported Operations + +For Lance tables in a Generic Lakehouse Catalog, the following table summarizes supported operations: + +| Operation | Support Status | +|-----------|-----------------| +| List | ✅ Full | +| Load | ✅ Full | +| Alter | Not support now | +| Create | ✅ Full | +| Register | ✅ Full | +| Drop | ✅ Full | +| Purge | ✅ Full | + +:::note Feature Limitations +- **Partitioning:** Not currently supported +- **Sort Orders:** Not currently supported +- **Distributions:** Not currently supported +- **Indexes:** Not currently supported + ::: + Review Comment: Can we also add note: `version` field is null, not supported -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
