leekeiabstraction commented on code in PR #300:
URL: https://github.com/apache/fluss-rust/pull/300#discussion_r2808096554


##########
website/docs/index.md:
##########
@@ -0,0 +1,33 @@
+---
+slug: /
+sidebar_position: 1
+title: Introduction
+---
+
+# Introduction
+
+[Apache Fluss](https://fluss.apache.org/) (incubating) is a streaming storage 
system built for real-time analytics, serving as the real-time data layer for 
Lakehouse architectures.
+
+This documentation covers the **Fluss client libraries** for Rust, Python, and 
C++, which are developed in the 
[fluss-rust](https://github.com/apache/fluss-rust) repository. These clients 
allow you to:
+
+- **Create and manage** databases, tables, and partitions
+- **Write** data to log tables (append-only) and primary key tables 
(upsert/delete)
+- **Read** data via log scanning and key lookups
+- **Integrate** with the broader Fluss ecosystem including lakehouse snapshots
+
+## Client Overview
+
+|                        | Rust                                                
       | Python                   | C++                                         
   |
+|------------------------|------------------------------------------------------------|--------------------------|------------------------------------------------|
+| **Package**            | [fluss-rs](https://crates.io/crates/fluss-rs) on 
crates.io | Build from source (PyO3) | Build from source (CMake)                
      |
+| **Async runtime**      | Tokio                                               
       | asyncio                  | Synchronous (Tokio runtime managed 
internally) |
+| **Data format**        | Arrow RecordBatch / GenericRow                      
       | PyArrow / Pandas / dict  | Arrow RecordBatch / GenericRow              
   |
+| **Log tables**         | Read + Write                                        
       | Read + Write             | Read + Write                                
   |
+| **Primary key tables** | Upsert + Delete + Lookup                            
       | Upsert + Delete + Lookup | Upsert + Delete + Lookup                    
   |
+| **Partitioned tables** | Full support                                        
       | Write support            | Full support                                
   |

Review Comment:
   You're right, updated



-- 
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]

Reply via email to