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

← cluster insights objects asset_prices_snapshot_mv
Overview Objects Graph History
materialized view · insights.asset_prices_snapshot_mv Explain plan ▶
Parallelism
2
Actors
4 / 4
running
Distribution
HASH
Rows
290
State size
18.1 KiB
Created
2026-08-18 13:15
Initialized
2026-08-18 13:15
Fragment flags
LOCALITY_PROVIDERMVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
739216 58791 51 running
739217 58791 51 running
739218 58792 51 running
739219 58792 51 running
sql · insights.asset_prices_snapshot_mv — click to expand
CREATE MATERIALIZED VIEW insights.asset_prices_snapshot_mv AS
SELECT
  asset_id,
  close,
  CAST(date AS TIMESTAMPTZ) AS value_timestamp
FROM (
  SELECT
    asset_id,
    close,
    date,
    ROW_NUMBER() OVER (PARTITION BY asset_id ORDER BY date DESC) AS rn
  FROM asset_service.asset_prices_eod_ft
  WHERE
    NOT close IS NULL
)
WHERE
  rn = 1
Lineage · insights.asset_prices_snapshot_mv 2 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.