| Actor | Fragment | Worker | State |
|---|---|---|---|
| 741692 | 36971 | 51 | running |
| 742345 | 36969 | 51 | running |
| 742346 | 36969 | 51 | running |
| 742347 | 36970 | 51 | running |
| 742348 | 36972 | 51 | running |
| 742349 | 36972 | 51 | running |
CREATE TABLE olap.fixed_deposit_accounts_ft (
account_id VARCHAR,
fact_date DATE,
principal DECIMAL,
profit_rate DECIMAL,
profit_accrued DECIMAL,
auto_renewal_status VARCHAR,
disabled_at TIMESTAMPTZ,
PRIMARY KEY (account_id, fact_date),
WATERMARK FOR fact_date AS CAST((
fact_date - INTERVAL '5 YEARS'
) AS DATE) WITH TTL
) FROM olap.olap_source TABLE 'olap.fixed_deposit_accounts_ft'