luoyuxia commented on code in PR #1924: URL: https://github.com/apache/fluss/pull/1924#discussion_r2485465172
########## website/docs/quickstart/_shared-streaming-into-fluss.md: ########## @@ -0,0 +1,57 @@ +### Streaming into Fluss datalake-enabled tables + +By default, tables are created with data lake integration disabled, meaning the Lakehouse Tiering Service will not tier the table's data to the data lake. + +To enable lakehouse functionality as a tiered storage solution for a table, you must create the table with the configuration option `table.datalake.enabled = true`. +Return to the `SQL client` and execute the following SQL statement to create a table with data lake integration enabled: +```sql title="Flink SQL" +CREATE TABLE datalake_enriched_orders ( Review Comment: It's pity that `CREATE TABLE datalake_enriched_orders` and INSERT INTO datalake_enriched_orders can't shared by paimon and iceberg. Union read in batch mode for pk table is not supported. In iceberg, you can only use appendonly table. -- 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]
