CLEANING
This topic is available for MRS 3.3.0 or later only.
Function
Cleans Hudi tables. For details, see Hudi Cleaning.
Syntax
call run_clean(table=>'[table]', clean_policy=>'[clean_policy]', retain_commits=>'[retain_commits]', hours_retained=> '[hours_retained]', file_versions_retained=> '[file_versions_retained]');
Parameters
Parameter |
Description |
Mandatory |
---|---|---|
table |
Name of the table to be queried. The value can be in the database.tablename format. |
Yes |
clean_policy |
Policy for deleting data files of an earlier version. The default value is KEEP_LATEST_COMMITS. |
No |
retain_commits |
This parameter is available only when clean_policy is set to KEEP_LATEST_COMMITS. |
No |
hours_retained |
This parameter is available only when clean_policy is set to KEEP_LATEST_BY_HOURS. |
No |
file_version_retained |
This parameter is available only when clean_policy is set to KEEP_LATEST_FILE_VERSIONS. |
No |
Example
call run_clean(table => 'hudi_table1'); call run_clean(table => 'hudi_table1', retain_commits => 2); call run_clean(table => 'hudi_table1', clean_policy => 'KEEP_LATEST_FILE_VERSIONS', file_version_retained => 1);
Constraints
The cleaning operation cleans data files of an earlier version in partitions only when trigger conditions are met. If trigger conditions are not met, this operation does not clean the data files even if the command is successfully executed.
Response
You can view query results on the client.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot