RWM Console cluster: risingwave-adib.adib-rw.svc.cluster.local

← cluster insights objects asset_twrr_mv
Overview Objects Graph History
materialized view · insights.asset_twrr_mv
Parallelism
2
Actors
4 / 4
running
Distribution
HASH
Rows
0
State size
Created
2026-06-30 21:33
Initialized
2026-06-30 21:33
Fragment flags
MVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
53862 2356 3 running
53863 2356 3 running
53864 2357 3 running
53865 2357 3 running
sql · insights.asset_twrr_mv — click to expand
CREATE MATERIALIZED VIEW insights.asset_twrr_mv AS
SELECT
  asset_id,
  fact_date,
  (
    adjusted_last_close_price - prev_price
  ) / prev_price AS daily_subperiod_return
FROM (
  SELECT
    asset_id,
    fact_date,
    adjusted_last_close_price,
    LAG(adjusted_last_close_price) OVER (PARTITION BY asset_id ORDER BY fact_date) AS prev_price
  FROM olap.asset_adjusted_prices_ft
) AS sub
WHERE
  NOT prev_price IS NULL AND prev_price <> 0
Lineage · insights.asset_twrr_mv 7 objects
Direct (1-hop) dependencies from rw_depend, across schemas. Click a neighbor to expand its dependencies; ⌘/Ctrl-click opens its page. Drag to pan, scroll to zoom. External source/sink endpoints (Kafka, Iceberg) are not shown.