所以,我正在尝试使用交错排序键创建一个Redshift表,如下所示:
CREATE TABLE temp_app_data
(
"date" date,
identifier_id int,
app_id int,
iface_name char(1),
roaming boolean,
tx_bytes bigint,
rx_bytes bigint
)
diststyle key
distkey (app_id)
interleaved sortkey ("date", app_id);
文档(http://docs.aws.amazon.com/redshift/latest/dg/t_Sorting_data.html)清楚地表明这是可能的。
但是,当我执行上述查询时,我收到此错误:ERROR: INTERLEAVED SORTKEY is not supported yet
。谷歌没有太多帮助。
有关正在发生的事情的任何建议?