ComputeDiskLimitsTable() — supabase Function Reference
Architecture documentation for the ComputeDiskLimitsTable() function in ComputeDiskLimitsTable.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/components/ComputeDiskLimitsTable.tsx lines 9–34
export function ComputeDiskLimitsTable() {
return (
<table>
<thead>
<tr>
<th>Compute Instance</th>
<th>Baseline Throughput (MB/s)</th>
<th>Max Throughput (MB/s)</th>
<th>Baseline IOPS</th>
<th>Max IOPS</th>
</tr>
</thead>
<tbody>
{Object.entries(COMPUTE_DISK).map(([key, value]) => (
<tr key={key}>
<td>{value.name}</td>
<td>{COMPUTE_BASELINE_THROUGHPUT[key]?.toLocaleString()} MB/s</td>
<td>{COMPUTE_MAX_THROUGHPUT[key]?.toLocaleString()} MB/s</td>
<td>{COMPUTE_BASELINE_IOPS[key]?.toLocaleString()} IOPS</td>
<td>{COMPUTE_MAX_IOPS[key]?.toLocaleString()} IOPS</td>
</tr>
))}
</tbody>
</table>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free