mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 11:26:58 +00:00
10 lines
274 B
Go
10 lines
274 B
Go
package constants
|
|
|
|
// Node capacity limits used by both deployment and namespace scheduling.
|
|
const (
|
|
MaxDeploymentsPerNode = 100
|
|
MaxMemoryMB = 8192 // 8GB
|
|
MaxCPUPercent = 400 // 400% = 4 cores
|
|
MaxPortsPerNode = 9900 // ~10k ports available
|
|
)
|