2015-06-25 15:55:13 -04:00
|
|
|
/*
|
2015-07-24 20:51:40 -04:00
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
2015-06-25 15:55:13 -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.
|
|
|
|
*/
|
|
|
|
|
2015-04-07 00:42:54 -04:00
|
|
|
package donut
|
|
|
|
|
|
|
|
import (
|
2015-07-03 03:29:54 -04:00
|
|
|
"github.com/minio/minio/pkg/donut/disk"
|
2015-08-03 19:17:21 -04:00
|
|
|
"github.com/minio/minio/pkg/probe"
|
2015-04-07 00:42:54 -04:00
|
|
|
)
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// Info - return info about donut configuration
|
2015-08-03 19:17:21 -04:00
|
|
|
func (donut API) Info() (nodeDiskMap map[string][]string, err *probe.Error) {
|
2015-04-07 00:42:54 -04:00
|
|
|
nodeDiskMap = make(map[string][]string)
|
2015-07-02 23:31:22 -04:00
|
|
|
for nodeName, node := range donut.nodes {
|
2015-04-07 00:42:54 -04:00
|
|
|
disks, err := node.ListDisks()
|
|
|
|
if err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return nil, err.Trace()
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
|
|
|
diskList := make([]string, len(disks))
|
2015-06-24 23:34:20 -04:00
|
|
|
for diskOrder, disk := range disks {
|
|
|
|
diskList[diskOrder] = disk.GetPath()
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
|
|
|
nodeDiskMap[nodeName] = diskList
|
|
|
|
}
|
|
|
|
return nodeDiskMap, nil
|
|
|
|
}
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// AttachNode - attach node
|
2015-08-03 19:17:21 -04:00
|
|
|
func (donut API) AttachNode(hostname string, disks []string) *probe.Error {
|
2015-06-25 15:55:13 -04:00
|
|
|
if hostname == "" || len(disks) == 0 {
|
2015-08-03 19:17:21 -04:00
|
|
|
return probe.New(InvalidArgument{})
|
2015-04-07 00:42:54 -04:00
|
|
|
}
|
2015-06-25 15:55:13 -04:00
|
|
|
node, err := newNode(hostname)
|
|
|
|
if err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return err.Trace()
|
2015-06-25 15:55:13 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
donut.nodes[hostname] = node
|
2015-06-25 15:55:13 -04:00
|
|
|
for i, d := range disks {
|
|
|
|
newDisk, err := disk.New(d)
|
|
|
|
if err != nil {
|
2015-07-14 21:50:29 -04:00
|
|
|
continue
|
2015-06-25 15:55:13 -04:00
|
|
|
}
|
2015-07-02 23:31:22 -04:00
|
|
|
if err := newDisk.MakeDir(donut.config.DonutName); err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return err.Trace()
|
2015-06-25 15:55:13 -04:00
|
|
|
}
|
|
|
|
if err := node.AttachDisk(newDisk, i); err != nil {
|
2015-08-03 19:17:21 -04:00
|
|
|
return err.Trace()
|
2015-06-25 15:55:13 -04:00
|
|
|
}
|
|
|
|
}
|
2015-04-07 00:42:54 -04:00
|
|
|
return nil
|
|
|
|
}
|
2015-04-08 19:28:14 -04:00
|
|
|
|
|
|
|
// DetachNode - detach node
|
2015-08-03 19:17:21 -04:00
|
|
|
func (donut API) DetachNode(hostname string) *probe.Error {
|
2015-07-02 23:31:22 -04:00
|
|
|
delete(donut.nodes, hostname)
|
2015-04-07 00:42:54 -04:00
|
|
|
return nil
|
|
|
|
}
|
2015-07-15 01:40:04 -04:00
|
|
|
|
|
|
|
// Rebalance - rebalance an existing donut with new disks and nodes
|
2015-08-03 19:17:21 -04:00
|
|
|
func (donut API) Rebalance() *probe.Error {
|
|
|
|
return probe.New(APINotImplemented{API: "management.Rebalance"})
|
2015-07-15 01:40:04 -04:00
|
|
|
}
|
2015-07-16 12:46:38 -04:00
|
|
|
|
|
|
|
// Heal - heal your donuts
|
2015-08-03 19:17:21 -04:00
|
|
|
func (donut API) Heal() *probe.Error {
|
2015-07-16 12:46:38 -04:00
|
|
|
// TODO handle data heal
|
|
|
|
return donut.healBuckets()
|
|
|
|
}
|