2016-05-20 23:48:47 -04:00
|
|
|
/*
|
2019-04-09 14:39:42 -04:00
|
|
|
* MinIO Cloud Storage, (C) 2016, 2017, 2018 MinIO, Inc.
|
2016-05-20 23:48:47 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-18 19:23:42 -04:00
|
|
|
package cmd
|
2016-05-20 23:48:47 -04:00
|
|
|
|
|
|
|
import (
|
2018-03-14 15:01:47 -04:00
|
|
|
"context"
|
2016-05-26 17:13:10 -04:00
|
|
|
"sort"
|
|
|
|
|
2018-04-05 18:04:40 -04:00
|
|
|
"github.com/minio/minio/cmd/logger"
|
2018-02-15 20:45:57 -05:00
|
|
|
"github.com/minio/minio/pkg/bpool"
|
2016-05-20 23:48:47 -04:00
|
|
|
)
|
|
|
|
|
2016-05-30 19:51:59 -04:00
|
|
|
// XL constants.
|
2016-05-20 23:48:47 -04:00
|
|
|
const (
|
2016-05-30 19:51:59 -04:00
|
|
|
// XL metadata file carries per object metadata.
|
|
|
|
xlMetaJSONFile = "xl.json"
|
2016-05-20 23:48:47 -04:00
|
|
|
)
|
|
|
|
|
2018-08-24 02:35:37 -04:00
|
|
|
// OfflineDisk represents an unavailable disk.
|
|
|
|
var OfflineDisk StorageAPI // zero value is nil
|
|
|
|
|
2016-05-30 19:51:59 -04:00
|
|
|
// xlObjects - Implements XL object layer.
|
2016-05-20 23:48:47 -04:00
|
|
|
type xlObjects struct {
|
2018-02-15 20:45:57 -05:00
|
|
|
// name space mutex for object layer.
|
|
|
|
nsMutex *nsLockMap
|
2016-05-30 19:51:59 -04:00
|
|
|
|
2018-02-15 20:45:57 -05:00
|
|
|
// getDisks returns list of storageAPIs.
|
|
|
|
getDisks func() []StorageAPI
|
2016-05-20 23:48:47 -04:00
|
|
|
|
2018-02-15 20:45:57 -05:00
|
|
|
// Byte pools used for temporary i/o buffers.
|
|
|
|
bp *bpool.BytePoolCap
|
2018-02-12 04:46:12 -05:00
|
|
|
|
2018-02-15 20:45:57 -05:00
|
|
|
// TODO: Deprecated only kept here for tests, should be removed in future.
|
|
|
|
storageDisks []StorageAPI
|
2017-01-16 20:05:00 -05:00
|
|
|
|
2018-02-15 20:45:57 -05:00
|
|
|
// TODO: ListObjects pool management, should be removed in future.
|
2019-04-17 12:52:08 -04:00
|
|
|
listPool *TreeWalkPool
|
2017-01-16 20:05:00 -05:00
|
|
|
}
|
|
|
|
|
2016-08-15 02:55:48 -04:00
|
|
|
// Shutdown function for object storage interface.
|
2018-03-14 15:01:47 -04:00
|
|
|
func (xl xlObjects) Shutdown(ctx context.Context) error {
|
2016-08-15 02:55:48 -04:00
|
|
|
// Add any object layer shutdown activities here.
|
2018-04-04 00:58:48 -04:00
|
|
|
closeStorageDisks(xl.getDisks())
|
2016-08-15 02:55:48 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:13:10 -04:00
|
|
|
// byDiskTotal is a collection satisfying sort.Interface.
|
2018-05-23 06:11:29 -04:00
|
|
|
type byDiskTotal []DiskInfo
|
2016-05-26 17:13:10 -04:00
|
|
|
|
|
|
|
func (d byDiskTotal) Len() int { return len(d) }
|
|
|
|
func (d byDiskTotal) Swap(i, j int) { d[i], d[j] = d[j], d[i] }
|
|
|
|
func (d byDiskTotal) Less(i, j int) bool {
|
|
|
|
return d[i].Total < d[j].Total
|
|
|
|
}
|
|
|
|
|
2016-10-05 15:48:07 -04:00
|
|
|
// getDisksInfo - fetch disks info across all other storage API.
|
2018-05-23 06:11:29 -04:00
|
|
|
func getDisksInfo(disks []StorageAPI) (disksInfo []DiskInfo, onlineDisks int, offlineDisks int) {
|
|
|
|
disksInfo = make([]DiskInfo, len(disks))
|
2016-10-17 17:31:33 -04:00
|
|
|
for i, storageDisk := range disks {
|
2016-09-15 02:53:42 -04:00
|
|
|
if storageDisk == nil {
|
|
|
|
// Storage disk is empty, perhaps ignored disk or not available.
|
2016-10-05 15:48:07 -04:00
|
|
|
offlineDisks++
|
2016-09-15 02:53:42 -04:00
|
|
|
continue
|
|
|
|
}
|
2016-08-25 20:16:34 -04:00
|
|
|
info, err := storageDisk.DiskInfo()
|
2016-05-26 17:13:10 -04:00
|
|
|
if err != nil {
|
2018-09-14 00:42:50 -04:00
|
|
|
ctx := context.Background()
|
|
|
|
logger.GetReqInfo(ctx).AppendTags("disk", storageDisk.String())
|
|
|
|
logger.LogIf(ctx, err)
|
2018-04-10 12:36:37 -04:00
|
|
|
if IsErr(err, baseErrs...) {
|
2016-10-05 15:48:07 -04:00
|
|
|
offlineDisks++
|
2017-01-02 13:43:56 -05:00
|
|
|
continue
|
2016-10-05 15:48:07 -04:00
|
|
|
}
|
2016-05-26 17:13:10 -04:00
|
|
|
}
|
2016-10-05 15:48:07 -04:00
|
|
|
onlineDisks++
|
2016-10-17 17:31:33 -04:00
|
|
|
disksInfo[i] = info
|
2016-05-26 17:13:10 -04:00
|
|
|
}
|
|
|
|
|
2016-10-05 15:48:07 -04:00
|
|
|
// Success.
|
|
|
|
return disksInfo, onlineDisks, offlineDisks
|
|
|
|
}
|
|
|
|
|
2016-10-17 17:31:33 -04:00
|
|
|
// returns sorted disksInfo slice which has only valid entries.
|
|
|
|
// i.e the entries where the total size of the disk is not stated
|
|
|
|
// as 0Bytes, this means that the disk is not online or ignored.
|
2018-05-23 06:11:29 -04:00
|
|
|
func sortValidDisksInfo(disksInfo []DiskInfo) []DiskInfo {
|
|
|
|
var validDisksInfo []DiskInfo
|
2016-10-17 17:31:33 -04:00
|
|
|
for _, diskInfo := range disksInfo {
|
|
|
|
if diskInfo.Total == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
validDisksInfo = append(validDisksInfo, diskInfo)
|
|
|
|
}
|
|
|
|
sort.Sort(byDiskTotal(validDisksInfo))
|
|
|
|
return validDisksInfo
|
|
|
|
}
|
|
|
|
|
2016-10-05 15:48:07 -04:00
|
|
|
// Get an aggregated storage info across all disks.
|
|
|
|
func getStorageInfo(disks []StorageAPI) StorageInfo {
|
|
|
|
disksInfo, onlineDisks, offlineDisks := getDisksInfo(disks)
|
2016-10-17 17:31:33 -04:00
|
|
|
|
|
|
|
// Sort so that the first element is the smallest.
|
|
|
|
validDisksInfo := sortValidDisksInfo(disksInfo)
|
2017-08-03 23:07:22 -04:00
|
|
|
// If there are no valid disks, set total and free disks to 0
|
2016-10-17 17:31:33 -04:00
|
|
|
if len(validDisksInfo) == 0 {
|
2018-05-23 20:30:25 -04:00
|
|
|
return StorageInfo{}
|
2016-09-22 19:35:12 -04:00
|
|
|
}
|
2016-10-17 17:31:33 -04:00
|
|
|
|
2019-04-05 00:21:50 -04:00
|
|
|
// Combine all disks to get total usage
|
|
|
|
var used, total, available uint64
|
2018-05-23 06:11:29 -04:00
|
|
|
for _, di := range validDisksInfo {
|
|
|
|
used = used + di.Used
|
2019-04-05 00:21:50 -04:00
|
|
|
total = total + di.Total
|
|
|
|
available = available + di.Free
|
2018-05-23 06:11:29 -04:00
|
|
|
}
|
|
|
|
|
2019-02-13 07:59:36 -05:00
|
|
|
_, sscParity := getRedundancyCount(standardStorageClass, len(disks))
|
|
|
|
_, rrscparity := getRedundancyCount(reducedRedundancyStorageClass, len(disks))
|
|
|
|
|
|
|
|
storageInfo := StorageInfo{
|
2019-04-05 00:21:50 -04:00
|
|
|
Used: used,
|
|
|
|
Total: total,
|
|
|
|
Available: available,
|
2019-02-13 07:59:36 -05:00
|
|
|
}
|
2019-04-05 00:21:50 -04:00
|
|
|
|
2018-08-24 02:35:37 -04:00
|
|
|
storageInfo.Backend.Type = BackendErasure
|
2016-10-05 15:48:07 -04:00
|
|
|
storageInfo.Backend.OnlineDisks = onlineDisks
|
|
|
|
storageInfo.Backend.OfflineDisks = offlineDisks
|
2017-12-22 06:28:13 -05:00
|
|
|
|
2018-01-17 14:25:51 -05:00
|
|
|
storageInfo.Backend.StandardSCParity = sscParity
|
|
|
|
storageInfo.Backend.RRSCParity = rrscparity
|
2017-12-22 06:28:13 -05:00
|
|
|
|
2016-10-05 15:48:07 -04:00
|
|
|
return storageInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageInfo - returns underlying storage statistics.
|
2018-03-14 15:01:47 -04:00
|
|
|
func (xl xlObjects) StorageInfo(ctx context.Context) StorageInfo {
|
2018-02-15 20:45:57 -05:00
|
|
|
return getStorageInfo(xl.getDisks())
|
2016-05-26 17:13:10 -04:00
|
|
|
}
|