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

← cluster insights objects settled_cost_basis_dedup_mv
Overview Objects Graph History
materialized view · insights.settled_cost_basis_dedup_mv Explain plan ▶
Parallelism
2
Actors
4 / 4
running
Distribution
HASH
Rows
320,808
State size
48.6 MiB
Created
2026-08-13 17:07
Initialized
2026-08-13 17:07
Fragment flags
LOCALITY_PROVIDERMVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
736020 51579 51 running
736021 51579 51 running
736022 51580 51 running
736023 51580 51 running
sql · insights.settled_cost_basis_dedup_mv — click to expand
CREATE MATERIALIZED VIEW insights.settled_cost_basis_dedup_mv AS
SELECT
  account_id,
  asset_id,
  type,
  currency_code,
  dim_value_date,
  average_cost_per_unit,
  average_cost_per_unit_system_currency,
  total_cost_system_currency,
  cost_fx_provenance,
  purchased_quantity,
  m_is_stub
FROM (
  SELECT
    account_id,
    asset_id,
    type,
    currency_code,
    dim_value_date,
    average_cost_per_unit,
    average_cost_per_unit_system_currency,
    total_cost_system_currency,
    cost_fx_provenance,
    purchased_quantity,
    m_is_stub,
    ROW_NUMBER() OVER (
      PARTITION BY account_id, asset_id, currency_code, dim_value_date
      ORDER BY (
        m_is_stub IS TRUE
      ), type
    ) AS rn
  FROM olap.holding_values_raw_ft
  WHERE
    disabled_at IS NULL
) AS d
WHERE
  rn = 1
Lineage · insights.settled_cost_basis_dedup_mv 3 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.