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
297
State size
18.4 KiB
Created
2026-08-20 16:54
Initialized
2026-08-20 16:54
Fragment flags
LOCALITY_PROVIDERMVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
742127 62436 51 running
742128 62436 51 running
742141 62437 51 running
742142 62437 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.