Home / Type/ TableState Type — supabase Architecture

TableState Type — supabase Architecture

Architecture documentation for the TableState type/interface in ReplicationPipelineStatus.types.ts from the supabase codebase.

Entity Profile

Source Code

apps/studio/components/interfaces/Database/Replication/ReplicationPipelineStatus/ReplicationPipelineStatus.types.ts lines 16–26

export type TableState = {
  table_id: number
  table_name: string
  state:
    | { name: 'queued' }
    | { name: 'copying_table' }
    | { name: 'copied_table' }
    | { name: 'following_wal'; lag: number }
    | { name: 'error'; reason: string; solution?: string; retry_policy: RetryPolicy }
  table_sync_lag?: SlotLagMetrics
}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free