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 (
|
2019-11-19 16:48:13 -05:00
|
|
|
Help = config.HelpKVS{
|
|
|
|
config.HelpKV{
|
|
|
|
Key: Drives,
|
2019-12-04 18:32:37 -05:00
|
|
|
Description: `comma separated mountpoints e.g. "/optane1,/optane2"`,
|
2019-11-20 18:10:24 -05:00
|
|
|
Type: "csv",
|
2019-11-19 16:48:13 -05:00
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: Expiry,
|
2019-12-04 18:32:37 -05:00
|
|
|
Description: `cache expiry duration in days e.g. "90"`,
|
2019-11-19 16:48:13 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: Quota,
|
2019-12-04 18:32:37 -05:00
|
|
|
Description: `limit cache drive usage in percentage e.g. "90"`,
|
2019-11-19 16:48:13 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
2019-12-04 18:32:37 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: Exclude,
|
2021-03-09 15:58:22 -05:00
|
|
|
Description: `exclude cache for following patterns e.g. "bucket/*.tmp,*.exe"`,
|
2019-12-04 18:32:37 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "csv",
|
|
|
|
},
|
2020-02-03 22:40:01 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: After,
|
2021-03-09 15:58:22 -05:00
|
|
|
Description: `minimum number of access before caching an object`,
|
2020-02-03 22:40:01 -05:00
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
2020-02-23 08:33:39 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: WatermarkLow,
|
|
|
|
Description: `% of cache use at which to stop cache eviction`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
|
|
|
config.HelpKV{
|
|
|
|
Key: WatermarkHigh,
|
|
|
|
Description: `% of cache use at which to start cache eviction`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "number",
|
|
|
|
},
|
2020-06-29 16:25:29 -04:00
|
|
|
config.HelpKV{
|
|
|
|
Key: Range,
|
|
|
|
Description: `set to "on" or "off" caching of independent range requests per object, defaults to "on"`,
|
|
|
|
Optional: true,
|
|
|
|
Type: "string",
|
|
|
|
},
|
2020-11-02 13:00:45 -05:00
|
|
|
config.HelpKV{
|
|
|
|
Key: Commit,
|
|
|
|
Description: `set to control cache commit behavior, defaults to "writethrough"`,
|
|
|
|
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
|
|
|
}
|
|
|
|
)
|