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

← cluster authz objects team_to_parties_mv
Overview Objects Graph History
materialized view · authz.team_to_parties_mv Explain plan ▶
Parallelism
2
Actors
26 / 26
running
Distribution
HASH
Rows
32
State size
2.0 KiB
Created
2026-08-20 17:02
Initialized
2026-08-20 17:02
Fragment flags
LOCALITY_PROVIDERMVIEWNOWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
744085 62679 51 running
744086 62679 51 running
744173 62680 51 running
744174 62680 51 running
744185 62681 51 running
744186 62681 51 running
744187 62682 51 running
744188 62682 51 running
744189 62683 51 running
744190 62683 51 running
744191 62684 51 running
744192 62684 51 running
+ 14 more actor(s) (26 running)
sql · authz.team_to_parties_mv — click to expand
CREATE MATERIALIZED VIEW authz.team_to_parties_mv AS
SELECT
  etm.team_id,
  etm.entity_id AS party_id,
  MAX(etm.updated_at) AS updated_at
FROM olap.entity_to_teams_dm AS etm
WHERE
  etm.entity_type = 'PARTY'
  AND etm.disabled_at IS NULL
  AND etm.effective_start_date <= CURRENT_TIMESTAMP
  AND (
    etm.effective_end_date IS NULL OR etm.effective_end_date > CURRENT_TIMESTAMP
  )
  AND EXISTS(
    SELECT
      1
    FROM party.customer_relationships AS cr
    WHERE
      cr.party_id = etm.entity_id
      AND cr.type = 'CUSTOMER'
      AND cr.status IN ('ACTIVE', 'DRAFT', 'PENDING')
      AND cr.disabled_at IS NULL
  )
  AND EXISTS(
    SELECT
      1
    FROM party.parties AS p
    WHERE
      p.id = etm.entity_id AND p.disabled_at IS NULL
  )
GROUP BY
  etm.team_id,
  etm.entity_id
Lineage · authz.team_to_parties_mv 11 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.