This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new c3d6c30b9d [docs] Fixing the discrepancies inside the docs with
respect to procedure parallelism (#7198)
c3d6c30b9d is described below
commit c3d6c30b9ddedba97c82ff4a29f92c31e3902aa3
Author: junmuz <[email protected]>
AuthorDate: Sat Feb 28 02:17:04 2026 +0000
[docs] Fixing the discrepancies inside the docs with respect to procedure
parallelism (#7198)
---
docs/content/flink/procedures.md | 8 ++++----
docs/content/spark/procedures.md | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/content/flink/procedures.md b/docs/content/flink/procedures.md
index cbbf88b323..5f2d1e1e0a 100644
--- a/docs/content/flink/procedures.md
+++ b/docs/content/flink/procedures.md
@@ -382,15 +382,15 @@ All available procedures are listed below.
<td>CALL sys.remove_orphan_files(`table` => 'default.T', older_than =>
'2023-10-31 12:00:00')<br/><br/>
CALL sys.remove_orphan_files(`table` => 'default.*', older_than =>
'2023-10-31 12:00:00')<br/><br/>
CALL sys.remove_orphan_files(`table` => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => true)<br/><br/>
- CALL sys.remove_orphan_files(`table` => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => false, parallelism => '5')<br/><br/>
- CALL sys.remove_orphan_files(`table` => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => false, parallelism => '5', mode => 'local')
+ CALL sys.remove_orphan_files(`table` => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => false, parallelism => 5)<br/><br/>
+ CALL sys.remove_orphan_files(`table` => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => false, parallelism => 5, mode => 'local')
</td>
</tr>
<tr>
<td>remove_unexisting_files</td>
<td>
-- Use named argument<br/>
- CALL [catalog.]sys.remove_unexisting_files(`table` => 'identifier',
dry_run => 'dryRun', parallelism => 'parallelism') <br/><br/>
+ CALL [catalog.]sys.remove_unexisting_files(`table` => 'identifier',
dry_run => 'dryRun', parallelism => parallelism) <br/><br/>
-- Use indexed argument<br/>
CALL [catalog.]sys.remove_unexisting_files('identifier')<br/>
CALL [catalog.]sys.remove_unexisting_files('identifier', 'dryRun',
'parallelism')
@@ -835,7 +835,7 @@ All available procedures are listed below.
<tr>
<td>rescale</td>
<td>
- CALL [catalog.]sys.rescale(`table` => 'identifier', `bucket_num` =>
bucket_num, `partition` => 'partition', `scan_parallelism` =>
'scan_parallelism', `sink_parallelism` => 'sink_parallelism')
+ CALL [catalog.]sys.rescale(`table` => 'identifier', `bucket_num` =>
bucket_num, `partition` => 'partition', `scan_parallelism` => scan_parallelism,
`sink_parallelism` => sink_parallelism)
</td>
<td>
Rescale one partition of a table. Arguments:
diff --git a/docs/content/spark/procedures.md b/docs/content/spark/procedures.md
index 1b8959d6bf..8770e75e42 100644
--- a/docs/content/spark/procedures.md
+++ b/docs/content/spark/procedures.md
@@ -259,8 +259,8 @@ This section introduce all available spark procedures about
paimon.
CALL sys.remove_orphan_files(table => 'default.T', older_than =>
'2023-10-31 12:00:00')<br/><br/>
CALL sys.remove_orphan_files(table => 'default.*', older_than =>
'2023-10-31 12:00:00')<br/><br/>
CALL sys.remove_orphan_files(table => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => true)<br/><br/>
- CALL sys.remove_orphan_files(table => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => true, parallelism => '5')<br/><br/>
- CALL sys.remove_orphan_files(table => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => true, parallelism => '5', mode => 'local')
+ CALL sys.remove_orphan_files(table => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => true, parallelism => 5)<br/><br/>
+ CALL sys.remove_orphan_files(table => 'default.T', older_than =>
'2023-10-31 12:00:00', dry_run => true, parallelism => 5, mode => 'local')
</td>
</tr>
<tr>