RWM Console cluster: risingwave-ai-hub-int.ai-hub-rwm.svc.cluster.local

← cluster insights objects flow_summary_mv
Overview Objects Graph History
materialized view · insights.flow_summary_mv Explain plan ▶
Parallelism
2
Actors
6 / 6
running
Distribution
HASH
Rows
3,233
State size
425.9 KiB
Created
2026-08-21 07:25
Initialized
2026-08-21 07:25
Fragment flags
LOCALITY_PROVIDERMVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
160171 18852 33 running
160172 18852 33 running
160173 18853 33 running
160174 18853 33 running
160175 18854 33 running
160176 18854 33 running
sql · insights.flow_summary_mv — click to expand
CREATE MATERIALIZED VIEW insights.flow_summary_mv AS
SELECT
  account_group_id,
  dim_transaction_date,
  position_type,
  currency_code,
  adjusted_net_flow,
  adjusted_net_flow_system_currency,
  SUM(adjusted_net_flow) OVER w AS cumulative_adjusted_netflow,
  SUM(adjusted_net_flow_system_currency) OVER w AS cumulative_adjusted_netflow_system_currency
FROM (
  SELECT
    account_group_id,
    dim_transaction_date,
    position_type,
    group_currency AS currency_code,
    SUM(net_value_group) AS adjusted_net_flow,
    SUM(net_value_system) AS adjusted_net_flow_system_currency
  FROM insights.flow_asset_values_mv AS flow_asset_values_mv_next
  GROUP BY
    account_group_id,
    dim_transaction_date,
    position_type,
    group_currency
) AS grouped
WINDOW w AS (
  PARTITION BY account_group_id, currency_code, position_type
  ORDER BY dim_transaction_date
)
Lineage · insights.flow_summary_mv 6 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.