RWM Console cluster: risingwave.platform.svc.cluster.local

← cluster insights objects account_to_account_groups_binned_mv
Overview Objects Graph History
materialized view · insights.account_to_account_groups_binned_mv Explain plan ▶
Parallelism
2
Actors
8 / 8
running
Distribution
HASH
Rows
358
State size
91.9 KiB
Created
2026-08-25 14:43
Initialized
2026-08-25 14:43
Fragment flags
MVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
33804 12462 33 running
33805 12462 33 running
33806 12464 33 running
33807 12464 33 running
33808 12463 33 running
33809 12463 33 running
33810 12465 33 running
33811 12465 33 running
sql · insights.account_to_account_groups_binned_mv — click to expand
CREATE MATERIALIZED VIEW insights.account_to_account_groups_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_value_month
FROM insights.account_to_account_groups_mv AS atag
JOIN (
  SELECT DISTINCT
    account_id,
    CAST(DATE_TRUNC('MONTH', dim_value_date) AS DATE) AS dim_value_month
  FROM insights.holding_values_mv AS holding_values_mv_next
) AS spine
  ON spine.account_id = atag.account_id
  AND spine.dim_value_month >= CAST(DATE_TRUNC('MONTH', atag.effective_start_date) AS DATE)
  AND (
    atag.effective_end_date IS NULL
    OR spine.dim_value_month < atag.effective_end_date
  )
Lineage · insights.account_to_account_groups_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.