From f4792f7e75905424c75f2c4772b6ee1667b03e80 Mon Sep 17 00:00:00 2001 From: Keith Lee Date: Thu, 22 Jan 2026 16:10:56 +0000 Subject: [PATCH 1/2] Add client feature support matrix documentation --- website/docs/apis/feature-support-matrix.md | 114 ++++++++++++++++++++ website/docs/apis/java-client.md | 2 +- 2 files changed, 115 insertions(+), 1 deletion(-) create mode 100644 website/docs/apis/feature-support-matrix.md diff --git a/website/docs/apis/feature-support-matrix.md b/website/docs/apis/feature-support-matrix.md new file mode 100644 index 0000000000..6d9ef74eed --- /dev/null +++ b/website/docs/apis/feature-support-matrix.md @@ -0,0 +1,114 @@ +--- +title: "Client Feature Support Matrix" +sidebar_position: 1 +--- + +# Client Feature Support Matrix + +Fluss has a rich set of features and native data types available to users. The following tables summarize the features available across various Fluss clients. + +## Data Operations + +These data operations are available under TableAppend, TableScan, TableUpsert and TableLookup interfaces. + +| Table Type | Operations | [Java Client](/apis/java-client.md) | Rust Client | Python Client | C++ Client | +|--------------|----------------------------|-------------------------------------|-------------|---------------|------------| +| Log | Append | ✔️ | ✔️ | ✔️ | ✔️ | +| Log | Typed Append | ✔️ | | | | +| Log | Scan | ✔️ | ✔️ | ✔️ | ✔️ | +| Log | Scan with Projection | ✔️ | ✔️ | ✔️ | ✔️ | +| Log | Typed Scan | ✔️ | | | | +| Log | Batch Scan with Limit | ✔️ | | | | +| Primary Key | Upsert | ✔️ | ✔️ | | | +| Primary Key | Upsert with Partial Update | ✔️ | ✔️ | | | +| Primary Key | Typed Upsert | ✔️ | | | | +| Primary Key | Delete | ✔️ | ✔️ | | | +| Primary Key | Lookup | ✔️ | ✔️ | | | +| Primary Key | Prefix Lookup | ✔️ | | | | +| Primary Key | Typed Lookup | ✔️ | | | | +| Primary Key | Batch Scan with Limit | ✔️ | | | | +| Primary Key | Batch Scan (Snapshot) | ✔️ | | | | + +:::tip +For more details, see [Table Overview](/table-design/overview.md). +::: + +## Data Types + +Client support for Fluss data types are as follows: + +| DataType | [Java Client](/apis/java-client.md) | Rust Client | Python Client | C++ Client | +|-----------------------------------------------------------------|-------------------------------------|-------------|---------------|------------| +| BOOLEAN | ✔️ | ✔️ | ✔️ | ✔️ | +| TINYINT | ✔️ | ✔️ | ✔️ | ✔️ | +| SMALLINT | ✔️ | ✔️ | ✔️ | ✔️ | +| INT | ✔️ | ✔️ | ✔️ | ✔️ | +| BIGINT | ✔️ | ✔️ | ✔️ | ✔️ | +| FLOAT | ✔️ | ✔️ | ✔️ | ✔️ | +| DOUBLE | ✔️ | ✔️ | ✔️ | ✔️ | +| CHAR(n) | ✔️ | ✔️ | ✔️ | ✔️ | +| STRING | ✔️ | ✔️ | ✔️ | ✔️ | +| DECIMAL(p, s) | ✔️ | ✔️ | ✔️ | | +| DATE | ✔️ | ✔️ | ✔️ | ✔️ | +| TIME | ✔️ | ✔️ | ✔️ | ✔️ | +| TIME(p) | ✔️ | ✔️ | ✔️ | ✔️ | +| TIMESTAMP | ✔️ | ✔️ | ✔️ | ✔️ | +| TIMESTAMP(p) | ✔️ | ✔️ | ✔️ | ✔️ | +| TIMESTAMP_LTZ | ✔️ | ✔️ | ✔️ | ✔️ | +| TIMESTAMP_LTZ(p) | ✔️ | ✔️ | ✔️ | ✔️ | +| BINARY(n) | ✔️ | ✔️ | ✔️ | ✔️ | +| BYTES | ✔️ | ✔️ | ✔️ | ✔️ | +| ARRAY\ | ✔️ | | | | +| MAP\ | ✔️ | | | | +| ROW\
ROW\ | ✔️ | | | | + +:::tip +For more details, see [Data Types](table-design/data-types.md). +::: + +## Admin Operations + +Admin operations are available under FlussAdmin interface. + +| Entity | Operations | [Java Client](/apis/java-client.md) | Rust Client | Python Client | C++ Client | +|-----------|------------------------|-------------------------------------|-------------|---------------|------------| +| Database | CreateDatabase | ✔️ | ✔️ | | | +| Database | DropDatabase | ✔️ | ✔️ | | | +| Database | DatabaseExists | ✔️ | ✔️ | | | +| Database | GetDatabaseInfo | ✔️ | ✔️ | | | +| Database | ListDatabases | ✔️ | ✔️ | | | +| Table | AlterTable | ✔️ | | | | +| Table | CreateTable | ✔️ | ✔️ | ✔️ | ✔️ | +| Table | DropTable | ✔️ | ✔️ | | ✔️ | +| Table | GetTableSchema | ✔️ | | | | +| Table | GetTableInfo | ✔️ | ✔️ | ✔️ | ✔️ | +| Table | ListTables | ✔️ | ✔️ | | | +| Partition | CreatePartition | ✔️ | | | | +| Partition | DropPartition | ✔️ | | | | +| Partition | ListPartitionInfos | ✔️ | | | | +| Snapshot | GetKvSnapshotMetadata | ✔️ | | | | +| Snapshot | GetLatestKvSnapshots | ✔️ | | | | +| Snapshot | GetLatestLakeSnapshot | ✔️ | ✔️ | ✔️ | ✔️ | +| Bucket | ListOffsets | ✔️ | ✔️ | | ✔️ | +| Cluster | AlterClusterConfigs | ✔️ | | | | +| Cluster | DescribeClusterConfigs | ✔️ | | | | +| Cluster | CancelRebalance | ✔️ | | | | +| Cluster | Rebalance | ✔️ | | | | +| Cluster | ListRebalanceProgress | ✔️ | | | | +| Server | AddServerTag | ✔️ | | | | +| Server | RemoveServerTag | ✔️ | | | | +| ACL | CreateAcls | ✔️ | | | | +| ACL | DropAcls | ✔️ | | | | +| ACL | ListAcls | ✔️ | | | | + +## Data Lake Formats + +| Format | [Java Client](/apis/java-client.md) | Rust Client | Python Client | C++ Client | +|---------|-------------------------------------|-------------|---------------|------------| +| Iceberg | ✔️ | | | | +| Lance | ✔️ | ✔️ | | | +| Paimon | ✔️ | | | | + +:::tip +For more details, see [Streaming Lakehouse](/streaming-lakehouse/overview.md). +::: \ No newline at end of file diff --git a/website/docs/apis/java-client.md b/website/docs/apis/java-client.md index 3238137df2..4280307eca 100644 --- a/website/docs/apis/java-client.md +++ b/website/docs/apis/java-client.md @@ -1,6 +1,6 @@ --- title: "Java Client" -sidebar_position: 1 +sidebar_position: 2 --- # Fluss Java Client From f0fa892ee186546617698084382d7b172196c9fd Mon Sep 17 00:00:00 2001 From: Jark Wu Date: Fri, 23 Jan 2026 15:02:27 +0800 Subject: [PATCH 2/2] Update sidebar positions in documentation for feature support matrix and Java client --- .../{feature-support-matrix.md => client-support-matrix.md} | 4 ++-- website/docs/apis/java-client.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename website/docs/apis/{feature-support-matrix.md => client-support-matrix.md} (99%) diff --git a/website/docs/apis/feature-support-matrix.md b/website/docs/apis/client-support-matrix.md similarity index 99% rename from website/docs/apis/feature-support-matrix.md rename to website/docs/apis/client-support-matrix.md index 6d9ef74eed..bcf73e3ff5 100644 --- a/website/docs/apis/feature-support-matrix.md +++ b/website/docs/apis/client-support-matrix.md @@ -1,6 +1,6 @@ --- -title: "Client Feature Support Matrix" -sidebar_position: 1 +title: "Client Support Matrix" +sidebar_position: 2 --- # Client Feature Support Matrix diff --git a/website/docs/apis/java-client.md b/website/docs/apis/java-client.md index 4280307eca..3238137df2 100644 --- a/website/docs/apis/java-client.md +++ b/website/docs/apis/java-client.md @@ -1,6 +1,6 @@ --- title: "Java Client" -sidebar_position: 2 +sidebar_position: 1 --- # Fluss Java Client