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
CREATE MATERIALIZED VIEW `events_mv` (`anonymousId`, `timestamp_ist`, `timestamp`,
INDEX segment_id_idx (`anonymousId`) USING BITMAP COMMENT '')
COMMENT "MATERIALIZED_VIEW"
PARTITION BY (date_trunc('day', `timestamp`))
DISTRIBUTED BY RANDOM
REFRESH ASYNC START("2025-02-06 10:00:00") EVERY(INTERVAL 1 MINUTE)
PROPERTIES (
"replicated_storage" = "true",
"partition_ttl_number" = "2",
"replication_num" = "1",
"datacache.enable" = "true",
"enable_async_write_back" = "false",
"storage_volume" = "default_volume",
"warehouse" = "default_warehouse"
)
AS SELECT `events`.`timestamp_ist`, `events`.`timestamp`
FROM (SELECT convert_tz(`events`.`timestamp`, 'GMT', '+05:30') AS `timestamp_ist`, `events`.`timestamp`
FROM `segment`.`events`) `events`
WHERE (`events`.`event` = 'EXPIRED');
Expected behavior (Required)
show partitions from events_mv;
this command shows 1-2 partitions, but in Minio previous partition folders are still present. The older partition folders usually contain only SCHEMA file and sometimes meta folder and SCHEMA file both, refer screenshots.
Real behavior (Required)
This issue was present for tables too and resolved in #41675. Older folders should automatically be deleted from Minio.
StarRocks version (Required)
3.3.8
The text was updated successfully, but these errors were encountered:
Steps to reproduce the behavior (Required)
Expected behavior (Required)
show partitions from events_mv;
this command shows 1-2 partitions, but in Minio previous partition folders are still present. The older partition folders usually contain only
SCHEMA
file and sometimesmeta
folder andSCHEMA
file both, refer screenshots.Real behavior (Required)
This issue was present for tables too and resolved in #41675. Older folders should automatically be deleted from Minio.
StarRocks version (Required)
3.3.8
The text was updated successfully, but these errors were encountered: