You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a table is larger, such as 100TB, optimize table xx compact will take a long time, and if an error happens, the full compaction will be failed. We can add a limit to batch compaction.
optimize table xx compact limit 1000;
To pick 1000 the latest segments which need to compact.
The text was updated successfully, but these errors were encountered:
Summary
If a table is larger, such as 100TB,
optimize table xx compact
will take a long time, and if an error happens, the full compaction will be failed. We can add alimit
to batch compaction.To pick 1000 the latest segments which need to compact.
The text was updated successfully, but these errors were encountered: