JingsongLi commented on code in PR #5095: URL: https://github.com/apache/paimon/pull/5095#discussion_r1961209724
########## docs/content/flink/procedures.md: ########## @@ -681,5 +681,20 @@ All available procedures are listed below. CALL sys.compact_manifest(`table` => 'default.T') </td> </tr> + <tr> + <td>rescale</td> + <td> + CALL sys.rescale(`table` => 'identifier', `bucket_num` => bucket_num, `partition` => 'partition') + </td> + <td> + Rescale one partition of a table. Arguments: + <li>identifier: The target table identifier. Cannot be empty.</li> + <li>bucket_num: Resulting bucket number after rescale. The default value of argument bucket_num is the current bucket number of the table. Cannot be empty for postpone bucket tables.</li> + <li>partition: What partition to rescale. For partitioned table this argument cannot be empty.</li> + </td> + <td> + CALL sys.rescale_postpone_bucket(`table` => 'default.T', `bucket_num` => 16, `partition` => 'dt=20250217,hh=08') Review Comment: rescale -- 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: issues-unsubscr...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org