2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-10-23 01:59:13 -04:00
|
|
|
|
|
|
|
package cache
|
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
import "github.com/minio/minio/internal/config"
|
2019-10-23 01:59:13 -04:00
|
|
|
|
|
|
|
// Help template for caching feature.
|
|
|
|
var (
|
2022-04-26 23:11:37 -04:00
|
|
|
defaultHelpPostfix = func(key string) string {
|
|
|
|
return config.DefaultHelpPostfix(DefaultKVS, key)
|
|
|
|
}
|
|
|
|
|
2019-11-19 16:48:13 -05:00
|
|
|
Help = config.HelpKVS{
|
|
|
|
config.HelpKV{
|
|
|
|
Key: Drives,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `comma separated mountpoints e.g. "/optane1,/optane2"` + defaultHelpPostfix(Drives),
|
2019-11-20 18:10:24 -05:00
|
|
|
Type: "csv",
|
2019-11-19 16:48:13 -05:00
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: Expiry,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `cache expiry duration in days` + defaultHelpPostfix(Expiry),
|
2019-11-19 16:48:13 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: Quota,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `limit cache drive usage in percentage` + defaultHelpPostfix(Quota),
|
2019-11-19 16:48:13 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
2019-12-04 18:32:37 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: Exclude,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `exclude cache for following patterns e.g. "bucket/*.tmp,*.exe"` + defaultHelpPostfix(Exclude),
|
2019-12-04 18:32:37 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "csv",
|
|
|
|
},
|
2020-02-03 22:40:01 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: After,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `minimum number of access before caching an object` + defaultHelpPostfix(After),
|
2020-02-03 22:40:01 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
2020-02-23 08:33:39 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: WatermarkLow,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `% of cache use at which to stop cache eviction` + defaultHelpPostfix(WatermarkLow),
|
2020-02-23 08:33:39 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: WatermarkHigh,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `% of cache use at which to start cache eviction` + defaultHelpPostfix(WatermarkHigh),
|
2020-02-23 08:33:39 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
2020-06-29 16:25:29 -04:00
|
|
|
config.HelpKV{
|
|
|
|
Key: Range,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `set to "on" or "off" caching of independent range requests per object` + defaultHelpPostfix(Range),
|
2020-06-29 16:25:29 -04:00
|
|
|
Optional: true,
|
|
|
|
Type: "string",
|
|
|
|
},
|
2020-11-02 13:00:45 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: Commit,
|
2022-04-26 23:11:37 -04:00
|
|
|
Description: `set to control cache commit behavior` + defaultHelpPostfix(Commit),
|
2020-11-02 13:00:45 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "string",
|
|
|
|
},
|
2021-03-09 15:58:22 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: config.Comment,
|
|
|
|
Description: config.DefaultComment,
|
|
|
|
Optional: true,
|
|
|
|
Type: "sentence",
|
|
|
|
},
|
2019-10-23 01:59:13 -04:00
|
|
|
}
|
|
|
|
)
|