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

← cluster search objects party_active_relationships_mv
Overview Objects Graph History
materialized view · search.party_active_relationships_mv
Parallelism
2
Actors
4 / 4
running
Distribution
HASH
Rows
22
State size
1.5 KiB
Created
2026-06-30 21:37
Initialized
2026-06-30 21:37
Fragment flags
MVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
54064 2442 3 running
54065 2442 3 running
54066 2443 3 running
54067 2443 3 running
sql · search.party_active_relationships_mv — click to expand
CREATE MATERIALIZED VIEW search.party_active_relationships_mv AS
SELECT
  party_id,
  type,
  status
FROM (
  SELECT
    party_id,
    type,
    status,
    ROW_NUMBER() OVER (
      PARTITION BY party_id, type
      ORDER BY updated_at DESC, status_changed_at DESC, effective_from DESC, id DESC
    ) AS rn
  FROM party.customer_relationships
  WHERE
    disabled_at IS NULL
) AS deduped
WHERE
  rn = 1
Lineage · search.party_active_relationships_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.