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

← cluster insights objects account_to_account_groups_settlement_binned_mv
Overview Objects Graph History
materialized view · insights.account_to_account_groups_settlement_binned_mv Explain plan ▶
Parallelism
2
Actors
12 / 12
running
Distribution
HASH
Rows
1,445
State size
490.9 KiB
Created
2026-08-19 22:39
Initialized
2026-08-19 22:39
Fragment flags
LOCALITY_PROVIDERMVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
738594 61216 51 running
738595 61216 51 running
738596 61217 51 running
738597 61217 51 running
738598 61218 51 running
738599 61218 51 running
738600 61219 51 running
738601 61219 51 running
738602 61220 51 running
738603 61220 51 running
738604 61221 51 running
738605 61221 51 running
sql · insights.account_to_account_groups_settlement_binned_mv — click to expand
CREATE MATERIALIZED VIEW insights.account_to_account_groups_settlement_binned_mv AS
SELECT
  atag.account_id,
  atag.account_group_id,
  atag.effective_start_date,
  atag.effective_end_date,
  atag.base_currency,
  atag.opening_date,
  atag.source_entity_type,
  spine.dim_settlement_month
FROM insights.account_to_account_groups_mv AS atag
JOIN (
  SELECT DISTINCT
    account_id,
    CAST(DATE_TRUNC('MONTH', transaction_settlement_date) AS DATE) AS dim_settlement_month
  FROM insights.transactions_merged_mv
  WHERE
    NOT transaction_settlement_date IS NULL
) AS spine
  ON spine.account_id = atag.account_id
  AND spine.dim_settlement_month >= CAST(DATE_TRUNC('MONTH', atag.effective_start_date) AS DATE)
  AND (
    atag.effective_end_date IS NULL
    OR spine.dim_settlement_month < atag.effective_end_date
  )
Lineage · insights.account_to_account_groups_settlement_binned_mv 4 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.