Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Mountpoint is where the cgroup filesystem is mounted, usually under /sys/fs/cgroup/ Mountpoint string `toml:"mountpoint"` // HierarchyRoot is the parent cgroup under which Gitaly creates <Count> of cgroups. // A system administrator is expected to create such cgroup/directory under <Mountpoint>/memory // and/or <Mountpoint>/cpu depending on which resource is enabled. HierarchyRoot is expected to // be owned by the user and group Gitaly runs as. HierarchyRoot string `toml:"hierarchy_root"` Repositories Repositories `toml:"repositories"` // MemoryBytes is the memory limit for the parent cgroup. 0 implies no memory limit. MemoryBytes int64 `toml:"memory_bytes"` // is full utilization of the CPU. 0 implies no CPU limit. CPUShares uint64 `toml:"cpu_shares"` // CPUQuotaUs sets cpu_quota_us for the parent cgroup // https://docs.kernel.org/scheduler/sched-bwc.html?highlight=cfs_period_us#management // below 0 implies no quota // // The cfs_period_us is hardcoded to 100ms CPUQuotaUs int64 `toml:"cpu_quota_us"` MetricsEnabled bool `toml:"metrics_enabled"` // Deprecated: No longer supported after 15.0 Count uint `toml:"count"` CPU CPU `toml:"cpu"` Memory Memory `toml:"memory"` }
Config is a struct for cgroups config
func (*Config) FallbackToOldVersion ¶
func (c *Config) FallbackToOldVersion()
FallbackToOldVersion translates the old format of cgroups into the new format.
type Memory ¶
type Memory struct { Enabled bool `toml:"enabled"` // Limit is the memory limit in bytes. Could be -1 to indicate unlimited memory. Limit int64 `toml:"limit"` }
Memory is a struct storing cgroups memory config Deprecated: Not in use after 15.0.
type Repositories ¶
type Repositories struct { // Count is the number of cgroups that will be created for repository-level isolation // of git commands. Count uint `toml:"count"` // MemoryBytes is the memory limit for each cgroup. 0 implies no memory limit. MemoryBytes int64 `toml:"memory_bytes"` // is full utilization of the CPU. 0 implies no CPU limit. CPUShares uint64 `toml:"cpu_shares"` // CPUQuotaUs sets the value of `cfs_quota_us` for the repository cgroup. // https://docs.kernel.org/scheduler/sched-bwc.html?highlight=cfs_period_us // Below 0 implies no quota // // The cfs_period_us is hardcoded to 100ms CPUQuotaUs int64 `toml:"cpu_quota_us"` }
Repositories configures cgroups to be created that are isolated by repository.
Click to show internal directories.
Click to hide internal directories.