calculateBaselineIopsForComputeSize() — supabase Function Reference
Architecture documentation for the calculateBaselineIopsForComputeSize() function in DiskManagement.utils.ts from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/DiskManagement/DiskManagement.utils.ts lines 308–312
export const calculateBaselineIopsForComputeSize = (computeSize: string): number => {
const parsed = computeInstanceAddonVariantIdSchema.safeParse(computeSize)
if (!parsed.success) return 0
return COMPUTE_BASELINE_IOPS[parsed.data] ?? 0
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free