mirror of
https://github.com/minio/minio.git
synced 2024-12-25 14:45:54 -05:00
a3e806ed61
This PR adds disk based edge caching support for minio server. Cache settings can be configured in config.json to take list of disk drives, cache expiry in days and file patterns to exclude from cache or via environment variables MINIO_CACHE_DRIVES, MINIO_CACHE_EXCLUDE and MINIO_CACHE_EXPIRY Design assumes that Atime support is enabled and the list of cache drives is fixed. - Objects are cached on both GET and PUT/POST operations. - Expiry is used as hint to evict older entries from cache, or if 80% of cache capacity is filled. - When object storage backend is down, GET, LIST and HEAD operations fetch object seamlessly from cache. Current Limitations - Bucket policies are not cached, so anonymous operations are not supported in offline mode. - Objects are distributed using deterministic hashing among list of cache drives specified.If one or more drives go offline, or cache drive configuration is altered - performance could degrade to linear lookup. Fixes #4026
66 lines
2.2 KiB
Go
66 lines
2.2 KiB
Go
/*
|
|
* Minio Cloud Storage, (C) 2016, 2017 Minio, 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,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// Prints the formatted startup message.
|
|
func printGatewayStartupMessage(apiEndPoints []string, backendType string) {
|
|
strippedAPIEndpoints := stripStandardPorts(apiEndPoints)
|
|
// If cache layer is enabled, print cache capacity.
|
|
cacheObjectAPI := newCacheObjectsFn()
|
|
if cacheObjectAPI != nil {
|
|
printCacheStorageInfo(cacheObjectAPI.StorageInfo(context.Background()))
|
|
}
|
|
// Prints credential.
|
|
printGatewayCommonMsg(strippedAPIEndpoints)
|
|
|
|
// Prints `mc` cli configuration message chooses
|
|
// first endpoint as default.
|
|
printCLIAccessMsg(strippedAPIEndpoints[0], fmt.Sprintf("my%s", backendType))
|
|
|
|
// Prints documentation message.
|
|
printObjectAPIMsg()
|
|
|
|
// SSL is configured reads certification chain, prints
|
|
// authority and expiry.
|
|
if globalIsSSL {
|
|
printCertificateMsg(globalPublicCerts)
|
|
}
|
|
}
|
|
|
|
// Prints common server startup message. Prints credential, region and browser access.
|
|
func printGatewayCommonMsg(apiEndpoints []string) {
|
|
// Get saved credentials.
|
|
cred := globalServerConfig.GetCredential()
|
|
|
|
apiEndpointStr := strings.Join(apiEndpoints, " ")
|
|
// Colorize the message and print.
|
|
log.Println(colorBlue("\nEndpoint: ") + colorBold(fmt.Sprintf(getFormatStr(len(apiEndpointStr), 1), apiEndpointStr)))
|
|
log.Println(colorBlue("AccessKey: ") + colorBold(fmt.Sprintf("%s ", cred.AccessKey)))
|
|
log.Println(colorBlue("SecretKey: ") + colorBold(fmt.Sprintf("%s ", cred.SecretKey)))
|
|
|
|
if globalIsBrowserEnabled {
|
|
log.Println(colorBlue("\nBrowser Access:"))
|
|
log.Println(fmt.Sprintf(getFormatStr(len(apiEndpointStr), 3), apiEndpointStr))
|
|
}
|
|
}
|