| Actor | Fragment | Worker | State |
|---|---|---|---|
| 156844 | 15398 | 33 | running |
| 158053 | 15396 | 33 | running |
| 158054 | 15396 | 33 | running |
| 158059 | 15397 | 33 | running |
| 158060 | 15399 | 33 | running |
| 158061 | 15399 | 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'