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
H! We have two separate tablespaces: default(ssd with relatively small capacity for current data) and hdd (high capacity, historical data) and don't want to store columnar tables on ssd. But there is an error on moving columnar table:
alter table fact_events_1_2021 set tablespace hdd;
ОШИБКА: columnar_relation_copy_data not implemented
Is there a way to move this data or some plans to implement this feature?
The text was updated successfully, but these errors were encountered:
Thanks for the report. I believe tablespaces themselves should work but moving tables isn't supported yet.
The best I can suggest is to copy the table like so:
-- copy table to a new tablecreatetablefact_events_1_2021_hdd (like fact_events_1_2021) using columnar tablespace hdd;
insert into fact_events_1_2021_copy select*from fact_events_1_2021;
-- swap the two table namesaltertable fact_events_1_2021 rename to fact_events_1_2021_ssd;
altertable fact_events_1_2021_hdd rename to fact_events_1_2021;
-- when you are ready, drop the old table on the ssd.droptable fact_events_1_2021_ssd;
wuputah
changed the title
[Bug]: moving columnar table to tablespace is not supported
support moving tables between tablespaces
Oct 18, 2023
What's wrong?
H! We have two separate tablespaces: default(ssd with relatively small capacity for current data) and hdd (high capacity, historical data) and don't want to store columnar tables on ssd. But there is an error on moving columnar table:
Is there a way to move this data or some plans to implement this feature?
The text was updated successfully, but these errors were encountered: