diff --git a/delivery/overview.mdx b/delivery/overview.mdx
index 29d9efc3..7af6bdd9 100644
--- a/delivery/overview.mdx
+++ b/delivery/overview.mdx
@@ -134,7 +134,7 @@ File sink currently supports only append-only mode, so please change the query t
## Batching strategy for file sink
-Batching strategy for file sink is available since version 2.1.
+Added in version 2.1.
RisingWave implements batching strategies for file sinks to optimize file management by preventing the generation of numerous small files. The batching strategy is available for Parquet, JSON, and CSV encode.
diff --git a/ingestion/overview.mdx b/ingestion/overview.mdx
index 93175770..64f95d1b 100644
--- a/ingestion/overview.mdx
+++ b/ingestion/overview.mdx
@@ -133,7 +133,7 @@ RisingWave supports reading data from file sources including AWS S3, GCS, and Az
### Batch reading from file source
-Batch reading from file source is available since version 2.1.
+Added in version 2.1.
To read data in batch from file sources, you need to create a materialized view from the source or create a table with the appropriate connector. You can also directly query the file source. Below are examples using AWS S3.
diff --git a/mint.json b/mint.json
index fd00dae0..6af7bb9c 100644
--- a/mint.json
+++ b/mint.json
@@ -424,18 +424,18 @@
"pages": [
"processing/overview",
{
- "group": "SQL",
+ "group": "SQL patterns",
"pages": [
"processing/sql/dynamic-filters",
"processing/sql/temporal-filters",
"processing/sql/joins",
"processing/sql/time-windows",
"processing/sql/top-n-by-group",
- "processing/sql/transactions",
"processing/sql/sql-references"
]
},
"processing/deletes-and-updates",
+ "processing/transactions",
"processing/maintain-wide-table-with-table-sinks",
"processing/watermarks",
"processing/emit-on-window-close",
diff --git a/operate/meta-backup.mdx b/operate/meta-backup.mdx
index ecf7afb1..cf65499b 100644
--- a/operate/meta-backup.mdx
+++ b/operate/meta-backup.mdx
@@ -147,35 +147,3 @@ Parameters to `risectl meta restore-meta` should be:
* `--hummock-storage-url s3://state_bucket`. Note that the `hummock+` prefix is stripped.
* `--hummock-storage-directory state_data`.
4. Configure meta service to use the new meta store.
-
-## Access historical data backed up by meta snapshot
-
-Meta snapshot is used to support historical data access, also known as time travel query.
-
-Use the following steps to perform a time travel query.
-
-1. List all valid historical point-in-time (i.e., epoch) for a table. For example to query the table of id 6:
-```sql
-SELECT state_table_info->'6'->>'safeEpoch' as safe_epoch,state_table_info->'6'->>'committedEpoch' committed_epoch from rw_meta_snapshot;
-```
-Example output:
-```bash
- safe_epoch | committed_epoch
------------------+------------------
-7039353459507200 | 7039354678542336
-7039354678542346 | 7039622397886464
-```
-Choose an epoch to query. Valid epochs are within range \[`safe_epoch`,`committed_epoch`\], e.g. \[7039353459507200, 7039354678542336\] or \[7039354678542346, 7039622397886464\].
-2. Set session config `QUERY_EPOCH`. By default, it's 0, which means disabling historical query.
-```sql
-SET QUERY_EPOCH=[chosen epoch];
-```
-Then, batch queries in this session return data as of this epoch instead of the latest one.
-3. Disable historical query.
-```sql
-SET QUERY_EPOCH=0;
-```
-
-
-RisingWave only supports historical data access at a specific point in time backed up by at least one meta snapshot.
-
diff --git a/processing/sql/sql-references.mdx b/processing/sql/sql-references.mdx
index 72fcd396..b65f5dd4 100644
--- a/processing/sql/sql-references.mdx
+++ b/processing/sql/sql-references.mdx
@@ -1,4 +1,4 @@
---
-title: SQL references
+title: Full SQL references
url: /sql/overview
---
\ No newline at end of file
diff --git a/processing/sql/transactions.mdx b/processing/transactions.mdx
similarity index 81%
rename from processing/sql/transactions.mdx
rename to processing/transactions.mdx
index 36df6a63..ab8a1449 100644
--- a/processing/sql/transactions.mdx
+++ b/processing/transactions.mdx
@@ -8,7 +8,7 @@ Transactions in databases refer to logical units of work that consist of one or
RisingWave supports read-only transactions, where all reads within a transaction are executed against the consistent Hummock snapshot. Hummock is the LSM-Tree-based storage engine in RisingWave that is specifically optimized for streaming workloads.
-To initiate a transaction, use either the `START TRANSACTION READ ONLY` or `BEGIN READ ONLY` command. Subsequently, you can execute queries to read data from the consistent snapshot. To finalize the transaction and submit the queries as a single unit, use the `COMMIT` command.
+To initiate a transaction, use either the [`START TRANSACTION READ ONLY`](/sql/commands/sql-start-transaction) or [`BEGIN READ ONLY`](/sql/commands/sql-begin) command. Subsequently, you can execute queries to read data from the consistent snapshot. To finalize the transaction and submit the queries as a single unit, use the [`COMMIT`](/sql/commands/sql-commit) command.
Please note that data modifications are not allowed while a transaction is initiated but not yet committed. The statements listed below are not allowed within a transaction:
diff --git a/sql/commands/sql-begin.mdx b/sql/commands/sql-begin.mdx
index bdbd2137..bc619682 100644
--- a/sql/commands/sql-begin.mdx
+++ b/sql/commands/sql-begin.mdx
@@ -3,7 +3,7 @@ title: "BEGIN"
description: "RisingWave supports read-only transactions. You can use the `BEGIN READ ONLY` command to start a read-only transaction."
---
-For more information about transactions in RisingWave, see [Transactions](/processing/sql/transactions).
+For more information about transactions in RisingWave, see [Transactions](/processing/transactions).
The `BEGIN` command starts the read-write transaction mode, which is not supported yet in RisingWave. For compatibility reasons, this command will still succeed but no transaction is actually started. That is why you need to specify the `READ ONLY` option to start a transaction in read-only mode.
@@ -23,7 +23,7 @@ BEGIN
## Related topics
-
diff --git a/sql/commands/sql-commit.mdx b/sql/commands/sql-commit.mdx
index d17cd774..f36c6559 100644
--- a/sql/commands/sql-commit.mdx
+++ b/sql/commands/sql-commit.mdx
@@ -3,7 +3,7 @@ title: "COMMIT"
description: "RisingWave supports read-only transactions. You can use the `COMMIT` command to commit the current transaction."
---
-For more information about transactions in RisingWave, see [Transactions](/processing/sql/transactions).
+For more information about transactions in RisingWave, see [Transactions](/processing/transactions).
You can start a read-only transaction by using the `BEGIN READ ONLY` or `START TRANSACTION READ ONLY` command.
@@ -28,7 +28,7 @@ COMMIT
title="Transactions"
icon="rotate"
iconType="solid"
- href="/processing/sql/transactions"
+ href="/processing/transactions"
horizontal
/>