Closed
Description
steps
- execute ngql:
CREATE TAG IF NOT EXISTS ttl01 (a timestamp);
ALTER TAG ttl01 TTL_COL = "a", TTL_DURATION = 60;
INSERT VERTEX ttl01(a) VALUES "ttl01_01":(now());
match (v:ttl01) return v limit 1;
submit job compact
match (v:ttl01) return v limit 1;
Execution plan of nGQL: match (v:ttl01) return v limit 1;
- The problems found are as follows:
- tag: TTL configured,but vid still can be found after expiration,after compaction looks normal,edge same as tag
Activity