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

← cluster alinma_bff objects orders_mv
Overview Objects Graph History
materialized view · alinma_bff.orders_mv Explain plan ▶
Parallelism
2
Actors
8 / 8
running
Distribution
HASH
Rows
0
State size
Created
2026-08-06 14:23
Initialized
2026-08-06 14:23
Fragment flags
MVIEWSNAPSHOT_BACKFILL_STREAM_SCANSTREAM_SCAN
Actors
ActorFragmentWorkerState
742456 44585 51 running
742457 44585 51 running
742458 44584 51 running
742459 44584 51 running
742461 44586 51 running
742462 44586 51 running
742470 44587 51 running
742471 44587 51 running
sql · alinma_bff.orders_mv — click to expand
CREATE MATERIALIZED VIEW alinma_bff.orders_mv AS
SELECT
  id AS order_id,
  etag,
  client_order_id,
  customer_relationship_id,
  portfolio_id,
  security_account_id,
  asset_id,
  side AS order_side,
  workflow_state,
  execution_state,
  termination_reason,
  termination_detail,
  instruction,
  execution_spec,
  cost_estimate,
  es.execution_summary,
  initiator,
  filled_quantity,
  created_at,
  executed_at
FROM (
  SELECT
    id,
    etag,
    client_order_id,
    customer_relationship_id,
    portfolio_id,
    security_account_id,
    asset_id,
    side,
    workflow_state,
    execution_state,
    termination_reason,
    termination_detail,
    instruction,
    execution_spec,
    cost_estimate,
    initiator,
    filled_quantity,
    created_at,
    executed_at,
    deleted_at,
    ROW_NUMBER() OVER (PARTITION BY id ORDER BY created_at DESC) AS rn
  FROM order_service.orders
) AS ranked_orders
LEFT JOIN alinma_bff.order_execution_summaries_mv AS es
  ON es.order_id = ranked_orders.id
WHERE
  rn = 1 AND deleted_at IS NULL
Lineage · alinma_bff.orders_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.