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

← cluster insights objects fx_rates_snapshot_mv
Overview Objects Graph History
materialized view · insights.fx_rates_snapshot_mv Explain plan ▶
Parallelism
2
Actors
4 / 4
running
Distribution
HASH
Rows
58
State size
2.4 KiB
Created
2026-08-19 06:30
Initialized
2026-08-19 06:30
Fragment flags
MVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
99549 22110 26 running
99550 22110 26 running
99563 22111 26 running
99564 22111 26 running
sql · insights.fx_rates_snapshot_mv — click to expand
CREATE MATERIALIZED VIEW insights.fx_rates_snapshot_mv AS
SELECT
  source_currency_code,
  target_currency_code,
  rate,
  CAST(date AS TIMESTAMPTZ) AS value_timestamp
FROM (
  SELECT
    source_currency_code,
    target_currency_code,
    rate,
    date,
    ROW_NUMBER() OVER (PARTITION BY source_currency_code, target_currency_code ORDER BY date DESC) AS rn
  FROM asset_service.foreign_exchange_rates_eod_ft
  WHERE
    source_currency_code <> target_currency_code
)
WHERE
  rn = 1
Lineage · insights.fx_rates_snapshot_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.