1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
// Copyright 2020 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package meta
// ResourceControl is used to control the system resource
// See: https://www.freedesktop.org/software/systemd/man/systemd.resource-control.html
type ResourceControl struct {
MemoryLimit string `yaml:"memory_limit,omitempty" validate:"memory_limit:editable"`
CPUQuota string `yaml:"cpu_quota,omitempty" validate:"cpu_quota:editable"`
IOReadBandwidthMax string `yaml:"io_read_bandwidth_max,omitempty" validate:"io_read_bandwidth_max:editable"`
IOWriteBandwidthMax string `yaml:"io_write_bandwidth_max,omitempty" validate:"io_write_bandwidth_max:editable"`
LimitCORE string `yaml:"limit_core,omitempty" validate:"limit_core:editable"`
TimeoutStopSec string `yaml:"timeout_stop_sec,omitempty" validate:"timeout_stop_sec:editable"`
TimeoutStartSec string `yaml:"timeout_start_sec,omitempty" validate:"timeout_start_sec:editable"`
}
|