| Actor | Fragment | Worker | State |
|---|---|---|---|
| 32526 | 11060 | 33 | running |
| 32737 | 11058 | 33 | running |
| 32738 | 11058 | 33 | running |
| 32757 | 11059 | 33 | running |
| 32758 | 11061 | 33 | running |
| 32759 | 11061 | 33 | running |
CREATE TABLE asset_service.asset_snapshots_ft (
asset_id VARCHAR,
as_of_date DATE,
provider_code VARCHAR,
yield_to_maturity DECIMAL,
PRIMARY KEY (asset_id, as_of_date, provider_code),
WATERMARK FOR as_of_date AS CAST((
as_of_date - INTERVAL '5 YEARS'
) AS DATE) WITH TTL
)
WITH (
snapshot='true'
) FROM asset_service.asset_service_source TABLE 'public.asset_snapshots_ft'