Hello do I understand correctly from the documentation that you can not change how the table is partitioned? For example if I partitioned a table by day and tenant, but now I realize it should be partitioned by month and tenant there is nothing I can do? In druid for example the partition strategy is tied not to the table but to the ingestion process. So I can change it and repartition the existing partitions atomically with REPLACE.
In starrocks I see no other way than to create a new table, temporarily load to new and old table at the same time, copy old data over to the new table and then SWAP them. Is there a better way?