| Actor | Fragment | Worker | State |
|---|---|---|---|
| 736151 | 55181 | 51 | running |
| 741059 | 55179 | 51 | running |
| 741060 | 55179 | 51 | running |
| 741063 | 55180 | 51 | running |
| 741064 | 55182 | 51 | running |
| 741065 | 55182 | 51 | 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'