mirror of https://github.com/minio/minio.git
				
				
				
			
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
| // 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/>.
 | |
| 
 | |
| package cmd
 | |
| 
 | |
| import (
 | |
| 	"sync"
 | |
| 
 | |
| 	"github.com/dustin/go-humanize"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	// Block size used for all internal operations version 1.
 | |
| 
 | |
| 	// TLDR..
 | |
| 	// Not used anymore xl.meta captures the right blockSize
 | |
| 	// so blockSizeV2 should be used for all future purposes.
 | |
| 	// this value is kept here to calculate the max API
 | |
| 	// requests based on RAM size for existing content.
 | |
| 	blockSizeV1 = 10 * humanize.MiByte
 | |
| 
 | |
| 	// Block size used in erasure coding version 2.
 | |
| 	blockSizeV2 = 1 * humanize.MiByte
 | |
| 
 | |
| 	// Buckets meta prefix.
 | |
| 	bucketMetaPrefix = "buckets"
 | |
| 
 | |
| 	// Deleted Buckets prefix.
 | |
| 	deletedBucketsPrefix = ".deleted"
 | |
| 
 | |
| 	// ETag (hex encoded md5sum) of empty string.
 | |
| 	emptyETag = "d41d8cd98f00b204e9800998ecf8427e"
 | |
| )
 | |
| 
 | |
| // Global object layer mutex, used for safely updating object layer.
 | |
| var globalObjLayerMutex sync.RWMutex
 | |
| 
 | |
| // Global object layer, only accessed by globalObjectAPI.
 | |
| var globalObjectAPI ObjectLayer
 | |
| 
 | |
| // Global cacheObjects, only accessed by newCacheObjectsFn().
 | |
| var globalCacheObjectAPI CacheObjectLayer
 | |
| 
 | |
| func newStorageAPIWithoutHealthCheck(endpoint Endpoint) (storage StorageAPI, err error) {
 | |
| 	if endpoint.IsLocal {
 | |
| 		storage, err := newXLStorage(endpoint)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return newXLStorageDiskIDCheck(storage), nil
 | |
| 	}
 | |
| 
 | |
| 	return newStorageRESTClient(endpoint, false), nil
 | |
| }
 | |
| 
 | |
| // Depending on the disk type network or local, initialize storage API.
 | |
| func newStorageAPI(endpoint Endpoint) (storage StorageAPI, err error) {
 | |
| 	if endpoint.IsLocal {
 | |
| 		storage, err := newXLStorage(endpoint)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 		return newXLStorageDiskIDCheck(storage), nil
 | |
| 	}
 | |
| 
 | |
| 	return newStorageRESTClient(endpoint, true), nil
 | |
| }
 |