2015-04-08 19:28:14 -04:00
|
|
|
/*
|
|
|
|
* Minimalist Object Storage, (C) 2015 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.
|
|
|
|
*/
|
|
|
|
|
2015-04-05 04:53:41 -04:00
|
|
|
package donut
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strings"
|
2015-04-07 18:55:44 -04:00
|
|
|
|
2015-04-08 21:02:03 -04:00
|
|
|
"github.com/minio-io/minio/pkg/iodine"
|
2015-04-05 04:53:41 -04:00
|
|
|
)
|
|
|
|
|
2015-04-08 19:28:14 -04:00
|
|
|
// Rebalance -
|
2015-04-05 04:53:41 -04:00
|
|
|
func (d donut) Rebalance() error {
|
|
|
|
var totalOffSetLength int
|
|
|
|
var newDisks []Disk
|
|
|
|
var existingDirs []os.FileInfo
|
|
|
|
for _, node := range d.nodes {
|
|
|
|
disks, err := node.ListDisks()
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
totalOffSetLength = len(disks)
|
|
|
|
fmt.Println(totalOffSetLength)
|
|
|
|
for _, disk := range disks {
|
|
|
|
dirs, err := disk.ListDir(d.name)
|
|
|
|
if err != nil {
|
2015-04-07 18:55:44 -04:00
|
|
|
return iodine.New(err, nil)
|
2015-04-05 04:53:41 -04:00
|
|
|
}
|
|
|
|
if len(dirs) == 0 {
|
|
|
|
newDisks = append(newDisks, disk)
|
|
|
|
}
|
|
|
|
existingDirs = append(existingDirs, dirs...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, dir := range existingDirs {
|
|
|
|
splits := strings.Split(dir.Name(), "$")
|
|
|
|
bucketName, segment, offset := splits[0], splits[1], splits[2]
|
|
|
|
fmt.Println(bucketName, segment, offset)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|